/* -*- 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 #ifdef IOS # include # include # include #else # include # include #endif #include #include #include // FIXME: remove when we re-work the svp mainloop #include #include #include SvpSalInstance* SvpSalInstance::s_pDefaultInstance = nullptr; #ifndef NDEBUG static bool g_CheckedMutex = false; #define DBG_TESTSVPYIELDMUTEX() \ do { \ if (!g_CheckedMutex) \ { \ assert(dynamic_cast(GetYieldMutex()) != nullptr \ && "This SvpSalInstance function requires use of SvpSalYieldMutex"); \ g_CheckedMutex = true; \ } \ } while(false) #else // NDEBUG #define DBG_TESTSVPYIELDMUTEX() ((void)0) #endif #if !defined(ANDROID) && !defined(IOS) && !defined(EMSCRIPTEN) static void atfork_child() { if (SvpSalInstance::s_pDefaultInstance != nullptr) { SvpSalInstance::s_pDefaultInstance->CloseWakeupPipe(); } } #endif SvpSalInstance::SvpSalInstance( std::unique_ptr pMutex ) : SalGenericInstance( std::move(pMutex) ) { m_aTimeout.tv_sec = 0; m_aTimeout.tv_usec = 0; m_nTimeoutMS = 0; m_MainThread = osl::Thread::getCurrentIdentifier(); if( s_pDefaultInstance == nullptr ) s_pDefaultInstance = this; #if !defined(ANDROID) && !defined(IOS) && !defined(EMSCRIPTEN) pthread_atfork(nullptr, nullptr, atfork_child); #endif } SvpSalInstance::~SvpSalInstance() { if( s_pDefaultInstance == this ) s_pDefaultInstance = nullptr; CloseWakeupPipe(); } void SvpSalInstance::CloseWakeupPipe() { SvpSalYieldMutex *const pMutex(dynamic_cast(GetYieldMutex())); if (!pMutex) return; while (!pMutex->m_FeedbackPipe.empty()) pMutex->m_FeedbackPipe.pop(); } void SvpSalInstance::TriggerUserEventProcessing() { Wakeup(); } void SvpSalInstance::Wakeup(SvpRequest const request) { DBG_TESTSVPYIELDMUTEX(); ImplSVData* pSVData = ImplGetSVData(); if (pSVData->mpWakeCallback && pSVData->mpPollClosure) pSVData->mpWakeCallback(pSVData->mpPollClosure); SvpSalYieldMutex *const pMutex(static_cast(GetYieldMutex())); std::scoped_lock g(pMutex->m_WakeUpMainMutex); if (request != SvpRequest::NONE) pMutex->m_Request = request; pMutex->m_wakeUpMain = true; pMutex->m_WakeUpMainCond.notify_one(); } bool SvpSalInstance::CheckTimeout( bool bExecuteTimers ) { bool bRet = false; if( m_aTimeout.tv_sec ) // timer is started { timeval aTimeOfDay; gettimeofday( &aTimeOfDay, nullptr ); if( aTimeOfDay >= m_aTimeout ) { bRet = true; if( bExecuteTimers ) { // timed out, update timeout m_aTimeout = aTimeOfDay; m_aTimeout += m_nTimeoutMS; osl::Guard< comphelper::SolarMutex > aGuard( GetYieldMutex() ); // notify ImplSVData* pSVData = ImplGetSVData(); if( pSVData->maSchedCtx.mpSalTimer ) pSVData->maSchedCtx.mpSalTimer->CallCallback(); } } } return bRet; } SalFrame* SvpSalInstance::CreateChildFrame( SystemParentData* /*pParent*/, SalFrameStyleFlags nStyle ) { return new SvpSalFrame( this, nullptr, nStyle ); } SalFrame* SvpSalInstance::CreateFrame( SalFrame* pParent, SalFrameStyleFlags nStyle ) { return new SvpSalFrame( this, pParent, nStyle ); } void SvpSalInstance::DestroyFrame( SalFrame* pFrame ) { delete pFrame; } SalObject* SvpSalInstance::CreateObject( SalFrame*, SystemWindowData*, bool ) { return new SvpSalObject; } void SvpSalInstance::DestroyObject( SalObject* pObject ) { delete pObject; } #ifndef IOS std::unique_ptr SvpSalInstance::CreateVirtualDevice(SalGraphics& rGraphics, tools::Long &nDX, tools::Long &nDY, DeviceFormat /*eFormat*/, const SystemGraphicsData* pGd) { SvpSalGraphics *pSvpSalGraphics = dynamic_cast(&rGraphics); assert(pSvpSalGraphics); #ifndef ANDROID // tdf#127529 normally pPreExistingTarget is null and we are a true virtualdevice drawing to a backing buffer. // Occasionally, for canvas/slideshow, pPreExistingTarget is pre-provided as a hack to use the vcl drawing // apis to render onto a preexisting cairo surface. The necessity for that precedes the use of cairo in vcl proper cairo_surface_t* pPreExistingTarget = pGd ? static_cast(pGd->pSurface) : nullptr; #else //ANDROID case (void)pGd; cairo_surface_t* pPreExistingTarget = nullptr; #endif std::unique_ptr xNew(new SvpSalVirtualDevice(pSvpSalGraphics->getSurface(), pPreExistingTarget)); if (!xNew->SetSize(nDX, nDY)) xNew.reset(); return xNew; } cairo_surface_t* get_underlying_cairo_surface(const VirtualDevice& rDevice) { return static_cast(rDevice.mpVirDev.get())->GetSurface(); } const cairo_font_options_t* SvpSalInstance::GetCairoFontOptions() { static cairo_font_options_t *gOptions = nullptr; if (!gOptions) { gOptions = cairo_font_options_create(); cairo_font_options_set_antialias(gOptions, CAIRO_ANTIALIAS_GRAY); } return gOptions; } #else // IOS const cairo_font_options_t* SvpSalInstance::GetCairoFontOptions() { return nullptr; } #endif SalTimer* SvpSalInstance::CreateSalTimer() { return new SvpSalTimer( this ); } SalSystem* SvpSalInstance::CreateSalSystem() { return new SvpSalSystem(); } std::shared_ptr SvpSalInstance::CreateSalBitmap() { #ifdef IOS return std::make_shared(); #else return std::make_shared(); #endif } void SvpSalInstance::ProcessEvent( SalUserEvent aEvent ) { DBG_TESTSVPYIELDMUTEX(); aEvent.m_pFrame->CallCallback( aEvent.m_nEvent, aEvent.m_pData ); if( aEvent.m_nEvent == SalEvent::Resize ) { // this would be a good time to post a paint const SvpSalFrame* pSvpFrame = static_cast( aEvent.m_pFrame); pSvpFrame->PostPaint(); } SvpSalYieldMutex *const pMutex(static_cast(GetYieldMutex())); pMutex->m_NonMainWaitingYieldCond.set(); } SvpSalYieldMutex::SvpSalYieldMutex() { } SvpSalYieldMutex::~SvpSalYieldMutex() { } void SvpSalYieldMutex::doAcquire(sal_uInt32 const nLockCount) { auto *const pInst = static_cast(GetSalInstance()); if (pInst && pInst->IsMainThread()) { if (m_bNoYieldLock) return; do { SvpRequest request = SvpRequest::NONE; { std::unique_lock g(m_WakeUpMainMutex); if (m_aMutex.tryToAcquire()) { // if there's a request, the other thread holds m_aMutex assert(m_Request == SvpRequest::NONE); m_wakeUpMain = false; break; } m_WakeUpMainCond.wait(g, [this]() { return m_wakeUpMain; }); m_wakeUpMain = false; std::swap(m_Request, request); } if (request != SvpRequest::NONE) { // nested Yield on behalf of another thread assert(!m_bNoYieldLock); m_bNoYieldLock = true; bool const bEvents = pInst->DoYield(false, request == SvpRequest::MainThreadDispatchAllEvents); m_bNoYieldLock = false; { std::lock_guard lock(m_FeedbackMutex); m_FeedbackPipe.push(bEvents); } m_FeedbackCV.notify_all(); } } while (true); } else { m_aMutex.acquire(); } ++m_nCount; SalYieldMutex::doAcquire(nLockCount - 1); } sal_uInt32 SvpSalYieldMutex::doRelease(bool const bUnlockAll) { auto *const pInst = static_cast(GetSalInstance()); if (pInst && pInst->IsMainThread()) { if (m_bNoYieldLock) return 1; else return SalYieldMutex::doRelease(bUnlockAll); } sal_uInt32 nCount; { // read m_nCount before doRelease bool const isReleased(bUnlockAll || m_nCount == 1); nCount = comphelper::SolarMutex::doRelease( bUnlockAll ); if (isReleased) { if (vcl::lok::isUnipoll()) { if (pInst) pInst->Wakeup(); } else { std::scoped_lock g(m_WakeUpMainMutex); m_wakeUpMain = true; m_WakeUpMainCond.notify_one(); } } } return nCount; } bool SvpSalYieldMutex::IsCurrentThread() const { if (GetSalInstance()->IsMainThread() && m_bNoYieldLock) return true; else return SalYieldMutex::IsCurrentThread(); } bool SvpSalInstance::IsMainThread() const { return osl::Thread::getCurrentIdentifier() == m_MainThread; } void SvpSalInstance::updateMainThread() { if (!IsMainThread()) { m_MainThread = osl::Thread::getCurrentIdentifier(); ImplGetSVData()->mnMainThreadId = osl::Thread::getCurrentIdentifier(); } } bool SvpSalInstance::ImplYield(bool bWait, bool bHandleAllCurrentEvents) { DBG_TESTSVPYIELDMUTEX(); DBG_TESTSOLARMUTEX(); assert(IsMainThread()); bool bWasEvent = DispatchUserEvents(bHandleAllCurrentEvents); if (!bHandleAllCurrentEvents && bWasEvent) return true; bWasEvent = CheckTimeout() || bWasEvent; const bool bMustSleep = bWait && !bWasEvent; // This is wrong and must be removed! // We always want to drop the SolarMutex on yield; that is the whole point of yield. if (!bMustSleep) return bWasEvent; sal_Int64 nTimeoutMicroS = 0; if (bMustSleep) { if (m_aTimeout.tv_sec) // Timer is started. { timeval Timeout; // determine remaining timeout. gettimeofday (&Timeout, nullptr); if (m_aTimeout > Timeout) nTimeoutMicroS = ((m_aTimeout.tv_sec - Timeout.tv_sec) * 1000 * 1000 + (m_aTimeout.tv_usec - Timeout.tv_usec)); } else nTimeoutMicroS = -1; // wait until something happens } SolarMutexReleaser aReleaser; if (vcl::lok::isUnipoll()) { ImplSVData* pSVData = ImplGetSVData(); if (pSVData->mpPollClosure) { int nPollResult = pSVData->mpPollCallback(pSVData->mpPollClosure, nTimeoutMicroS); if (nPollResult < 0) pSVData->maAppData.mbAppQuit = true; bWasEvent = bWasEvent || (nPollResult != 0); } } else if (bMustSleep) { SvpSalYieldMutex *const pMutex(static_cast(GetYieldMutex())); std::unique_lock g(pMutex->m_WakeUpMainMutex); // wait for doRelease() or Wakeup() to set the condition if (nTimeoutMicroS == -1) { pMutex->m_WakeUpMainCond.wait(g, [pMutex]() { return pMutex->m_wakeUpMain; }); } else { int nTimeoutMS = nTimeoutMicroS / 1000; if (nTimeoutMicroS % 1000) nTimeoutMS += 1; pMutex->m_WakeUpMainCond.wait_for(g, std::chrono::milliseconds(nTimeoutMS), [pMutex]() { return pMutex->m_wakeUpMain; }); } // here no need to check m_Request because Acquire will do it } return bWasEvent; } bool SvpSalInstance::DoYield(bool bWait, bool bHandleAllCurrentEvents) { DBG_TESTSVPYIELDMUTEX(); DBG_TESTSOLARMUTEX(); bool bWasEvent(false); SvpSalYieldMutex *const pMutex(static_cast(GetYieldMutex())); if (IsMainThread()) { bWasEvent = ImplYield(bWait, bHandleAllCurrentEvents); if (bWasEvent) pMutex->m_NonMainWaitingYieldCond.set(); // wake up other threads } else { // TODO: use a SolarMutexReleaser here and drop the m_bNoYieldLock usage Wakeup(bHandleAllCurrentEvents ? SvpRequest::MainThreadDispatchAllEvents : SvpRequest::MainThreadDispatchOneEvent); // blocking read (for synchronisation) { std::unique_lock lock(pMutex->m_FeedbackMutex); pMutex->m_FeedbackCV.wait(lock, [pMutex] { return !pMutex->m_FeedbackPipe.empty(); }); bWasEvent = pMutex->m_FeedbackPipe.front(); pMutex->m_FeedbackPipe.pop(); } if (!bWasEvent && bWait) { // block & release YieldMutex until the main thread does something pMutex->m_NonMainWaitingYieldCond.reset(); SolarMutexReleaser aReleaser; pMutex->m_NonMainWaitingYieldCond.wait(); } } return bWasEvent; } bool SvpSalInstance::AnyInput( VclInputFlags nType ) { if( nType & VclInputFlags::TIMER ) return CheckTimeout( false ); return false; } OUString SvpSalInstance::GetConnectionIdentifier() { return OUString(); } void SvpSalInstance::StopTimer() { m_aTimeout.tv_sec = 0; m_aTimeout.tv_usec = 0; m_nTimeoutMS = 0; } void SvpSalInstance::StartTimer( sal_uInt64 nMS ) { timeval aPrevTimeout (m_aTimeout); gettimeofday (&m_aTimeout, nullptr); m_nTimeoutMS = nMS; m_aTimeout += m_nTimeoutMS; if ((aPrevTimeout > m_aTimeout) || (aPrevTimeout.tv_sec == 0)) { // Wakeup from previous timeout (or stopped timer). Wakeup(); } } void SvpSalInstance::AddToRecentDocumentList(const OUString&, const OUString&, const OUString&) { } SvpSalTimer::~SvpSalTimer() { } void SvpSalTimer::Stop() { m_pInstance->StopTimer(); } void SvpSalTimer::Start( sal_uInt64 nMS ) { m_pInstance->StartTimer( nMS ); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ reoffice-7-0-1'>libreoffice-7-0-1 LibreOffice 界面翻译代码仓库文档基金会
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2017-05-16 13:31:36 +0200
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2017-05-16 13:49:27 +0200
commit28d70b17f056afa54f3a68a0fe68f517f44f4d46 (patch)
tree8d6e2032933ead38528d99f9bb8db0ceb5ea53a1 /source/zh-CN
parent28e3b10171e11219fa6b94e31e93ead9a3a5634e (diff)
update translations for 5.4.0 beta1
and force-fix errors using pocheck and do some additional cleanup of bogus strings Change-Id: I03e13820a5d71ee70b4e8728475d8409cff9493a
Diffstat (limited to 'source/zh-CN')
-rw-r--r--source/zh-CN/cui/uiconfig/ui.po56
-rw-r--r--source/zh-CN/dbaccess/source/ui/app.po10
-rw-r--r--source/zh-CN/extensions/source/update/check/org/openoffice/Office.po10
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/guide.po38
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/shared.po1333
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/shared/01.po66
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/shared/02.po132
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc.po128
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/00.po220
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/01.po5886
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/02.po94
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/04.po172
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/05.po81
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/guide.po917
-rw-r--r--source/zh-CN/helpcontent2/source/text/schart.po18
-rw-r--r--source/zh-CN/helpcontent2/source/text/schart/00.po88
-rw-r--r--source/zh-CN/helpcontent2/source/text/schart/01.po328
-rw-r--r--source/zh-CN/helpcontent2/source/text/schart/02.po18
-rw-r--r--source/zh-CN/helpcontent2/source/text/schart/04.po39
-rw-r--r--source/zh-CN/helpcontent2/source/text/sdraw.po95
-rw-r--r--source/zh-CN/helpcontent2/source/text/sdraw/00.po10
-rw-r--r--source/zh-CN/helpcontent2/source/text/sdraw/01.po11
-rw-r--r--source/zh-CN/helpcontent2/source/text/sdraw/04.po96
-rw-r--r--source/zh-CN/helpcontent2/source/text/sdraw/guide.po224
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared.po180
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/00.po1570
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/01.po5634
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/02.po1757
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/04.po274
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/05.po105
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/07.po22
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/autokorr.po45
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/autopi.po1753
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/explorer/database.po1651
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/guide.po2025
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/optionen.po1732
-rw-r--r--source/zh-CN/helpcontent2/source/text/simpress.po90
-rw-r--r--source/zh-CN/helpcontent2/source/text/simpress/00.po142
-rw-r--r--source/zh-CN/helpcontent2/source/text/simpress/01.po819
-rw-r--r--source/zh-CN/helpcontent2/source/text/simpress/02.po478
-rw-r--r--source/zh-CN/helpcontent2/source/text/simpress/04.po185
-rw-r--r--source/zh-CN/helpcontent2/source/text/simpress/guide.po635
-rw-r--r--source/zh-CN/helpcontent2/source/text/smath.po53
-rw-r--r--source/zh-CN/helpcontent2/source/text/smath/00.po51
-rw-r--r--source/zh-CN/helpcontent2/source/text/smath/01.po1767
-rw-r--r--source/zh-CN/helpcontent2/source/text/smath/02.po13
-rw-r--r--source/zh-CN/helpcontent2/source/text/smath/04.po25
-rw-r--r--source/zh-CN/helpcontent2/source/text/smath/guide.po47
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter.po268
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/00.po244
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/01.po4512
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/02.po790
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/04.po239
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/guide.po1188
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/librelogo.po34
-rw-r--r--source/zh-CN/instsetoo_native/inc_openoffice/windows/msi_languages.po38
-rw-r--r--source/zh-CN/sc/source/ui/src.po8
-rw-r--r--source/zh-CN/sc/uiconfig/scalc/ui.po8
-rw-r--r--source/zh-CN/sfx2/uiconfig/ui.po24
-rw-r--r--source/zh-CN/xmlsecurity/uiconfig/ui.po10
60 files changed, 6517 insertions, 31969 deletions
diff --git a/source/zh-CN/cui/uiconfig/ui.po b/source/zh-CN/cui/uiconfig/ui.po
index a49f45a4399..a821006d892 100644
--- a/source/zh-CN/cui/uiconfig/ui.po
+++ b/source/zh-CN/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-21 04:15+0000\n"
+"PO-Revision-Date: 2017-05-09 04:51+0000\n"
"Last-Translator: 锁琨珑 <suokunlong@126.com>\n"
"Language-Team: none\n"
"Language: zh_CN\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492748103.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1494305501.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -1618,7 +1618,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Create OpenCL Whitelist Entry"
-msgstr "创建OpenCL白名单条目"
+msgstr "创建 OpenCL 白名单条目"
#: blackorwhitelistentrydialog.ui
msgctxt ""
@@ -1627,7 +1627,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "OpenCL Information"
-msgstr "OpenCL信息"
+msgstr "OpenCL 信息"
#: blackorwhitelistentrydialog.ui
msgctxt ""
@@ -2077,7 +2077,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Spacing:"
-msgstr "间隔:(_S)"
+msgstr "间隔(_S):"
#: calloutpage.ui
msgctxt ""
@@ -2878,7 +2878,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "SGML syntax highlighting"
-msgstr "SGML语法高亮显示"
+msgstr "SGML 语法高亮显示"
#: colorconfigwin.ui
msgctxt ""
@@ -3085,7 +3085,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "SQL Syntax Highlighting"
-msgstr "SQL 语法高亮显示 "
+msgstr "SQL 语法高亮显示"
#: colorconfigwin.ui
msgctxt ""
@@ -4102,7 +4102,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Edit..."
-msgstr "编辑...(_E)"
+msgstr "编辑(_E)..."
#: dbregisterpage.ui
msgctxt ""
@@ -4480,7 +4480,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Back"
-msgstr "返回 (_B)"
+msgstr "返回(_B)"
#: editmodulesdialog.ui
msgctxt ""
@@ -5254,7 +5254,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sounds like (_Japanese)"
-msgstr "类似字符(日文) (_J)"
+msgstr "类似字符(日文)(_J)"
#: fmsearchdialog.ui
msgctxt ""
@@ -5290,7 +5290,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Match case"
-msgstr "区分大小写 (_M)"
+msgstr "区分大小写(_M)"
#: fmsearchdialog.ui
msgctxt ""
@@ -5578,7 +5578,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Properties of "
-msgstr "属性: "
+msgstr "属性:"
#: gallerythemedialog.ui
msgctxt ""
@@ -5605,7 +5605,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Theme ID"
-msgstr "主题ID"
+msgstr "主题 ID"
#: gallerythemeiddialog.ui
msgctxt ""
@@ -5767,7 +5767,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Center ( X / Y ) :"
-msgstr "中心 ( X / Y ) :"
+msgstr "中心 ( X / Y ):"
#: gradientpage.ui
msgctxt ""
@@ -5857,7 +5857,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Hangul/Hanja Conversion"
-msgstr "朝鲜文字/朝鲜文汉字(Hangul/Hanja)转换"
+msgstr "韩文/朝鲜汉字(Hangul/Hanja)转换"
#: hangulhanjaconversiondialog.ui
msgctxt ""
@@ -5911,7 +5911,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Hangul/Hanja"
-msgstr "_Hangul/Hanja"
+msgstr "韩文/朝鲜汉字(_H)"
#: hangulhanjaconversiondialog.ui
msgctxt ""
@@ -5920,7 +5920,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hanja (Han_gul)"
-msgstr "Hanja (Han_gul)"
+msgstr "汉字(韩文)(_G)"
#: hangulhanjaconversiondialog.ui
msgctxt ""
@@ -5929,7 +5929,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hang_ul (Hanja)"
-msgstr "Hang_ul (Hanja)"
+msgstr "韩文(汉字)(_U)"
#: hangulhanjaconversiondialog.ui
msgctxt ""
@@ -5938,7 +5938,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hanja"
-msgstr "Hanja"
+msgstr "朝鲜汉字"
#: hangulhanjaconversiondialog.ui
msgctxt ""
@@ -5947,7 +5947,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hanja"
-msgstr "Hanja"
+msgstr "朝鲜汉字"
#: hangulhanjaconversiondialog.ui
msgctxt ""
@@ -5956,7 +5956,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hangul"
-msgstr "Hangul"
+msgstr "韩文"
#: hangulhanjaconversiondialog.ui
msgctxt ""
@@ -5965,7 +5965,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hangul"
-msgstr "Hangul"
+msgstr "韩文"
#: hangulhanjaconversiondialog.ui
msgctxt ""
@@ -5983,7 +5983,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hangul _only"
-msgstr "仅 Hangul (_O)"
+msgstr "仅韩文(_O)"
#: hangulhanjaconversiondialog.ui
msgctxt ""
@@ -5992,7 +5992,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hanja onl_y"
-msgstr "仅 Hanja (_Y)"
+msgstr "仅汉字(_Y)"
#: hangulhanjaconversiondialog.ui
msgctxt ""
@@ -6010,7 +6010,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Always I_gnore"
-msgstr "总是忽略 (_G)"
+msgstr "总是忽略(_G)"
#: hangulhanjaconversiondialog.ui
msgctxt ""
@@ -6028,7 +6028,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Always R_eplace"
-msgstr "总是替换 (_E)"
+msgstr "总是替换(_E)"
#: hangulhanjaconversiondialog.ui
msgctxt ""
@@ -6037,7 +6037,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Replace b_y character"
-msgstr "按照单个字词替换 (_Y)"
+msgstr "按字符替换(_Y)"
#: hangulhanjaconversiondialog.ui
msgctxt ""
diff --git a/source/zh-CN/dbaccess/source/ui/app.po b/source/zh-CN/dbaccess/source/ui/app.po
index 4fe8f5115f8..9b76d76dd1a 100644
--- a/source/zh-CN/dbaccess/source/ui/app.po
+++ b/source/zh-CN/dbaccess/source/ui/app.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2016-12-26 03:39+0000\n"
-"Last-Translator: 琨珑 锁 <suokunlong@126.com>\n"
+"PO-Revision-Date: 2017-05-09 04:57+0000\n"
+"Last-Translator: 锁琨珑 <suokunlong@126.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482723569.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1494305853.000000\n"
#: app.src
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"RID_STR_QUERIES_HELP_TEXT\n"
"string.text"
msgid "Create a query by specifying the filters, input tables, field names, and properties for sorting or grouping."
-msgstr "通过指定过滤器、输入表、字段名称以及排序或组合属性创建查询。"
+msgstr "通过指定筛选器、输入表、字段名称以及排序或组合属性创建查询。"
#: app.src
msgctxt ""
diff --git a/source/zh-CN/extensions/source/update/check/org/openoffice/Office.po b/source/zh-CN/extensions/source/update/check/org/openoffice/Office.po
index 6e12be7dc23..5d99dbab73d 100644
--- a/source/zh-CN/extensions/source/update/check/org/openoffice/Office.po
+++ b/source/zh-CN/extensions/source/update/check/org/openoffice/Office.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2013-05-24 01:06+0000\n"
-"Last-Translator: 琨珑 锁 <suokunlong@126.com>\n"
+"PO-Revision-Date: 2017-05-09 05:03+0000\n"
+"Last-Translator: 锁琨珑 <suokunlong@126.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1369357580.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1494306228.000000\n"
#: Addons.xcu
msgctxt ""
@@ -23,4 +23,4 @@ msgctxt ""
"Title\n"
"value.text"
msgid "~Check for Updates..."
-msgstr ""
+msgstr "检查更新(~U)..."
diff --git a/source/zh-CN/helpcontent2/source/text/sbasic/guide.po b/source/zh-CN/helpcontent2/source/text/sbasic/guide.po
index ddb4af90dca..56789fbb33c 100644
--- a/source/zh-CN/helpcontent2/source/text/sbasic/guide.po
+++ b/source/zh-CN/helpcontent2/source/text/sbasic/guide.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-03-09 20:48+0100\n"
-"PO-Revision-Date: 2016-08-09 01:44+0000\n"
-"Last-Translator: 琨珑 锁 <suokunlong@126.com>\n"
+"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"PO-Revision-Date: 2017-05-08 23:24+0000\n"
+"Last-Translator: Reri <riwu@hotmail.co.uk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1470707069.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1494285857.000000\n"
#: access2base.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"par_idA2B007\n"
"help.text"
msgid "<emph>The library is documented online on </emph><link href=\"http://www.access2base.com\" name=\"http://www.access2base.com\"><emph>http://www.access2base.com</emph></link>"
-msgstr "<emph>该程序库的文档可在</emph> <link href=\"http://www.access2base.com\" name=\"http://www.access2base.com\"><emph>http://www.access2base.com</emph></link> <emph>找到</emph>"
+msgstr "<emph>该程序库的文档可在 </emph><link href=\"http://www.access2base.com\" name=\"http://www.access2base.com\"><emph>http://www.access2base.com</emph></link>"
#: access2base.xhp
msgctxt ""
@@ -188,7 +188,6 @@ msgstr "<bookmark_value>属性; 对话框编辑器中的控件</bookmark_value><
msgctxt ""
"control_properties.xhp\n"
"hd_id3145786\n"
-"1\n"
"help.text"
msgid "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/control_properties.xhp\" name=\"Changing the Properties of Controls in the Dialog Editor\">Changing the Properties of Controls in the Dialog Editor</link></variable>"
msgstr "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/control_properties.xhp\" name=\"Changing the Properties of Controls in the Dialog Editor\">修改对话框编辑器中控件的属性</link></variable>"
@@ -197,7 +196,6 @@ msgstr "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/contr
msgctxt ""
"control_properties.xhp\n"
"par_id3147317\n"
-"2\n"
"help.text"
msgid "You can set the properties of control that you add to a dialog. For example, you can change the color, name, and size of a button that you added. You can change most control properties when you create or edit a dialog. However, you can only change some properties at runtime."
msgstr "您可以设置添加到对话框中的控件的属性。例如,可以修改添加的按钮的颜色、名称和大小。在创建或编辑对话框时,可以修改大多数控件属性。但运行时只能修改控件的某些属性。"
@@ -206,7 +204,6 @@ msgstr "您可以设置添加到对话框中的控件的属性。例如,可以
msgctxt ""
"control_properties.xhp\n"
"par_id3145749\n"
-"3\n"
"help.text"
msgid "To change the properties of a control in design mode, right-click the control, and then choose <emph>Properties</emph>."
msgstr "要在设计模式下修改某个控件的属性,请在该控件上单击鼠标右键,然后选择<emph>属性</emph>。"
@@ -231,7 +228,6 @@ msgstr "<bookmark_value>对话框; 创建 Basic 对话框</bookmark_value>"
msgctxt ""
"create_dialog.xhp\n"
"hd_id3149346\n"
-"1\n"
"help.text"
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\">创建 Basic 对话框</link></variable>"
@@ -240,7 +236,6 @@ msgstr "<variable id=\"create_dialog\"><link href=\"text/sbasic/guide/create_dia
msgctxt ""
"create_dialog.xhp\n"
"par_id3163802\n"
-"3\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Organize Dialogs</emph>, and then click <emph>New</emph>."
msgstr "选择<emph>工具 - 宏 - 管理对话框</emph>,然后单击<emph>新建</emph>。"
@@ -249,7 +244,6 @@ msgstr "选择<emph>工具 - 宏 - 管理对话框</emph>,然后单击<emph>
msgctxt ""
"create_dialog.xhp\n"
"par_id3150447\n"
-"11\n"
"help.text"
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 "为对话框输入名称,然后单击“确定”。以后如果要重命名对话框,在选项卡名称上单击鼠标右键,然后选择<emph>重命名</emph>。"
@@ -266,7 +260,6 @@ msgstr "单击<emph>编辑</emph>。Basic 对话框编辑器打开,并含有
msgctxt ""
"create_dialog.xhp\n"
"par_id3153726\n"
-"6\n"
"help.text"
msgid "If you do not see the <emph>Toolbox</emph> bar, click the arrow next to the <emph>Insert Controls </emph>icon to open the <emph>Toolbox</emph> bar."
msgstr "如果未看到<emph>工具箱</emph>栏,请单击<emph>插入控件</emph>图标旁的箭头,打开<emph>工具箱</emph>栏。"
@@ -275,7 +268,6 @@ msgstr "如果未看到<emph>工具箱</emph>栏,请单击<emph>插入控件</
msgctxt ""
"create_dialog.xhp\n"
"par_id3148455\n"
-"12\n"
"help.text"
msgid "Click a tool and then drag in the dialog to create the control."
msgstr "单击某个工具,然后在对话框中拖动鼠标,即可创建控件。"
@@ -300,7 +292,6 @@ msgstr "<bookmark_value>控件; 在对话框编辑器中创建</bookmark_value><
msgctxt ""
"insert_control.xhp\n"
"hd_id3149182\n"
-"1\n"
"help.text"
msgid "<variable id=\"insert_control\"><link href=\"text/sbasic/guide/insert_control.xhp\" name=\"Creating Controls in the Dialog Editor\">Creating Controls in the Dialog Editor</link></variable>"
msgstr "<variable id=\"insert_control\"><link href=\"text/sbasic/guide/insert_control.xhp\" name=\"Creating Controls in the Dialog Editor\">在对话框编辑器中创建控件</link></variable>"
@@ -309,7 +300,6 @@ msgstr "<variable id=\"insert_control\"><link href=\"text/sbasic/guide/insert_co
msgctxt ""
"insert_control.xhp\n"
"par_id3146797\n"
-"2\n"
"help.text"
msgid "Use the tools on the <emph>Toolbox </emph>of the BASIC dialog editor to add controls to your dialog."
msgstr "使用 BASIC 对话框编辑器上的<emph>工具箱</emph>可在对话框中添加控件。"
@@ -318,7 +308,6 @@ msgstr "使用 BASIC 对话框编辑器上的<emph>工具箱</emph>可在对话
msgctxt ""
"insert_control.xhp\n"
"par_id3150276\n"
-"7\n"
"help.text"
msgid "To open the <emph>Toolbox</emph>, click the arrow next to the <emph>Insert Controls</emph> icon on the <emph>Macro</emph> toolbar."
msgstr "为打开<emph>工具箱</emph>,请单击位于<emph>宏</emph>工具栏上的<emph>插入控件</emph>图标旁的箭头。"
@@ -327,7 +316,6 @@ msgstr "为打开<emph>工具箱</emph>,请单击位于<emph>宏</emph>工具
msgctxt ""
"insert_control.xhp\n"
"par_id3145068\n"
-"3\n"
"help.text"
msgid "Click a tool on the toolbar, for example, <emph>Button</emph>."
msgstr "单击工具栏上的某个工具,例如<emph>按钮</emph>。"
@@ -336,7 +324,6 @@ msgstr "单击工具栏上的某个工具,例如<emph>按钮</emph>。"
msgctxt ""
"insert_control.xhp\n"
"par_id3153360\n"
-"4\n"
"help.text"
msgid "On the dialog, drag the button to the size you want."
msgstr "在对话框上,拖动鼠标直至按钮达到所需的大小。"
@@ -361,7 +348,6 @@ msgstr "<bookmark_value>控件编程示例</bookmark_value><bookmark_value>对
msgctxt ""
"sample_code.xhp\n"
"hd_id3155338\n"
-"1\n"
"help.text"
msgid "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Programming Examples for Controls in the Dialog Editor\">Programming Examples for Controls in the Dialog Editor</link></variable>"
msgstr "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Programming Examples for Controls in the Dialog Editor\">对话框编辑器中控件的编程示例</link></variable>"
@@ -370,7 +356,6 @@ msgstr "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.
msgctxt ""
"sample_code.xhp\n"
"par_id3153031\n"
-"2\n"
"help.text"
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 "以下示例针对的是一个名为 \"Dialog1\" 的新<link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"对话框\">对话框</link>。使用对话框编辑器中的<emph>工具箱</emph>栏上的工具可以创建对话框并添加下列控件:名为 \"CheckBox1\" 的<emph>复选框</emph>、名为 \"Label1\" 的<emph>标签字段</emph>、名为 \"CommandButton1\" 的<emph>按钮</emph>以及名为 \"ListBox1\" 的<emph>列表框</emph>。"
@@ -379,7 +364,6 @@ msgstr "以下示例针对的是一个名为 \"Dialog1\" 的新<link href=\"text
msgctxt ""
"sample_code.xhp\n"
"par_id3154141\n"
-"3\n"
"help.text"
msgid "Be consistent with uppercase and lowercase letter when you attach a control to an object variable."
msgstr "在将控件附加到对象变量时,请使字母大小写保持一致。"
@@ -388,7 +372,6 @@ msgstr "在将控件附加到对象变量时,请使字母大小写保持一致
msgctxt ""
"sample_code.xhp\n"
"hd_id3154909\n"
-"4\n"
"help.text"
msgid "Global Function for Loading Dialogs"
msgstr "加载对话框的全局函数"
@@ -397,7 +380,6 @@ msgstr "加载对话框的全局函数"
msgctxt ""
"sample_code.xhp\n"
"hd_id3149412\n"
-"18\n"
"help.text"
msgid "Displaying a Dialog"
msgstr "显示对话框"
@@ -414,7 +396,6 @@ msgstr "REM 全局变量定义"
msgctxt ""
"sample_code.xhp\n"
"hd_id3150042\n"
-"27\n"
"help.text"
msgid "Read or Edit Properties of Controls in the Program"
msgstr "读取或编辑程序中控件的属性"
@@ -503,7 +484,6 @@ msgstr "End Sub"
msgctxt ""
"sample_code.xhp\n"
"hd_id3145387\n"
-"55\n"
"help.text"
msgid "Add an Entry to a ListBox"
msgstr "向列表框中添加条目"
@@ -528,7 +508,6 @@ msgstr "oListbox.additem(\"New Item\" & iCount,0)"
msgctxt ""
"sample_code.xhp\n"
"hd_id3147071\n"
-"64\n"
"help.text"
msgid "Remove an Entry from a ListBox"
msgstr "删除 ListBox 中的条目"
@@ -561,7 +540,6 @@ msgstr "<bookmark_value>模块/对话框切换</bookmark_value><bookmark_value>
msgctxt ""
"show_dialog.xhp\n"
"hd_id3154140\n"
-"1\n"
"help.text"
msgid "<variable id=\"show_dialog\"><link href=\"text/sbasic/guide/show_dialog.xhp\" name=\"Opening a Dialog With Program Code\">Opening a Dialog With Program Code</link></variable>"
msgstr "<variable id=\"show_dialog\"><link href=\"text/sbasic/guide/show_dialog.xhp\" name=\"Opening a Dialog With Program Code\">通过程序代码打开对话框</link></variable>"
@@ -570,7 +548,6 @@ msgstr "<variable id=\"show_dialog\"><link href=\"text/sbasic/guide/show_dialog.
msgctxt ""
"show_dialog.xhp\n"
"par_id3145171\n"
-"2\n"
"help.text"
msgid "In the <item type=\"productname\">%PRODUCTNAME</item> BASIC window for a dialog that you created, leave the dialog editor by clicking the name tab of the Module that the dialog is assigned to. The name tab is at the bottom of the window."
msgstr "在创建的对话框所在的 <item type=\"productname\">%PRODUCTNAME</item> BASIC 窗口中,单击该对话框所在模块的名称选项卡可以保留该对话框编辑器。名称选项卡位于窗口底部。"
@@ -579,7 +556,6 @@ msgstr "在创建的对话框所在的 <item type=\"productname\">%PRODUCTNAME</
msgctxt ""
"show_dialog.xhp\n"
"par_id3153968\n"
-"6\n"
"help.text"
msgid "Enter the following code for a subroutine called <emph>Dialog1Show</emph>. In this example, the name of the dialog that you created is \"Dialog1\":"
msgstr "输入以下代码,生成名为 <emph>Dialog1Show</emph> 的子例行程序。在本例中,创建的对话框名为 \"Dialog1\":"
@@ -588,7 +564,6 @@ msgstr "输入以下代码,生成名为 <emph>Dialog1Show</emph> 的子例行
msgctxt ""
"show_dialog.xhp\n"
"par_id3152596\n"
-"18\n"
"help.text"
msgid "Without using \"LoadDialog\" you can call the code as follows:"
msgstr "如果不使用 \"LoadDialog\",可以通过以下方法调用代码:"
@@ -597,7 +572,6 @@ msgstr "如果不使用 \"LoadDialog\",可以通过以下方法调用代码:
msgctxt ""
"show_dialog.xhp\n"
"par_id3153157\n"
-"16\n"
"help.text"
msgid "When you execute this code, \"Dialog1\" opens. To close the dialog, click the close button (x) on its title bar."
msgstr "当执行此代码时,将打开 \"Dialog1\" 对话框。要关闭该对话框,请单击标题栏右上角的 x。"
diff --git a/source/zh-CN/helpcontent2/source/text/sbasic/shared.po b/source/zh-CN/helpcontent2/source/text/sbasic/shared.po
index 371b0260eb4..11b9b87b94c 100644
--- a/source/zh-CN/helpcontent2/source/text/sbasic/shared.po
+++ b/source/zh-CN/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-05-09 16:45+0200\n"
"PO-Revision-Date: 2017-03-16 00:31+0000\n"
"Last-Translator: 锁琨珑 <suokunlong@126.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1489624265.000000\n"
#: 00000002.xhp
@@ -28,7 +28,6 @@ msgstr "$[officename] Basic 词汇表"
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 词汇表\">$[officename] Basic 词汇表</link>"
@@ -37,7 +36,6 @@ msgstr "<link href=\"text/sbasic/shared/00000002.xhp\" name=\"$[officename] Basi
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 "本词汇表解释在使用 $[officename] Basic 过程中可能会遇到的一些技术术语。"
@@ -46,7 +44,6 @@ msgstr "本词汇表解释在使用 $[officename] Basic 过程中可能会遇到
msgctxt ""
"00000002.xhp\n"
"hd_id3155133\n"
-"7\n"
"help.text"
msgid "Decimal Point"
msgstr "小数点"
@@ -55,7 +52,6 @@ msgstr "小数点"
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 "在转换数字时,$[officename] Basic 使用系统的语言环境设置来确定小数点和千位分隔符的类型。"
@@ -64,7 +60,6 @@ msgstr "在转换数字时,$[officename] Basic 使用系统的语言环境设
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 "该行为影响隐含转换 ( 1 + \"2.3\" = 3.3 ) 和运行时函数 <link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric\">IsNumeric</link>。"
@@ -73,7 +68,6 @@ msgstr "该行为影响隐含转换 ( 1 + \"2.3\" = 3.3 ) 和运行时函数 <li
msgctxt ""
"00000002.xhp\n"
"hd_id3155854\n"
-"29\n"
"help.text"
msgid "Colors"
msgstr "颜色"
@@ -82,7 +76,6 @@ msgstr "颜色"
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 "在 $[officename] Basic 中,可将颜色作为长整数值处理。颜色查询的返回值通常也是长整数值。定义属性时,可使用 RGB 代码指定颜色,该代码使用 <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB function\">RGB function</link> 转换为长整数。"
@@ -91,7 +84,6 @@ msgstr "在 $[officename] Basic 中,可将颜色作为长整数值处理。颜
msgctxt ""
"00000002.xhp\n"
"hd_id3146119\n"
-"32\n"
"help.text"
msgid "Measurement Units"
msgstr "度量单位"
@@ -100,7 +92,6 @@ msgstr "度量单位"
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 <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - (Document Type) - General</emph>."
msgstr "在 $[officename] Basic 中,需要单位信息的<emph>方法参数</emph>或者<emph>属性</emph>可以指定为不带单位的整型或者长整型表达式,或者指定为带单位的文本字符串。如果没有给该方法传递单位,则会使用为当前活动文档类型定义的默认单位。如果传递给方法的参数是包含度量单位的文本字符串,那么默认设置将会被忽略。某个文档类型的默认度量单位可以在<switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - 首选项</emph></caseinline><defaultinline><emph>工具 - 选项</emph></defaultinline></switchinline><emph> - (文档类型) - 常规</emph>中设定。"
@@ -117,7 +108,6 @@ msgstr "<bookmark_value>twips; 定义</bookmark_value>"
msgctxt ""
"00000002.xhp\n"
"hd_id3145801\n"
-"5\n"
"help.text"
msgid "Twips"
msgstr "Twips"
@@ -126,7 +116,6 @@ msgstr "Twips"
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 "twip 是一个与屏幕无关的单位,用于定义所有显示系统中屏幕元素的统一位置和大小。1 twip 等于 1 英寸的 1/1440 或 1 个打印机点的 1/20,即 1440 twip 等于 1 英寸,567 twip 等于 1 厘米。"
@@ -135,7 +124,6 @@ msgstr "twip 是一个与屏幕无关的单位,用于定义所有显示系统
msgctxt ""
"00000002.xhp\n"
"hd_id3153159\n"
-"106\n"
"help.text"
msgid "URL Notation"
msgstr "URL 表示法"
@@ -144,7 +132,6 @@ msgstr "URL 表示法"
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 "URL(<emph>统一资源定位器</emph>)用于确定资源(例如文件)在文件系统,尤其是在网络环境中的位置。一个 URL 由协议指定符、主机指定符以及文件和路径指定符组成:"
@@ -153,7 +140,6 @@ msgstr "URL(<emph>统一资源定位器</emph>)用于确定资源(例如
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>protocol</emph>://<emph>host.name</emph>/<emph>path/to/the/file.html</emph>"
@@ -162,7 +148,6 @@ msgstr "<emph>protocol</emph>://<emph>host.name</emph>/<emph>path/to/the/file.ht
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 "URL 最常见的用法是在 Internet 中指定 Web 页。常见的协议有 <emph>http</emph>、<emph>ftp</emph> 或 <emph>file</emph>。<emph>file</emph> 协议说明符用于指定本地文件系统中的文件。"
@@ -171,7 +156,6 @@ msgstr "URL 最常见的用法是在 Internet 中指定 Web 页。常见的协
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.odt</emph> on the local host in \"Windows notation\" becomes <emph>file:///C|/My%20File.odt</emph> in URL notation."
msgstr "URL 链接中不允许包含特殊字符。如果有特殊字符,那么这些字符将被替换为其他字符,或者被转换为URL编码。斜杠 (<emph>/</emph>) 会被当作路径分隔符来对待。例如,在windows下,本地主机上的文件路径 <emph>C:\\My File.odt</emph> 将会变为URL链接表达式 <emph>file:///C|/My%20File.odt</emph>."
@@ -188,7 +172,6 @@ msgstr "信息"
msgctxt ""
"00000003.xhp\n"
"hd_id3148550\n"
-"1\n"
"help.text"
msgid "Information"
msgstr "信息"
@@ -197,7 +180,6 @@ msgstr "信息"
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 <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - 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 "您可以在<switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - 首选项</emph></caseinline><defaultinline><emph>工具 - 选项</emph></defaultinline></switchinline><emph> - 语言设置 - 语言</emph>中设置用于控制 $[officename] Basic 中的数字、日期及货币格式的locale. 在Basic的格式化代码中,总是使用点号 (<emph>.</emph>) 作为您的locale中定义的小数点符号的<emph>占位符</emph>,并且在实际使用中将会被替换为locale设置中对应的字符。"
@@ -206,7 +188,6 @@ msgstr "您可以在<switchinline select=\"sys\"><caseinline select=\"MAC\"><emp
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 "同样适用于日期、时间和货币格式的语言环境设置。Basic 格式的代码的解释和显示将遵循您的语言环境设置。"
@@ -215,7 +196,6 @@ msgstr "同样适用于日期、时间和货币格式的语言环境设置。Bas
msgctxt ""
"00000003.xhp\n"
"par_id3156424\n"
-"2\n"
"help.text"
msgid "The color values of the 16 basic colors are as follows:"
msgstr "16 种基本颜色的颜色值如下:"
@@ -224,7 +204,6 @@ msgstr "16 种基本颜色的颜色值如下:"
msgctxt ""
"00000003.xhp\n"
"par_id3153091\n"
-"3\n"
"help.text"
msgid "<emph>Color Value</emph>"
msgstr "<emph>颜色值</emph>"
@@ -233,7 +212,6 @@ msgstr "<emph>颜色值</emph>"
msgctxt ""
"00000003.xhp\n"
"par_id3154319\n"
-"4\n"
"help.text"
msgid "<emph>Color Name</emph>"
msgstr "<emph>颜色名称</emph>"
@@ -242,7 +220,6 @@ msgstr "<emph>颜色名称</emph>"
msgctxt ""
"00000003.xhp\n"
"par_id3151112\n"
-"5\n"
"help.text"
msgid "0"
msgstr "0"
@@ -251,7 +228,6 @@ msgstr "0"
msgctxt ""
"00000003.xhp\n"
"par_id3155854\n"
-"6\n"
"help.text"
msgid "Black"
msgstr "黑色"
@@ -260,7 +236,6 @@ msgstr "黑色"
msgctxt ""
"00000003.xhp\n"
"par_id3154942\n"
-"7\n"
"help.text"
msgid "128"
msgstr "128"
@@ -269,7 +244,6 @@ msgstr "128"
msgctxt ""
"00000003.xhp\n"
"par_id3154731\n"
-"8\n"
"help.text"
msgid "Blue"
msgstr "蓝色"
@@ -278,7 +252,6 @@ msgstr "蓝色"
msgctxt ""
"00000003.xhp\n"
"par_id3145645\n"
-"9\n"
"help.text"
msgid "32768"
msgstr "32768"
@@ -287,7 +260,6 @@ msgstr "32768"
msgctxt ""
"00000003.xhp\n"
"par_id3149400\n"
-"10\n"
"help.text"
msgid "Green"
msgstr "绿色"
@@ -296,7 +268,6 @@ msgstr "绿色"
msgctxt ""
"00000003.xhp\n"
"par_id3150753\n"
-"11\n"
"help.text"
msgid "32896"
msgstr "32896"
@@ -305,7 +276,6 @@ msgstr "32896"
msgctxt ""
"00000003.xhp\n"
"par_id3153765\n"
-"12\n"
"help.text"
msgid "Cyan"
msgstr "蓝绿色"
@@ -314,7 +284,6 @@ msgstr "蓝绿色"
msgctxt ""
"00000003.xhp\n"
"par_id3154756\n"
-"13\n"
"help.text"
msgid "8388608"
msgstr "8388608"
@@ -323,7 +292,6 @@ msgstr "8388608"
msgctxt ""
"00000003.xhp\n"
"par_id3159266\n"
-"14\n"
"help.text"
msgid "Red"
msgstr "红色"
@@ -332,7 +300,6 @@ msgstr "红色"
msgctxt ""
"00000003.xhp\n"
"par_id3163807\n"
-"15\n"
"help.text"
msgid "8388736"
msgstr "8388736"
@@ -341,7 +308,6 @@ msgstr "8388736"
msgctxt ""
"00000003.xhp\n"
"par_id3145150\n"
-"16\n"
"help.text"
msgid "Magenta"
msgstr "紫红色"
@@ -350,7 +316,6 @@ msgstr "紫红色"
msgctxt ""
"00000003.xhp\n"
"par_id3147002\n"
-"17\n"
"help.text"
msgid "8421376"
msgstr "8421376"
@@ -359,7 +324,6 @@ msgstr "8421376"
msgctxt ""
"00000003.xhp\n"
"par_id3152778\n"
-"18\n"
"help.text"
msgid "Yellow"
msgstr "黄色"
@@ -368,7 +332,6 @@ msgstr "黄色"
msgctxt ""
"00000003.xhp\n"
"par_id3150088\n"
-"19\n"
"help.text"
msgid "8421504"
msgstr "8421504"
@@ -377,7 +340,6 @@ msgstr "8421504"
msgctxt ""
"00000003.xhp\n"
"par_id3159239\n"
-"20\n"
"help.text"
msgid "White"
msgstr "白色"
@@ -386,7 +348,6 @@ msgstr "白色"
msgctxt ""
"00000003.xhp\n"
"par_id3150206\n"
-"21\n"
"help.text"
msgid "12632256"
msgstr "12632256"
@@ -395,7 +356,6 @@ msgstr "12632256"
msgctxt ""
"00000003.xhp\n"
"par_id3149817\n"
-"22\n"
"help.text"
msgid "Gray"
msgstr "灰色"
@@ -404,7 +364,6 @@ msgstr "灰色"
msgctxt ""
"00000003.xhp\n"
"par_id3150363\n"
-"23\n"
"help.text"
msgid "255"
msgstr "255"
@@ -413,7 +372,6 @@ msgstr "255"
msgctxt ""
"00000003.xhp\n"
"par_id3154576\n"
-"24\n"
"help.text"
msgid "Light blue"
msgstr "浅蓝色"
@@ -422,7 +380,6 @@ msgstr "浅蓝色"
msgctxt ""
"00000003.xhp\n"
"par_id3150367\n"
-"25\n"
"help.text"
msgid "65280"
msgstr "65280"
@@ -431,7 +388,6 @@ msgstr "65280"
msgctxt ""
"00000003.xhp\n"
"par_id3150202\n"
-"26\n"
"help.text"
msgid "Light green"
msgstr "浅绿色"
@@ -440,7 +396,6 @@ msgstr "浅绿色"
msgctxt ""
"00000003.xhp\n"
"par_id3154487\n"
-"27\n"
"help.text"
msgid "65535"
msgstr "65535"
@@ -449,7 +404,6 @@ msgstr "65535"
msgctxt ""
"00000003.xhp\n"
"par_id3151332\n"
-"28\n"
"help.text"
msgid "Light cyan"
msgstr "浅蓝绿色"
@@ -458,7 +412,6 @@ msgstr "浅蓝绿色"
msgctxt ""
"00000003.xhp\n"
"par_id3148702\n"
-"29\n"
"help.text"
msgid "16711680"
msgstr "16711680"
@@ -467,7 +420,6 @@ msgstr "16711680"
msgctxt ""
"00000003.xhp\n"
"par_id3153067\n"
-"30\n"
"help.text"
msgid "Light red"
msgstr "浅红色"
@@ -476,7 +428,6 @@ msgstr "浅红色"
msgctxt ""
"00000003.xhp\n"
"par_id3153912\n"
-"31\n"
"help.text"
msgid "16711935"
msgstr "16711935"
@@ -485,7 +436,6 @@ msgstr "16711935"
msgctxt ""
"00000003.xhp\n"
"par_id3159097\n"
-"32\n"
"help.text"
msgid "Light magenta"
msgstr "浅紫红色"
@@ -494,7 +444,6 @@ msgstr "浅紫红色"
msgctxt ""
"00000003.xhp\n"
"par_id3155266\n"
-"33\n"
"help.text"
msgid "16776960"
msgstr "16776960"
@@ -503,7 +452,6 @@ msgstr "16776960"
msgctxt ""
"00000003.xhp\n"
"par_id3157978\n"
-"34\n"
"help.text"
msgid "Light yellow"
msgstr "浅黄色"
@@ -512,7 +460,6 @@ msgstr "浅黄色"
msgctxt ""
"00000003.xhp\n"
"par_id3153286\n"
-"35\n"
"help.text"
msgid "16777215"
msgstr "16777215"
@@ -521,7 +468,6 @@ msgstr "16777215"
msgctxt ""
"00000003.xhp\n"
"par_id3151302\n"
-"36\n"
"help.text"
msgid "Transparent white"
msgstr "透明白色"
@@ -530,7 +476,6 @@ msgstr "透明白色"
msgctxt ""
"00000003.xhp\n"
"hd_id3152869\n"
-"37\n"
"help.text"
msgid "<variable id=\"errorcode\">Error Codes</variable>"
msgstr "<variable id=\"errorcode\">错误代码</variable>"
@@ -547,7 +492,6 @@ msgstr "<variable id=\"err1\">1 发生意外</variable>"
msgctxt ""
"00000003.xhp\n"
"par_id3155095\n"
-"38\n"
"help.text"
msgid "<variable id=\"err2\">2 Syntax error</variable>"
msgstr "<variable id=\"err2\">2 语法错误</variable>"
@@ -556,7 +500,6 @@ msgstr "<variable id=\"err2\">2 语法错误</variable>"
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 返回没有 Gosub</variable>"
@@ -565,7 +508,6 @@ msgstr "<variable id=\"err3\">3 返回没有 Gosub</variable>"
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 错误项;请重试</variable>"
@@ -574,7 +516,6 @@ msgstr "<variable id=\"err4\">4 错误项;请重试</variable>"
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 无效的过程调用</variable>"
@@ -583,7 +524,6 @@ msgstr "<variable id=\"err5\">5 无效的过程调用</variable>"
msgctxt ""
"00000003.xhp\n"
"par_id3159227\n"
-"42\n"
"help.text"
msgid "<variable id=\"err6\">6 Overflow</variable>"
msgstr "<variable id=\"err6\">6 溢出</variable>"
@@ -592,7 +532,6 @@ msgstr "<variable id=\"err6\">6 溢出</variable>"
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 内存不足</variable>"
@@ -601,7 +540,6 @@ msgstr "<variable id=\"err7\">7 内存不足</variable>"
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 数组已指定维度</variable>"
@@ -610,7 +548,6 @@ msgstr "<variable id=\"err8\">8 数组已指定维度</variable>"
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 索引号超出值域</variable>"
@@ -619,7 +556,6 @@ msgstr "<variable id=\"err9\">9 索引号超出值域</variable>"
msgctxt ""
"00000003.xhp\n"
"par_id3153806\n"
-"46\n"
"help.text"
msgid "<variable id=\"err10\">10 Duplicate definition</variable>"
msgstr "<variable id=\"err10\">10 重复定义</variable>"
@@ -628,7 +564,6 @@ msgstr "<variable id=\"err10\">10 重复定义</variable>"
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 被零除</variable>"
@@ -637,7 +572,6 @@ msgstr "<variable id=\"err11\">11 被零除</variable>"
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>"
@@ -646,7 +580,6 @@ msgstr "<variable id=\"err12\">12 变量未定义</variable>"
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 数据类型不匹配</variable>"
@@ -655,7 +588,6 @@ msgstr "<variable id=\"err13\">13 数据类型不匹配</variable>"
msgctxt ""
"00000003.xhp\n"
"par_id3151197\n"
-"50\n"
"help.text"
msgid "<variable id=\"err14\">14 Invalid parameter</variable>"
msgstr "<variable id=\"err14\">14 无效参数</variable>"
@@ -664,7 +596,6 @@ msgstr "<variable id=\"err14\">14 无效参数</variable>"
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 过程被用户中断</variable>"
@@ -673,7 +604,6 @@ msgstr "<variable id=\"err18\">18 过程被用户中断</variable>"
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 无错误信息而继续</variable>"
@@ -682,7 +612,6 @@ msgstr "<variable id=\"err20\">20 无错误信息而继续</variable>"
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 堆栈内存不足</variable>"
@@ -691,7 +620,6 @@ msgstr "<variable id=\"err28\">28 堆栈内存不足</variable>"
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 未定义子过程或函数</variable>"
@@ -700,7 +628,6 @@ msgstr "<variable id=\"err35\">35 未定义子过程或函数</variable>"
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 加载 DLL 文件出错</variable>"
@@ -709,7 +636,6 @@ msgstr "<variable id=\"err48\">48 加载 DLL 文件出错</variable>"
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 错误的 DLL 调用方式</variable>"
@@ -718,7 +644,6 @@ msgstr "<variable id=\"err49\">49 错误的 DLL 调用方式</variable>"
msgctxt ""
"00000003.xhp\n"
"par_id3153957\n"
-"57\n"
"help.text"
msgid "<variable id=\"err51\">51 Internal error</variable>"
msgstr "<variable id=\"err51\">51 内部错误</variable>"
@@ -727,7 +652,6 @@ msgstr "<variable id=\"err51\">51 内部错误</variable>"
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 错误的文件名或编号</variable>"
@@ -736,7 +660,6 @@ msgstr "<variable id=\"err52\">52 错误的文件名或编号</variable>"
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 未找到文件</variable>"
@@ -745,7 +668,6 @@ msgstr "<variable id=\"err53\">53 未找到文件</variable>"
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 错误的文件模式</variable>"
@@ -754,7 +676,6 @@ msgstr "<variable id=\"err54\">54 错误的文件模式</variable>"
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 文件已经打开</variable>"
@@ -763,7 +684,6 @@ msgstr "<variable id=\"err55\">55 文件已经打开</variable>"
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 设备 I/O 错误</variable>"
@@ -772,7 +692,6 @@ msgstr "<variable id=\"err57\">57 设备 I/O 错误</variable>"
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 文件已经存在</variable>"
@@ -781,7 +700,6 @@ msgstr "<variable id=\"err58\">58 文件已经存在</variable>"
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 错误的记录长度</variable>"
@@ -790,7 +708,6 @@ msgstr "<variable id=\"err59\">59 错误的记录长度</variable>"
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 磁盘或硬盘已满</variable>"
@@ -799,7 +716,6 @@ msgstr "<variable id=\"err61\">61 磁盘或硬盘已满</variable>"
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 读取内容超出 EOF</variable>"
@@ -808,7 +724,6 @@ msgstr "<variable id=\"err62\">62 读取内容超出 EOF</variable>"
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 错误的记录编号</variable>"
@@ -817,7 +732,6 @@ msgstr "<variable id=\"err63\">63 错误的记录编号</variable>"
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 文件过多</variable>"
@@ -826,7 +740,6 @@ msgstr "<variable id=\"err67\">67 文件过多</variable>"
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 设备不可用</variable>"
@@ -835,7 +748,6 @@ msgstr "<variable id=\"err68\">68 设备不可用</variable>"
msgctxt ""
"00000003.xhp\n"
"par_id3145225\n"
-"70\n"
"help.text"
msgid "<variable id=\"err70\">70 Access denied</variable>"
msgstr "<variable id=\"err70\">70 权限被拒绝</variable>"
@@ -844,7 +756,6 @@ msgstr "<variable id=\"err70\">70 权限被拒绝</variable>"
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 磁盘未就绪</variable>"
@@ -853,7 +764,6 @@ msgstr "<variable id=\"err71\">71 磁盘未就绪</variable>"
msgctxt ""
"00000003.xhp\n"
"par_id3148894\n"
-"72\n"
"help.text"
msgid "<variable id=\"err73\">73 Not implemented</variable>"
msgstr "<variable id=\"err73\">73 功能未实现</variable>"
@@ -862,7 +772,6 @@ msgstr "<variable id=\"err73\">73 功能未实现</variable>"
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 无法在其他驱动器上重命名</variable>"
@@ -871,7 +780,6 @@ msgstr "<variable id=\"err74\">74 无法在其他驱动器上重命名</variable
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 路径/文件访问错误</variable>"
@@ -880,7 +788,6 @@ msgstr "<variable id=\"err75\">75 路径/文件访问错误</variable>"
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 未找到路径</variable>"
@@ -889,7 +796,6 @@ msgstr "<variable id=\"err76\">76 未找到路径</variable>"
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>"
@@ -898,7 +804,6 @@ msgstr "<variable id=\"err91\">91 未设置对象变量</variable>"
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 无效的字符串匹配模式</variable>"
@@ -907,7 +812,6 @@ msgstr "<variable id=\"err93\">93 无效的字符串匹配模式</variable>"
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 不允许使用零</variable>"
@@ -1076,7 +980,6 @@ msgstr "<variable id=\"err298\">298 DDE 需要 DDEML.DLL 文件</variable>"
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 无法加载模块; 格式无效</variable>"
@@ -1085,7 +988,6 @@ msgstr "<variable id=\"err323\">323 无法加载模块; 格式无效</variable>"
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 无效的对象索引</variable>"
@@ -1094,7 +996,6 @@ msgstr "<variable id=\"err341\">341 无效的对象索引</variable>"
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 对象不可用</variable>"
@@ -1103,7 +1004,6 @@ msgstr "<variable id=\"err366\">366 对象不可用</variable>"
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 错误的属性值</variable>"
@@ -1112,7 +1012,6 @@ msgstr "<variable id=\"err380\">380 错误的属性值</variable>"
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 属性为只读</variable>"
@@ -1121,7 +1020,6 @@ msgstr "<variable id=\"err382\">382 属性为只读</variable>"
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 属性为只写</variable>"
@@ -1130,7 +1028,6 @@ msgstr "<variable id=\"err394\">394 属性为只写</variable>"
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 无效的对象引用</variable>"
@@ -1139,7 +1036,6 @@ msgstr "<variable id=\"err420\">420 无效的对象引用</variable>"
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 未找到属性或方法</variable>"
@@ -1148,7 +1044,6 @@ msgstr "<variable id=\"err423\">423 未找到属性或方法</variable>"
msgctxt ""
"00000003.xhp\n"
"par_id3148738\n"
-"87\n"
"help.text"
msgid "<variable id=\"err424\">424 Object required</variable>"
msgstr "<variable id=\"err424\">424 需要对象</variable>"
@@ -1157,7 +1052,6 @@ msgstr "<variable id=\"err424\">424 需要对象</variable>"
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 无效的对象用法</variable>"
@@ -1166,7 +1060,6 @@ msgstr "<variable id=\"err425\">425 无效的对象用法</variable>"
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 该对象不支持 OLE 自动化</variable>"
@@ -1175,7 +1068,6 @@ msgstr "<variable id=\"err430\">430 该对象不支持 OLE 自动化</variable>"
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 对象不支持该属性或方法</variable>"
@@ -1184,7 +1076,6 @@ msgstr "<variable id=\"err438\">438 对象不支持该属性或方法</variable>
msgctxt ""
"00000003.xhp\n"
"par_id3154374\n"
-"91\n"
"help.text"
msgid "<variable id=\"err440\">440 OLE automation error</variable>"
msgstr "<variable id=\"err440\">440 OLE 自动化错误</variable>"
@@ -1193,7 +1084,6 @@ msgstr "<variable id=\"err440\">440 OLE 自动化错误</variable>"
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 指定对象不支持此操作</variable>"
@@ -1202,7 +1092,6 @@ msgstr "<variable id=\"err445\">445 指定对象不支持此操作</variable>"
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 指定对象不支持命名参数</variable>"
@@ -1211,7 +1100,6 @@ msgstr "<variable id=\"err446\">446 指定对象不支持命名参数</variable>
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 指定对象不支持当前区域设置</variable>"
@@ -1220,7 +1108,6 @@ msgstr "<variable id=\"err447\">447 指定对象不支持当前区域设置</var
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 未找到命名参数</variable>"
@@ -1229,7 +1116,6 @@ msgstr "<variable id=\"err448\">448 未找到命名参数</variable>"
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 参数非可选</variable>"
@@ -1238,7 +1124,6 @@ msgstr "<variable id=\"err449\">449 参数非可选</variable>"
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 错误的参数数量</variable>"
@@ -1247,7 +1132,6 @@ msgstr "<variable id=\"err450\">450 错误的参数数量</variable>"
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 对象不是集合</variable>"
@@ -1256,7 +1140,6 @@ msgstr "<variable id=\"err451\">451 对象不是集合</variable>"
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 无效的序数</variable>"
@@ -1265,7 +1148,6 @@ msgstr "<variable id=\"err452\">452 无效的序数</variable>"
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 未找到指定的 DLL 函数</variable>"
@@ -1274,7 +1156,6 @@ msgstr "<variable id=\"err453\">453 未找到指定的 DLL 函数</variable>"
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 无效的剪贴板格式</variable>"
@@ -1579,7 +1460,6 @@ msgstr "使用 $[officename] Basic 编程"
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=\"使用 $[officename] Basic 编程 \">使用 $[officename] Basic 编程 </link></variable>"
@@ -1588,7 +1468,6 @@ msgstr "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/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 "在此处查找有关使用宏和 $[officename] Basic 的一般信息。"
@@ -1613,7 +1492,6 @@ msgstr "<bookmark_value>基础知识</bookmark_value><bookmark_value>子程序</
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\">Basics</link>"
@@ -1622,7 +1500,6 @@ msgstr "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Basics\">Basics</l
msgctxt ""
"01010210.xhp\n"
"par_id3156023\n"
-"14\n"
"help.text"
msgid "This section provides the fundamentals for working with $[officename] Basic."
msgstr "本节介绍 $[officename] Basic 的基础知识。"
@@ -1631,7 +1508,6 @@ msgstr "本节介绍 $[officename] Basic 的基础知识。"
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 "$[officename] Basic 代码基于 <emph>sub...end sub</emph> 至 <emph>function...end function</emph> 小节中所指定的子例行程序和函数。每个子程序或函数均可调用其他子程序和函数。如果您在编写子程序或函数的一般代码时比较注意,则也许能够在其他程序中重复利用这些代码。请参阅<link href=\"text/sbasic/shared/01020300.xhp\" name=\"Procedures and Functions\">过程和函数</link>。"
@@ -1648,7 +1524,6 @@ msgstr "对您 public 变量、sub 与函数名称的一些限制。您不能使
msgctxt ""
"01010210.xhp\n"
"hd_id3150398\n"
-"3\n"
"help.text"
msgid "What is a Sub?"
msgstr "什么是子程序?"
@@ -1657,7 +1532,6 @@ msgstr "什么是子程序?"
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>子程序</emph>是<emph>子例行程序</emph>的简写形式,用于处理程序中的某些任务。子程序可用于将一个任务分成多个过程。将程序拆分成若干个过程和分过程可以增强程序的可读性并降低出错的可能性。子程序可以接受一些自变量作为参数,但是不会向调用它的子程序或函数返回任何值,例如:"
@@ -1666,7 +1540,6 @@ msgstr "<emph>子程序</emph>是<emph>子例行程序</emph>的简写形式,
msgctxt ""
"01010210.xhp\n"
"par_id3150868\n"
-"15\n"
"help.text"
msgid "DoSomethingWithTheValues(MyFirstValue,MySecondValue)"
msgstr "DoSomethingWithTheValues(MyFirstValue,MySecondValue)"
@@ -1675,7 +1548,6 @@ msgstr "DoSomethingWithTheValues(MyFirstValue,MySecondValue)"
msgctxt ""
"01010210.xhp\n"
"hd_id3156282\n"
-"5\n"
"help.text"
msgid "What is a Function?"
msgstr "什么是函数?"
@@ -1684,7 +1556,6 @@ msgstr "什么是函数?"
msgctxt ""
"01010210.xhp\n"
"par_id3156424\n"
-"6\n"
"help.text"
msgid "A <emph>function</emph> is essentially a sub, which returns a value. You may use a function at the right side of a variable declaration, or at other places where you normally use values, for example:"
msgstr "<emph>函数</emph>实质上是返回数值的子程序。您可以在变量声明的右边或其他通常需要使用数值的位置处使用函数,例如:"
@@ -1693,7 +1564,6 @@ msgstr "<emph>函数</emph>实质上是返回数值的子程序。您可以在
msgctxt ""
"01010210.xhp\n"
"par_id3146985\n"
-"7\n"
"help.text"
msgid "MySecondValue = myFunction(MyFirstValue)"
msgstr "MySecondValue = myFunction(MyFirstValue)"
@@ -1702,7 +1572,6 @@ msgstr "MySecondValue = myFunction(MyFirstValue)"
msgctxt ""
"01010210.xhp\n"
"hd_id3153364\n"
-"8\n"
"help.text"
msgid "Global and local variables"
msgstr "全局变量和局部变量"
@@ -1711,7 +1580,6 @@ msgstr "全局变量和局部变量"
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 "全局变量对于模块中的所有子程序和函数均有效。此类变量通常在模块的起始位置、第一个子程序或函数开始之前声明。"
@@ -1720,7 +1588,6 @@ msgstr "全局变量对于模块中的所有子程序和函数均有效。此类
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 "在子程序或函数中声明的变量仅在该子程序或函数中有效。这些变量会覆盖同名的全局变量和上级子程序或函数中同名的局部变量。"
@@ -1729,7 +1596,6 @@ msgstr "在子程序或函数中声明的变量仅在该子程序或函数中有
msgctxt ""
"01010210.xhp\n"
"hd_id3150010\n"
-"11\n"
"help.text"
msgid "Structuring"
msgstr "结构化"
@@ -1738,7 +1604,6 @@ msgstr "结构化"
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 "将程序拆分成过程和函数后,可以将这些过程和函数保存为文件,以供其他项目使用。$[officename] Basic 支持<link href=\"text/sbasic/shared/01020500.xhp\" name=\"模块和程序库\">模块和程序库</link>。模块中通常包含过程和函数。您可以将模块定义为全局文档或部分文档。多个模块可以合成一个程序库。"
@@ -1747,7 +1612,6 @@ msgstr "将程序拆分成过程和函数后,可以将这些过程和函数保
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 "使用 <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"宏\">宏</link> 对话框,可以将子程序、函数、模块和程序库从一个文件中复制或移动到另一个文件中。"
@@ -1764,7 +1628,6 @@ msgstr "语法:"
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=\"语法\">语法</link>"
@@ -1773,7 +1636,6 @@ msgstr "<link href=\"text/sbasic/shared/01020000.xhp\" name=\"语法\">语法</l
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 "本节介绍 $[officename] Basic 的基本语法元素。如果需要详细的说明,请参阅单独提供的《$[officename] Basic 指南》。"
@@ -2350,7 +2212,6 @@ msgstr "使用对象"
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\">使用对象目录</link></variable>"
@@ -2359,7 +2220,6 @@ msgstr "<variable id=\"01020200\"><link href=\"text/sbasic/shared/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 "对象目录提供了您在 $[officename] 中创建的所有模块和对话框的摘要。"
@@ -2368,7 +2228,6 @@ msgstr "对象目录提供了您在 $[officename] 中创建的所有模块和对
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 "在“宏”工具栏上单击<emph>对象目录</emph>图标 <image id=\"img_id3147341\" src=\"cmd/sc_objectcatalog.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3147341\" xml-lang=\"en-US\">Icon</alt></image> 显示对象目录。"
@@ -2377,7 +2236,6 @@ msgstr "在“宏”工具栏上单击<emph>对象目录</emph>图标 <image id=
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 "此对话框以分层式表示法显示所有现有对象的列表。双击列表条目可以打开其下级对象。"
@@ -2386,7 +2244,6 @@ msgstr "此对话框以分层式表示法显示所有现有对象的列表。双
msgctxt ""
"01020200.xhp\n"
"par_id3150786\n"
-"83\n"
"help.text"
msgid "To display a certain module in the Editor or to position the cursor in a selected SUB or FUNCTION, double click on the corresponding entry."
msgstr "要在编辑器中显示某个特定的模块,或者需要将光标定位在某个选定的SUB或者FUNCTION,请双击相应的条目。"
@@ -2779,7 +2636,6 @@ msgstr "程序库、模块和对话框"
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=\"程序库、模块和对话框\">程序库、模块和对话框</link>"
@@ -2788,7 +2644,6 @@ msgstr "<link href=\"text/sbasic/shared/01020500.xhp\" name=\"程序库、模块
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 "下面介绍 $[officename] Basic 中程序库、模块和对话框的基本用法。"
@@ -2797,7 +2652,6 @@ msgstr "下面介绍 $[officename] Basic 中程序库、模块和对话框的基
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 提供了可以帮助您构建项目的工具。它可以支持不同的“单元”,以方便您对 Basic 项目中的各个子程序和函数进行组合。"
@@ -2806,7 +2660,6 @@ msgstr "$[officename] Basic 提供了可以帮助您构建项目的工具。它
msgctxt ""
"01020500.xhp\n"
"hd_id3148575\n"
-"5\n"
"help.text"
msgid "Libraries"
msgstr "程序库"
@@ -2815,7 +2668,6 @@ msgstr "程序库"
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 "程序库是用于管理模块的工具,可以附加到文档或模板中。当保存文档或模板时,也会自动保存程序库中的所有模块。"
@@ -2824,7 +2676,6 @@ msgstr "程序库是用于管理模块的工具,可以附加到文档或模板
msgctxt ""
"01020500.xhp\n"
"par_id3151112\n"
-"7\n"
"help.text"
msgid "A library can contain up to 16,000 modules."
msgstr "一个程序库最多可以含有 16,000 个模块。"
@@ -2833,7 +2684,6 @@ msgstr "一个程序库最多可以含有 16,000 个模块。"
msgctxt ""
"01020500.xhp\n"
"hd_id3149262\n"
-"8\n"
"help.text"
msgid "Modules"
msgstr "模块"
@@ -2842,7 +2692,6 @@ msgstr "模块"
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 "模块中含有子程序、函数和变量声明。可以被保存在一个模块之中的程序的长度限制为 64 KB。如果需要更多的空间,您可以将一个 $[officename] Basic 项目划分成多个模块,然后将它们保存在一个程序库中。"
@@ -2851,7 +2700,6 @@ msgstr "模块中含有子程序、函数和变量声明。可以被保存在一
msgctxt ""
"01020500.xhp\n"
"hd_id3152577\n"
-"11\n"
"help.text"
msgid "Dialog Modules"
msgstr "对话框模块"
@@ -2860,7 +2708,6 @@ msgstr "对话框模块"
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 "对话框模块包含对话框定义,其中包括对话框属性、每个对话框元素和指定事件的属性。由于对话框模块只能含有一个对话框,因此通常就用“对话框”来指代对话框模块。"
@@ -2885,7 +2732,6 @@ msgstr "<bookmark_value>Basic IDE;集成开发环境</bookmark_value><bookmark_v
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=\"集成开发环境 (IDE)\">集成开发环境 (IDE)</link>"
@@ -2894,7 +2740,6 @@ msgstr "<link href=\"text/sbasic/shared/01030000.xhp\" name=\"集成开发环境
msgctxt ""
"01030000.xhp\n"
"par_id3146795\n"
-"2\n"
"help.text"
msgid "This section describes the Integrated Development Environment for $[officename] Basic."
msgstr "本节介绍 $[officename] Basic 的集成开发环境。"
@@ -2911,7 +2756,6 @@ msgstr "IDE 概况"
msgctxt ""
"01030100.xhp\n"
"hd_id3147291\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/01030100.xhp\" name=\"IDE Overview\">IDE Overview</link>"
msgstr "<link href=\"text/sbasic/shared/01030100.xhp\" name=\"IDE 概览\">IDE 概览</link>"
@@ -2920,7 +2764,6 @@ msgstr "<link href=\"text/sbasic/shared/01030100.xhp\" name=\"IDE 概览\">IDE
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 "IDE 中的<link href=\"text/sbasic/shared/main0211.xhp\" name=\"宏工具栏\"><emph>宏工具栏</emph></link>提供了各种用于编辑和测试程序的图标。"
@@ -2929,7 +2772,6 @@ msgstr "IDE 中的<link href=\"text/sbasic/shared/main0211.xhp\" name=\"宏工
msgctxt ""
"01030100.xhp\n"
"par_id3151210\n"
-"4\n"
"help.text"
msgid "In the <link href=\"text/sbasic/shared/01030200.xhp\" name=\"Editor window\"><emph>Editor window</emph></link>, directly below the Macro toolbar, you can edit the Basic program code. The column on the left side is used to set breakpoints in the program code."
msgstr "在<link href=\"text/sbasic/shared/01030200.xhp\" name=\"Editor window\"><emph>编辑窗口</emph></link>中,位于“宏“工具栏的下方,您可以在此编辑 Basic 程序代码。左边的列用于在程序代码中设置断点。"
@@ -2938,7 +2780,6 @@ msgstr "在<link href=\"text/sbasic/shared/01030200.xhp\" name=\"Editor window\"
msgctxt ""
"01030100.xhp\n"
"par_id3154686\n"
-"5\n"
"help.text"
msgid "The <link href=\"text/sbasic/shared/01050100.xhp\" name=\"Watch\"><emph>Watch window</emph></link> (observer) is located below the Editor window at the left, and displays the contents of variables or arrays during a single step process."
msgstr "<link href=\"text/sbasic/shared/01050100.xhp\" name=\"监视\"><emph>监视窗口</emph></link>(监视器)位于编辑窗口的下方左侧,在单步运行过程中显示变量或者数组的内容。"
@@ -2947,7 +2788,6 @@ msgstr "<link href=\"text/sbasic/shared/01050100.xhp\" name=\"监视\"><emph>监
msgctxt ""
"01030100.xhp\n"
"par_id3145787\n"
-"8\n"
"help.text"
msgid "The <emph>Call Stack</emph> window to the right provides information about the call stack of SUBS and FUNCTIONS when a program runs."
msgstr "右边的<emph>调用堆栈</emph>窗口显示当程序运行时子程序和函数的调用堆栈信息。"
@@ -2956,7 +2796,6 @@ msgstr "右边的<emph>调用堆栈</emph>窗口显示当程序运行时子程
msgctxt ""
"01030100.xhp\n"
"par_id3147434\n"
-"6\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
msgstr "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
@@ -2981,7 +2820,6 @@ msgstr "<bookmark_value>保存; Basic 代码</bookmark_value><bookmark_value>加
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=\"Basic 编辑器\">Basic 编辑器</link>"
@@ -2990,7 +2828,6 @@ msgstr "<link href=\"text/sbasic/shared/01030200.xhp\" name=\"Basic 编辑器\">
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 "Basic 编辑器提供了与文本文档类似的标准编辑功能。它支持<emph>编辑</emph>菜单中的功能(剪切、删除、粘贴),支持通过使用 Shift 键选择文本,以及光标定位功能(例如通过使用 <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> 和方向键在字词之间移动光标)。"
@@ -2999,7 +2836,6 @@ msgstr "Basic 编辑器提供了与文本文档类似的标准编辑功能。它
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 "可以将较长的行拆分为几个部分,方法是在行尾插入空格和下划线字符 _。这样可以将该行与下一行连接成一个逻辑行。(如果在同一个 Basic 模块中使用“选项兼容”,则续行功能对于注释行也同样有效。)"
@@ -3008,7 +2844,6 @@ msgstr "可以将较长的行拆分为几个部分,方法是在行尾插入空
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 "如果您在<emph>宏</emph>工具栏单击<emph>运行 BASIC</emph> 图标,程序将从 Basic 编辑器中的第一行开始执行。程序执行第一个 Sub 或函数然后程序执行停止。\"Sub Main\" 在程序执行中没有优先权。"
@@ -3025,7 +2860,6 @@ msgstr "在您第一次打开 IDE 时就可以看见的 Sub Main 与 End Sub 行
msgctxt ""
"01030200.xhp\n"
"hd_id3125863\n"
-"4\n"
"help.text"
msgid "Navigating in a Project"
msgstr "在项目中浏览"
@@ -3034,7 +2868,6 @@ msgstr "在项目中浏览"
msgctxt ""
"01030200.xhp\n"
"hd_id3145785\n"
-"6\n"
"help.text"
msgid "The Library List"
msgstr "“程序库”列表"
@@ -3043,7 +2876,6 @@ msgstr "“程序库”列表"
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 "从工具栏左侧的<emph>程序库</emph>列表中选择一个程序库,将该程序库加载到编辑器中。将显示选定程序库中的第一个模块。"
@@ -3052,7 +2884,6 @@ msgstr "从工具栏左侧的<emph>程序库</emph>列表中选择一个程序
msgctxt ""
"01030200.xhp\n"
"hd_id3153190\n"
-"8\n"
"help.text"
msgid "The Object Catalog"
msgstr "对象类别"
@@ -3061,7 +2892,6 @@ msgstr "对象类别"
msgctxt ""
"01030200.xhp\n"
"hd_id3148647\n"
-"15\n"
"help.text"
msgid "Saving and Loading Basic Source Code"
msgstr "保存和加载 Basic 源代码"
@@ -3070,7 +2900,6 @@ msgstr "保存和加载 Basic 源代码"
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 "您可以在文本文件中保存 Basic 代码以便在其他编程系统中保存和导出该代码。"
@@ -3079,7 +2908,6 @@ msgstr "您可以在文本文件中保存 Basic 代码以便在其他编程系
msgctxt ""
"01030200.xhp\n"
"par_id3149959\n"
-"25\n"
"help.text"
msgid "You cannot save Basic dialogs to a text file."
msgstr "Basic 对话框无法保存为文本文件。"
@@ -3088,7 +2916,6 @@ msgstr "Basic 对话框无法保存为文本文件。"
msgctxt ""
"01030200.xhp\n"
"hd_id3149403\n"
-"17\n"
"help.text"
msgid "Saving Source Code to a Text File"
msgstr "将源代码保存为文本文件"
@@ -3097,7 +2924,6 @@ msgstr "将源代码保存为文本文件"
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 "从对象目录中选择要以文本导出的模块。"
@@ -3106,7 +2932,6 @@ msgstr "从对象目录中选择要以文本导出的模块。"
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 "单击“宏”工具栏中的<emph>源代码另存为</emph>图标。"
@@ -3115,7 +2940,6 @@ msgstr "单击“宏”工具栏中的<emph>源代码另存为</emph>图标。"
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 "选择文件名并单击<emph>确定</emph>将文件保存。"
@@ -3124,7 +2948,6 @@ msgstr "选择文件名并单击<emph>确定</emph>将文件保存。"
msgctxt ""
"01030200.xhp\n"
"hd_id3159264\n"
-"21\n"
"help.text"
msgid "Loading Source Code From a Text File"
msgstr "装入文本文件中的源代码"
@@ -3133,7 +2956,6 @@ msgstr "装入文本文件中的源代码"
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 "从对象目录中选择要向其中导入源代码的模块。"
@@ -3142,7 +2964,6 @@ msgstr "从对象目录中选择要向其中导入源代码的模块。"
msgctxt ""
"01030200.xhp\n"
"par_id3145230\n"
-"23\n"
"help.text"
msgid "Position the cursor where you want to insert the program code."
msgstr "将光标移到要插入程序代码的位置。"
@@ -3151,7 +2972,6 @@ msgstr "将光标移到要插入程序代码的位置。"
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 "单击“宏”工具栏中的<emph>插入源文本</emph>图标。"
@@ -3160,7 +2980,6 @@ msgstr "单击“宏”工具栏中的<emph>插入源文本</emph>图标。"
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 "选择含有源代码的文本文件并单击<emph>确定</emph>。"
@@ -3169,7 +2988,6 @@ msgstr "选择含有源代码的文本文件并单击<emph>确定</emph>。"
msgctxt ""
"01030200.xhp\n"
"par_id3153198\n"
-"29\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
msgstr "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
@@ -3194,7 +3012,6 @@ msgstr "<bookmark_value>调试 Basic 程序</bookmark_value><bookmark_value>变
msgctxt ""
"01030300.xhp\n"
"hd_id3153344\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/01030300.xhp\">Debugging a Basic Program</link>"
msgstr "<link href=\"text/sbasic/shared/01030300.xhp\">调试 Basic 程序</link>"
@@ -3203,7 +3020,6 @@ msgstr "<link href=\"text/sbasic/shared/01030300.xhp\">调试 Basic 程序</link
msgctxt ""
"01030300.xhp\n"
"hd_id3159224\n"
-"4\n"
"help.text"
msgid "Breakpoints and Single Step Execution"
msgstr "断点和单步执行"
@@ -3212,7 +3028,6 @@ msgstr "断点和单步执行"
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 "您可以通过单步执行来逐行检查 Basic 程序中的错误。由于可以立即看到每一步的执行结果,因此很容易跟踪错误。编辑器的断点列中的指针指示当前的行。如果希望强制使程序在某个位置暂停,您也可以在该位置处设置一个断点。"
@@ -3221,7 +3036,6 @@ msgstr "您可以通过单步执行来逐行检查 Basic 程序中的错误。
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 "双击“编辑器”窗口左侧的<emph>断点</emph>列,可以使对应行在设置与不设置断点之间切换。当程序在执行过程中遇到断点时,将暂停执行。"
@@ -3230,7 +3044,6 @@ msgstr "双击“编辑器”窗口左侧的<emph>断点</emph>列,可以使
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 "如果使用<emph>单步</emph>图标调用<emph>单步</emph>执行,程序将进入过程和函数内部执行。"
@@ -3239,7 +3052,6 @@ msgstr "如果使用<emph>单步</emph>图标调用<emph>单步</emph>执行,
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 "如果使用<emph>单步处理</emph>图标调用过程单步执行,则程序不会进入过程和函数的内部,而是将它们当作一个单步来执行。"
@@ -3248,7 +3060,6 @@ msgstr "如果使用<emph>单步处理</emph>图标调用过程单步执行,
msgctxt ""
"01030300.xhp\n"
"hd_id3153825\n"
-"9\n"
"help.text"
msgid "Properties of a Breakpoint"
msgstr "断点属性"
@@ -3257,7 +3068,6 @@ msgstr "断点属性"
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 "在断点列中的断点上单击鼠标右键,从显示的上下文菜单中可以看到该断点的属性。"
@@ -3266,7 +3076,6 @@ msgstr "在断点列中的断点上单击鼠标右键,从显示的上下文菜
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 "通过选择上下文菜单中的<emph>活动</emph>选项,您可以<emph>激活</emph>与<emph>停用</emph>断点。如果断点处于停用状态,则不会暂停程序的执行。"
@@ -3275,7 +3084,6 @@ msgstr "通过选择上下文菜单中的<emph>活动</emph>选项,您可以<e
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 "从断点的上下文菜单中选择<emph>属性</emph>,或者从断点列的上下文菜单中选择<emph>断点</emph>,可以打开 <emph>断点</emph>对话框,用于指定其他断点选项。"
@@ -3284,7 +3092,6 @@ msgstr "从断点的上下文菜单中选择<emph>属性</emph>,或者从断
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 "该列表列出所有的<emph>断点</emph>以及它在源代码中对应的行号。选中或取消选中<emph>活动</emph>复选框,可启用或停用选定断点。"
@@ -3293,7 +3100,6 @@ msgstr "该列表列出所有的<emph>断点</emph>以及它在源代码中对
msgctxt ""
"01030300.xhp\n"
"par_id3158407\n"
-"12\n"
"help.text"
msgid "The <emph>Pass Count</emph> specifies the number of times the breakpoint can be passed over before the program is interrupted. If you enter 0 (default setting) the program is always interrupted as soon as a breakpoint is encountered."
msgstr "<emph>穿透</emph>用于指定在程序暂停之前,断点被穿透的次数。如果输入 0(默认设置),则一旦遇到断点,程序就会暂停执行。"
@@ -3302,7 +3108,6 @@ msgstr "<emph>穿透</emph>用于指定在程序暂停之前,断点被穿透
msgctxt ""
"01030300.xhp\n"
"par_id3153968\n"
-"13\n"
"help.text"
msgid "Click <emph>Delete</emph> to remove the breakpoint from the program."
msgstr "单击<emph>删除</emph>可以从程序中删除断点。"
@@ -3311,7 +3116,6 @@ msgstr "单击<emph>删除</emph>可以从程序中删除断点。"
msgctxt ""
"01030300.xhp\n"
"hd_id3150439\n"
-"14\n"
"help.text"
msgid "Observing the Value of Variables"
msgstr "观察变量的值"
@@ -3320,7 +3124,6 @@ msgstr "观察变量的值"
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 "通过将某个变量添加到<emph>监视</emph>窗口,可以对该变量的值进行监视。要向变量查看列表中添加变量,请在<emph>监视</emph>文字框中键入变量名称然后按 Enter 键。"
@@ -3329,7 +3132,6 @@ msgstr "通过将某个变量添加到<emph>监视</emph>窗口,可以对该
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 "变量只有在作用域内时才会显示值。如果当前源代码中没有对变量进行定义,则会显示 \"Out of Scope\" 来代替变量值。"
@@ -3338,7 +3140,6 @@ msgstr "变量只有在作用域内时才会显示值。如果当前源代码中
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 "还可以在“监视”窗口中查看数组的值。如果在“监视”文字框中输入无索引值的数组变量名称,将会显示整个数组的内容。"
@@ -3347,7 +3148,6 @@ msgstr "还可以在“监视”窗口中查看数组的值。如果在“监视
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 "在运行时,如果将鼠标停在编辑器中某个预设变量上,则会用一个弹出式框显示该变量的内容。"
@@ -3356,7 +3156,6 @@ msgstr "在运行时,如果将鼠标停在编辑器中某个预设变量上,
msgctxt ""
"01030300.xhp\n"
"hd_id3148618\n"
-"20\n"
"help.text"
msgid "The Call Stack Window"
msgstr "使用“调用堆栈”窗口"
@@ -3365,7 +3164,6 @@ msgstr "使用“调用堆栈”窗口"
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\">介绍过程和函数调用层级结构的概况。</ahelp>从中可以确定源代码中当前位置的过程和函数的调用关系。"
@@ -3374,7 +3172,6 @@ msgstr "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\">介绍过程和函数调用
msgctxt ""
"01030300.xhp\n"
"hd_id3150594\n"
-"24\n"
"help.text"
msgid "List of Run-Time Errors"
msgstr "运行时错误列表"
@@ -3399,7 +3196,6 @@ msgstr "<bookmark_value>库; 组织</bookmark_value><bookmark_value>模块; 组
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\">组织库和模块</link></variable>"
@@ -3408,7 +3204,6 @@ msgstr "<variable id=\"01030400\"><link href=\"text/sbasic/shared/01030400.xhp\"
msgctxt ""
"01030400.xhp\n"
"hd_id3150868\n"
-"4\n"
"help.text"
msgid "Organizing Libraries"
msgstr "管理程序库"
@@ -3417,7 +3212,6 @@ msgstr "管理程序库"
msgctxt ""
"01030400.xhp\n"
"hd_id3125864\n"
-"5\n"
"help.text"
msgid "Creating a New Library"
msgstr "创建新库"
@@ -3426,7 +3220,6 @@ msgstr "创建新库"
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 "依次选择<emph>工具 - 宏 - 管理宏 - %PRODUCTNAME Basic</emph>,并单击<emph>管理器</emph>或单击 Basic IDE 中的<emph>选择模块</emph>图标,打开<emph>宏管理器</emph>对话框。"
@@ -3435,7 +3228,6 @@ msgstr "依次选择<emph>工具 - 宏 - 管理宏 - %PRODUCTNAME Basic</emph>
msgctxt ""
"01030400.xhp\n"
"par_id3153726\n"
-"8\n"
"help.text"
msgid "Click the <emph>Libraries</emph> tab."
msgstr "单击<emph>库</emph>选项卡。"
@@ -3444,7 +3236,6 @@ msgstr "单击<emph>库</emph>选项卡。"
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 "在<emph>位置</emph>列表中选择要附加程序库的位置。如果选择 %PRODUCTNAME 宏和对话框,该程序库将属于 $[officename] 应用程序,并可用于所有文档。如果选择文档,程序库将附加至此文档,并只能从该文档使用。"
@@ -3453,7 +3244,6 @@ msgstr "在<emph>位置</emph>列表中选择要附加程序库的位置。如
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 "单击<emph>新建</emph>,插入名称以创建新的库。"
@@ -3462,7 +3252,6 @@ msgstr "单击<emph>新建</emph>,插入名称以创建新的库。"
msgctxt ""
"01030400.xhp\n"
"hd_id3147394\n"
-"48\n"
"help.text"
msgid "Import a Library"
msgstr "导入库"
@@ -3471,7 +3260,6 @@ msgstr "导入库"
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 "依次选择<emph>工具 - 宏 - 管理宏 - %PRODUCTNAME Basic</emph>,并单击<emph>管理器</emph>或单击 Basic IDE 中的<emph>选择模块</emph>图标,打开<emph>宏管理器</emph>对话框。"
@@ -3480,7 +3268,6 @@ msgstr "依次选择<emph>工具 - 宏 - 管理宏 - %PRODUCTNAME Basic</emph>
msgctxt ""
"01030400.xhp\n"
"par_id3146972\n"
-"50\n"
"help.text"
msgid "Click the <emph>Libraries</emph> tab."
msgstr "单击<emph>库</emph>选项卡。"
@@ -3489,7 +3276,6 @@ msgstr "单击<emph>库</emph>选项卡。"
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 "在<emph>位置</emph>列表中选择要导入程序库的位置。如果选择 %PRODUCTNAME 宏和对话框,该程序库将属于 $[officename] 应用程序,并可用于所有文档。如果选择文档,程序库将导入至此文档,并只能从该文档使用。"
@@ -3498,7 +3284,6 @@ msgstr "在<emph>位置</emph>列表中选择要导入程序库的位置。如
msgctxt ""
"01030400.xhp\n"
"par_id3154253\n"
-"52\n"
"help.text"
msgid "Click <emph>Import...</emph> and select an external library to import."
msgstr "单击<emph>导入...</emph>,然后选择要导入的外部库。"
@@ -3507,7 +3292,6 @@ msgstr "单击<emph>导入...</emph>,然后选择要导入的外部库。"
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 "在<emph>导入程序库</emph>对话框中选择所有要导入的程序库。选定某个文件后,对话框中会显示该文件含有的所有程序库。"
@@ -3516,7 +3300,6 @@ msgstr "在<emph>导入程序库</emph>对话框中选择所有要导入的程
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 "如果要将程序库作为引用插入,请选中<emph>当作引用插入(只读)</emph>复选框。在 Basic IDE 中,只读程序库具有程序库的全部功能,但不能进行修改。"
@@ -3525,7 +3308,6 @@ msgstr "如果要将程序库作为引用插入,请选中<emph>当作引用插
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 "如果要改写同名的现有程序库,请选中<emph>替换现有的程序库</emph>复选框。"
@@ -3534,7 +3316,6 @@ msgstr "如果要改写同名的现有程序库,请选中<emph>替换现有的
msgctxt ""
"01030400.xhp\n"
"par_id3147004\n"
-"56\n"
"help.text"
msgid "Click <emph>OK</emph> to import the library."
msgstr "单击<emph>确定</emph>导入库。"
@@ -3543,7 +3324,6 @@ msgstr "单击<emph>确定</emph>导入库。"
msgctxt ""
"01030400.xhp\n"
"hd_id3159099\n"
-"17\n"
"help.text"
msgid "Export a Library"
msgstr "导出库"
@@ -3552,7 +3332,6 @@ msgstr "导出库"
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 "依次选择<emph>工具 - 宏 - 管理宏 - %PRODUCTNAME Basic</emph>,并单击<emph>管理器</emph>或单击 Basic IDE 中的<emph>选择模块</emph>图标,打开<emph>宏管理器</emph>对话框。"
@@ -3561,7 +3340,6 @@ msgstr "依次选择<emph>工具 - 宏 - 管理宏 - %PRODUCTNAME Basic</emph>
msgctxt ""
"01030400.xhp\n"
"par_id3147006\n"
-"71\n"
"help.text"
msgid "Click the <emph>Libraries</emph> tab."
msgstr "单击<emph>库</emph>选项卡。"
@@ -3570,7 +3348,6 @@ msgstr "单击<emph>库</emph>选项卡。"
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 "在“<emph>位置</emph>”列表中您可以指定库存储的位置。选择要导出的库。注意您不能导出“<emph>标准</emph>”库。"
@@ -3579,7 +3356,6 @@ msgstr "在“<emph>位置</emph>”列表中您可以指定库存储的位置
msgctxt ""
"01030400.xhp\n"
"par_id3147008\n"
-"73\n"
"help.text"
msgid "Click <emph>Export...</emph>"
msgstr "点击“<emph>导出...</emph>”"
@@ -3588,7 +3364,6 @@ msgstr "点击“<emph>导出...</emph>”"
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 "选择是希望将库导出为扩展,还是希望导出为基本库。"
@@ -3597,7 +3372,6 @@ msgstr "选择是希望将库导出为扩展,还是希望导出为基本库。
msgctxt ""
"01030400.xhp\n"
"par_id3147010\n"
-"75\n"
"help.text"
msgid "Click <emph>OK</emph>."
msgstr "单击<emph>确定</emph>。"
@@ -3606,7 +3380,6 @@ msgstr "单击<emph>确定</emph>。"
msgctxt ""
"01030400.xhp\n"
"par_id3147011\n"
-"76\n"
"help.text"
msgid "Select where you want your library exported."
msgstr "选择您希望导出库的位置。"
@@ -3615,7 +3388,6 @@ msgstr "选择您希望导出库的位置。"
msgctxt ""
"01030400.xhp\n"
"par_id3147012\n"
-"77\n"
"help.text"
msgid "Click <emph>Save</emph> to export the library."
msgstr "单击<emph>保存</emph>导出库。"
@@ -3624,7 +3396,6 @@ msgstr "单击<emph>保存</emph>导出库。"
msgctxt ""
"01030400.xhp\n"
"hd_id3159100\n"
-"17\n"
"help.text"
msgid "Deleting a Library"
msgstr "删除程序库"
@@ -3633,7 +3404,6 @@ msgstr "删除程序库"
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 "依次选择<emph>工具 - 宏 - 管理宏 - %PRODUCTNAME Basic</emph>,并单击<emph>管理器</emph>或单击 Basic IDE 中的<emph>选择模块</emph>图标,打开<emph>宏管理器</emph>对话框。"
@@ -3642,7 +3412,6 @@ msgstr "依次选择<emph>工具 - 宏 - 管理宏 - %PRODUCTNAME Basic</emph>
msgctxt ""
"01030400.xhp\n"
"par_id3146808\n"
-"57\n"
"help.text"
msgid "Click the <emph>Libraries</emph> tab."
msgstr "单击<emph>库</emph>选项卡。"
@@ -3651,7 +3420,6 @@ msgstr "单击<emph>库</emph>选项卡。"
msgctxt ""
"01030400.xhp\n"
"par_id3158212\n"
-"58\n"
"help.text"
msgid "Select the library to be deleted from the list."
msgstr "从列表中选择要删除的程序库。"
@@ -3660,7 +3428,6 @@ msgstr "从列表中选择要删除的程序库。"
msgctxt ""
"01030400.xhp\n"
"par_id3150361\n"
-"20\n"
"help.text"
msgid "Click <emph>Delete</emph>."
msgstr "单击<emph>删除</emph>。"
@@ -3669,7 +3436,6 @@ msgstr "单击<emph>删除</emph>。"
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 "一旦删除了某个程序库,现有的所有模块和相应的子程序和函数也将被永久删除。"
@@ -3678,7 +3444,6 @@ msgstr "一旦删除了某个程序库,现有的所有模块和相应的子程
msgctxt ""
"01030400.xhp\n"
"par_id3148868\n"
-"59\n"
"help.text"
msgid "You cannot delete the default library named \"Standard\"."
msgstr "您无法删除名为 \"Standard\" 的默认库。"
@@ -3687,7 +3452,6 @@ msgstr "您无法删除名为 \"Standard\" 的默认库。"
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 "如果删除的是当作引用插入的库,则仅删除引用而不会删除该库。"
@@ -3696,7 +3460,6 @@ msgstr "如果删除的是当作引用插入的库,则仅删除引用而不会
msgctxt ""
"01030400.xhp\n"
"hd_id3147070\n"
-"21\n"
"help.text"
msgid "Organizing Modules and Dialogs"
msgstr "管理模块和对话框"
@@ -3705,7 +3468,6 @@ msgstr "管理模块和对话框"
msgctxt ""
"01030400.xhp\n"
"hd_id3155265\n"
-"61\n"
"help.text"
msgid "Creating a New Module or Dialog"
msgstr "创建新的模块或对话框"
@@ -3714,7 +3476,6 @@ msgstr "创建新的模块或对话框"
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 "依次选择<emph>工具 - 宏 - 管理宏 - %PRODUCTNAME Basic</emph>,并单击<emph>管理器</emph>或单击 Basic IDE 中的<emph>选择模块</emph>图标,打开<emph>宏管理器</emph>对话框。"
@@ -3723,7 +3484,6 @@ msgstr "依次选择<emph>工具 - 宏 - 管理宏 - %PRODUCTNAME Basic</emph>
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 "单击<emph>模块</emph>选项卡或<emph>对话框</emph>选项卡。"
@@ -3732,7 +3492,6 @@ msgstr "单击<emph>模块</emph>选项卡或<emph>对话框</emph>选项卡。"
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 "选择要向其中插入模块的程序库,然后单击<emph>新建</emph>。"
@@ -3741,7 +3500,6 @@ msgstr "选择要向其中插入模块的程序库,然后单击<emph>新建</e
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 "为模块或对话框输入名称,然后单击<emph>确定</emph>。"
@@ -3750,7 +3508,6 @@ msgstr "为模块或对话框输入名称,然后单击<emph>确定</emph>。"
msgctxt ""
"01030400.xhp\n"
"hd_id3152872\n"
-"25\n"
"help.text"
msgid "Renaming a Module or Dialog"
msgstr "重命名模块或对话框"
@@ -3759,7 +3516,6 @@ msgstr "重命名模块或对话框"
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 "依次选择<emph>工具 - 宏 - 管理宏 - %PRODUCTNAME Basic</emph>,并单击<emph>管理器</emph>或单击 Basic IDE 中的<emph>选择模块</emph>图标,打开<emph>宏管理器</emph>对话框。"
@@ -3768,7 +3524,6 @@ msgstr "依次选择<emph>工具 - 宏 - 管理宏 - %PRODUCTNAME Basic</emph>
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 "双击要重新命名的模块,双击之间稍有停顿。输入新名称。"
@@ -3777,7 +3532,6 @@ msgstr "双击要重新命名的模块,双击之间稍有停顿。输入新名
msgctxt ""
"01030400.xhp\n"
"par_id3153801\n"
-"27\n"
"help.text"
msgid "In the Basic IDE, right-click the name of the module or dialog in the tabs at the bottom of the screen, choose <emph>Rename</emph> and type in the new name."
msgstr "在 Basic IDE 中,在屏幕底部选项卡中的模块名称或对话框名称上单击右键,选择<emph>重命名</emph>并键入新名称。"
@@ -3786,7 +3540,6 @@ msgstr "在 Basic IDE 中,在屏幕底部选项卡中的模块名称或对话
msgctxt ""
"01030400.xhp\n"
"par_id3155526\n"
-"28\n"
"help.text"
msgid "Press Enter to confirm your changes."
msgstr "按 Enter 键确认修改。"
@@ -3795,7 +3548,6 @@ msgstr "按 Enter 键确认修改。"
msgctxt ""
"01030400.xhp\n"
"hd_id3146963\n"
-"29\n"
"help.text"
msgid "Deleting a Module or Dialog"
msgstr "删除模块或对话框"
@@ -3804,7 +3556,6 @@ msgstr "删除模块或对话框"
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 "依次选择<emph>工具 - 宏 - 管理宏 - %PRODUCTNAME Basic</emph>,并单击<emph>管理器</emph>或单击 Basic IDE 中的<emph>选择模块</emph>图标,打开<emph>宏管理器</emph>对话框。"
@@ -3813,7 +3564,6 @@ msgstr "依次选择<emph>工具 - 宏 - 管理宏 - %PRODUCTNAME Basic</emph>
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 "单击<emph>模块</emph>选项卡或<emph>对话框</emph>选项卡。"
@@ -3822,7 +3572,6 @@ msgstr "单击<emph>模块</emph>选项卡或<emph>对话框</emph>选项卡。"
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 "从列表中选择要删除的模块或对话框。如果需要,可以通过双击某条目展开子条目。"
@@ -3831,7 +3580,6 @@ msgstr "从列表中选择要删除的模块或对话框。如果需要,可以
msgctxt ""
"01030400.xhp\n"
"par_id3147248\n"
-"32\n"
"help.text"
msgid "Click <emph>Delete</emph>."
msgstr "单击<emph>删除</emph>。"
@@ -3840,7 +3588,6 @@ msgstr "单击<emph>删除</emph>。"
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 "永久删除模块将删除该模块中现有的全部过程和函数。"
@@ -3849,7 +3596,6 @@ msgstr "永久删除模块将删除该模块中现有的全部过程和函数。
msgctxt ""
"01030400.xhp\n"
"hd_id3151392\n"
-"33\n"
"help.text"
msgid "Organizing Projects among Documents or Templates"
msgstr "在文档和模板中管理项目"
@@ -3858,7 +3604,6 @@ msgstr "在文档和模板中管理项目"
msgctxt ""
"01030400.xhp\n"
"hd_id3156400\n"
-"36\n"
"help.text"
msgid "Moving or copying modules between documents, templates and the application."
msgstr "在文档、模板和应用程序之间移动或复制模块。"
@@ -3867,7 +3612,6 @@ msgstr "在文档、模板和应用程序之间移动或复制模块。"
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 "打开所有需要移动或复制模块或对话框的文档或模板。"
@@ -3876,7 +3620,6 @@ msgstr "打开所有需要移动或复制模块或对话框的文档或模板。
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 "依次选择<emph>工具 - 宏 - 管理宏 - %PRODUCTNAME Basic</emph>,并单击<emph>管理器</emph>或单击 Basic IDE 中的<emph>选择模块</emph>图标,打开<emph>宏管理器</emph>对话框。"
@@ -3885,7 +3628,6 @@ msgstr "依次选择<emph>工具 - 宏 - 管理宏 - %PRODUCTNAME Basic</emph>
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 "要将模块或对话框移至另一文档中,请单击列表中相应的对象,然后将其拖动到所需的位置。拖动时会有一条水平线指示当前对象的目标位置。拖动时按住 <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> 键可以复制对象,而不是移动对象。"
@@ -3910,7 +3652,6 @@ msgstr "<bookmark_value>删除; 事件的宏指定</bookmark_value> <boo
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=\"事件驱动的宏\">事件驱动的宏</link>"
@@ -3919,7 +3660,6 @@ msgstr "<link href=\"text/sbasic/shared/01040000.xhp\" name=\"事件驱动的宏
msgctxt ""
"01040000.xhp\n"
"par_id3146120\n"
-"2\n"
"help.text"
msgid "This section describes how to assign Basic programs to program events."
msgstr "本节介绍如何将 Basic 程序指定到程序事件。"
@@ -3928,7 +3668,6 @@ msgstr "本节介绍如何将 Basic 程序指定到程序事件。"
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 "通过事先将所需的宏指定到事件,可以在发生指定的软件事件时自动执行宏。下表简要介绍了程序事件以及宏执行的时间。"
@@ -3937,7 +3676,6 @@ msgstr "通过事先将所需的宏指定到事件,可以在发生指定的软
msgctxt ""
"01040000.xhp\n"
"par_id3148455\n"
-"5\n"
"help.text"
msgid "Event"
msgstr "事件"
@@ -3946,7 +3684,6 @@ msgstr "事件"
msgctxt ""
"01040000.xhp\n"
"par_id3145799\n"
-"6\n"
"help.text"
msgid "An assigned macro is executed..."
msgstr "指定的宏已执行..."
@@ -3955,7 +3692,6 @@ msgstr "指定的宏已执行..."
msgctxt ""
"01040000.xhp\n"
"par_id3149379\n"
-"7\n"
"help.text"
msgid "Program Start"
msgstr "启动程序"
@@ -3964,7 +3700,6 @@ msgstr "启动程序"
msgctxt ""
"01040000.xhp\n"
"par_id3150715\n"
-"8\n"
"help.text"
msgid "... after a $[officename] application is started."
msgstr "...$[officename] 应用程序启动之后。"
@@ -3973,7 +3708,6 @@ msgstr "...$[officename] 应用程序启动之后。"
msgctxt ""
"01040000.xhp\n"
"par_id3146914\n"
-"9\n"
"help.text"
msgid "Program End"
msgstr "结束程序"
@@ -3982,7 +3716,6 @@ msgstr "结束程序"
msgctxt ""
"01040000.xhp\n"
"par_id3153765\n"
-"10\n"
"help.text"
msgid "...before a $[officename] application is terminated."
msgstr "...$[officename] 应用程序终止之前。"
@@ -3991,7 +3724,6 @@ msgstr "...$[officename] 应用程序终止之前。"
msgctxt ""
"01040000.xhp\n"
"par_id3145150\n"
-"11\n"
"help.text"
msgid "Create Document"
msgstr "创建文档"
@@ -4000,7 +3732,6 @@ msgstr "创建文档"
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 "...通过选择<emph>文件 - 新建</emph>或单击<emph>新建</emph>图标创建新文档之后。"
@@ -4009,7 +3740,6 @@ msgstr "...通过选择<emph>文件 - 新建</emph>或单击<emph>新建</emph>
msgctxt ""
"01040000.xhp\n"
"par_id3145790\n"
-"13\n"
"help.text"
msgid "Open Document"
msgstr "打开文档"
@@ -4018,7 +3748,6 @@ msgstr "打开文档"
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 "...通过选择<emph>文件 - 打开</emph>或单击<emph>打开</emph>图标打开文档之后。"
@@ -4027,7 +3756,6 @@ msgstr "...通过选择<emph>文件 - 打开</emph>或单击<emph>打开</emph>
msgctxt ""
"01040000.xhp\n"
"par_id3153266\n"
-"15\n"
"help.text"
msgid "Save Document As"
msgstr "文档另存为"
@@ -4036,7 +3764,6 @@ msgstr "文档另存为"
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 "...以指定名称保存文档之前(要另存文档,请选择<emph>文件 - 另存为</emph>;如果尚未指定文档名称,请选择<emph>文件 - 保存</emph>或单击<emph>保存</emph>图标保存)。"
@@ -4045,7 +3772,6 @@ msgstr "...以指定名称保存文档之前(要另存文档,请选择<emph>
msgctxt ""
"01040000.xhp\n"
"par_id3158215\n"
-"43\n"
"help.text"
msgid "Document has been saved as"
msgstr "文档已经另存为"
@@ -4054,7 +3780,6 @@ msgstr "文档已经另存为"
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 "以指定名称保存文档之后(要另存文档,请选择<emph>文件 - 另存为</emph>;如果尚未指定文档名称,请选择<emph>文件 - 保存</emph>或单击<emph>保存</emph>图标保存)。"
@@ -4063,7 +3788,6 @@ msgstr "以指定名称保存文档之后(要另存文档,请选择<emph>文
msgctxt ""
"01040000.xhp\n"
"par_id3150519\n"
-"17\n"
"help.text"
msgid "Save Document"
msgstr "保存文档"
@@ -4072,7 +3796,6 @@ msgstr "保存文档"
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 "...通过<emph>文件 - 保存</emph>或<emph>保存</emph>图标保存文档之前(假设已指定文档名称)。"
@@ -4081,7 +3804,6 @@ msgstr "...通过<emph>文件 - 保存</emph>或<emph>保存</emph>图标保存
msgctxt ""
"01040000.xhp\n"
"par_id3149404\n"
-"45\n"
"help.text"
msgid "Document has been saved"
msgstr "文档已经保存"
@@ -4090,7 +3812,6 @@ msgstr "文档已经保存"
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 "...通过<emph>文件 - 保存</emph>或<emph>保存</emph>图标保存文档之后(假设已指定文档名称)。"
@@ -4099,7 +3820,6 @@ msgstr "...通过<emph>文件 - 保存</emph>或<emph>保存</emph>图标保存
msgctxt ""
"01040000.xhp\n"
"par_id3159171\n"
-"19\n"
"help.text"
msgid "Document is closing"
msgstr "文档正在关闭"
@@ -4108,7 +3828,6 @@ msgstr "文档正在关闭"
msgctxt ""
"01040000.xhp\n"
"par_id3146868\n"
-"20\n"
"help.text"
msgid "...before a document is closed."
msgstr "...文档关闭之前。"
@@ -4117,7 +3836,6 @@ msgstr "...文档关闭之前。"
msgctxt ""
"01040000.xhp\n"
"par_id3159097\n"
-"47\n"
"help.text"
msgid "Document closed"
msgstr "文档已经关闭"
@@ -4126,7 +3844,6 @@ msgstr "文档已经关闭"
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 "...文档关闭之后。请注意,在文档关闭之前进行保存时,也会发生“保存文档”事件。"
@@ -4135,7 +3852,6 @@ msgstr "...文档关闭之后。请注意,在文档关闭之前进行保存时
msgctxt ""
"01040000.xhp\n"
"par_id3144772\n"
-"21\n"
"help.text"
msgid "Activate Document"
msgstr "激活文档"
@@ -4144,7 +3860,6 @@ msgstr "激活文档"
msgctxt ""
"01040000.xhp\n"
"par_id3149442\n"
-"22\n"
"help.text"
msgid "...after a document is brought to the foreground."
msgstr "...文档显示在前景之后。"
@@ -4153,7 +3868,6 @@ msgstr "...文档显示在前景之后。"
msgctxt ""
"01040000.xhp\n"
"par_id3150888\n"
-"23\n"
"help.text"
msgid "Deactivate Document"
msgstr "停用文档"
@@ -4162,7 +3876,6 @@ msgstr "停用文档"
msgctxt ""
"01040000.xhp\n"
"par_id3154060\n"
-"24\n"
"help.text"
msgid "...after another document is brought to the foreground."
msgstr "...另一个文档显示在前景之后。"
@@ -4171,7 +3884,6 @@ msgstr "...另一个文档显示在前景之后。"
msgctxt ""
"01040000.xhp\n"
"par_id3152384\n"
-"25\n"
"help.text"
msgid "Print Document"
msgstr "打印文档"
@@ -4180,7 +3892,6 @@ msgstr "打印文档"
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 "...<emph>打印</emph>对话框关闭之后、打印进程实际开始之前。"
@@ -4189,7 +3900,6 @@ msgstr "...<emph>打印</emph>对话框关闭之后、打印进程实际开始
msgctxt ""
"01040000.xhp\n"
"par_id3159227\n"
-"49\n"
"help.text"
msgid "JavaScript run-time error"
msgstr "JavaScript 运行时错误"
@@ -4198,7 +3908,6 @@ msgstr "JavaScript 运行时错误"
msgctxt ""
"01040000.xhp\n"
"par_id3145362\n"
-"50\n"
"help.text"
msgid "...when a JavaScript run-time error occurs."
msgstr "...发生 JavaScript 运行时错误时。"
@@ -4207,7 +3916,6 @@ msgstr "...发生 JavaScript 运行时错误时。"
msgctxt ""
"01040000.xhp\n"
"par_id3154767\n"
-"27\n"
"help.text"
msgid "Print Mail Merge"
msgstr "打印邮件合并"
@@ -4216,7 +3924,6 @@ msgstr "打印邮件合并"
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 "...<emph>打印</emph>对话框关闭之后、打印进程实际开始之前。每次打印时均发生此事件。"
@@ -4225,7 +3932,6 @@ msgstr "...<emph>打印</emph>对话框关闭之后、打印进程实际开始
msgctxt ""
"01040000.xhp\n"
"par_id3156366\n"
-"51\n"
"help.text"
msgid "Change of the page count"
msgstr "修改页数"
@@ -4234,7 +3940,6 @@ msgstr "修改页数"
msgctxt ""
"01040000.xhp\n"
"par_id3154627\n"
-"52\n"
"help.text"
msgid "...when the page count changes."
msgstr "...页数修改时。"
@@ -4243,7 +3948,6 @@ msgstr "...页数修改时。"
msgctxt ""
"01040000.xhp\n"
"par_id3154737\n"
-"53\n"
"help.text"
msgid "Message received"
msgstr "消息已接收"
@@ -4252,7 +3956,6 @@ msgstr "消息已接收"
msgctxt ""
"01040000.xhp\n"
"par_id3150952\n"
-"54\n"
"help.text"
msgid "...if a message was received."
msgstr "...如果收到电子邮件。"
@@ -4261,7 +3964,6 @@ msgstr "...如果收到电子邮件。"
msgctxt ""
"01040000.xhp\n"
"hd_id3153299\n"
-"30\n"
"help.text"
msgid "Assigning a Macro to an Event"
msgstr "为事件指定宏"
@@ -4270,7 +3972,6 @@ msgstr "为事件指定宏"
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 "选择<emph>工具 - 自定义</emph>,然后单击<emph>事件</emph>选项卡。"
@@ -4279,7 +3980,6 @@ msgstr "选择<emph>工具 - 自定义</emph>,然后单击<emph>事件</emph>
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 "在<emph>保存于</emph>列表框中,您可以选择是将宏指定指定为全局有效,或是仅在当前文档中有效。"
@@ -4288,7 +3988,6 @@ msgstr "在<emph>保存于</emph>列表框中,您可以选择是将宏指定
msgctxt ""
"01040000.xhp\n"
"par_id3150431\n"
-"32\n"
"help.text"
msgid "Select the event from the <emph>Event</emph> list."
msgstr "从<emph>事件</emph>列表中选择事件。"
@@ -4297,7 +3996,6 @@ msgstr "从<emph>事件</emph>列表中选择事件。"
msgctxt ""
"01040000.xhp\n"
"par_id3148742\n"
-"33\n"
"help.text"
msgid "Click <emph>Macro</emph> and select the macro to be assigned to the selected event."
msgstr "单击<emph>宏</emph>,并选择要指定到选定事件的宏。"
@@ -4306,7 +4004,6 @@ msgstr "单击<emph>宏</emph>,并选择要指定到选定事件的宏。"
msgctxt ""
"01040000.xhp\n"
"par_id3146321\n"
-"35\n"
"help.text"
msgid "Click <emph>OK</emph> to assign the macro."
msgstr "单击<emph>确定</emph>指定宏。"
@@ -4315,7 +4012,6 @@ msgstr "单击<emph>确定</emph>指定宏。"
msgctxt ""
"01040000.xhp\n"
"par_id3147414\n"
-"56\n"
"help.text"
msgid "Click <emph>OK</emph> to close the dialog."
msgstr "单击<emph>确定</emph>关闭对话框。"
@@ -4324,7 +4020,6 @@ msgstr "单击<emph>确定</emph>关闭对话框。"
msgctxt ""
"01040000.xhp\n"
"hd_id3154581\n"
-"36\n"
"help.text"
msgid "Removing the Assignment of a Macro to an Event"
msgstr "取消为事件指定的宏"
@@ -4333,7 +4028,6 @@ msgstr "取消为事件指定的宏"
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 "选择<emph>工具 - 自定义</emph>,然后单击<emph>事件</emph>选项卡。"
@@ -4342,7 +4036,6 @@ msgstr "选择<emph>工具 - 自定义</emph>,然后单击<emph>事件</emph>
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 "在<emph>保存于</emph>列表框中,您可以选择取消将宏指定为全局有效,或是取消仅在当前文档中有效。"
@@ -4351,7 +4044,6 @@ msgstr "在<emph>保存于</emph>列表框中,您可以选择取消将宏指
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 "从<emph>事件</emph>列表中选择含有要取消所指定的宏的事件。"
@@ -4360,7 +4052,6 @@ msgstr "从<emph>事件</emph>列表中选择含有要取消所指定的宏的
msgctxt ""
"01040000.xhp\n"
"par_id3149143\n"
-"37\n"
"help.text"
msgid "Click <emph>Remove</emph>."
msgstr "单击<emph>删除</emph>。"
@@ -4369,7 +4060,6 @@ msgstr "单击<emph>删除</emph>。"
msgctxt ""
"01040000.xhp\n"
"par_id3149351\n"
-"60\n"
"help.text"
msgid "Click <emph>OK</emph> to close the dialog."
msgstr "单击<emph>确定</emph>关闭对话框。"
@@ -4386,7 +4076,6 @@ msgstr "$[officename] Basic IDE"
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>"
@@ -4395,7 +4084,6 @@ msgstr "<variable id=\"01050000\"><link href=\"text/sbasic/shared/01050000.xhp\"
msgctxt ""
"01050000.xhp\n"
"par_id3153142\n"
-"2\n"
"help.text"
msgid "This section describes the structure of the Basic IDE."
msgstr "本节介绍 Basic IDE 的结构。"
@@ -4412,7 +4100,6 @@ msgstr "<ahelp hid=\".\" visibility=\"hidden\">打开可向其写入并编辑宏
msgctxt ""
"01050000.xhp\n"
"hd_id3153188\n"
-"5\n"
"help.text"
msgid "Commands From the Context menu of the Module Tabs"
msgstr "“模块”选项卡的上下文菜单命令"
@@ -4421,7 +4108,6 @@ msgstr "“模块”选项卡的上下文菜单命令"
msgctxt ""
"01050000.xhp\n"
"hd_id3154731\n"
-"6\n"
"help.text"
msgid "Insert"
msgstr "插入"
@@ -4430,7 +4116,6 @@ msgstr "插入"
msgctxt ""
"01050000.xhp\n"
"hd_id3151074\n"
-"8\n"
"help.text"
msgid "Module"
msgstr "模块"
@@ -4439,7 +4124,6 @@ msgstr "模块"
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\">向当前程序库插入新的模块。</ahelp>"
@@ -4448,7 +4132,6 @@ msgstr "<ahelp hid=\".uno:NewModule\">向当前程序库插入新的模块。</a
msgctxt ""
"01050000.xhp\n"
"hd_id3147397\n"
-"10\n"
"help.text"
msgid "Dialog"
msgstr "对话框"
@@ -4457,7 +4140,6 @@ msgstr "对话框"
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\">向当前程序库插入新的对话框。</ahelp>"
@@ -4466,7 +4148,6 @@ msgstr "<ahelp hid=\".uno:NewDialog\">向当前程序库插入新的对话框。
msgctxt ""
"01050000.xhp\n"
"hd_id3155602\n"
-"12\n"
"help.text"
msgid "Delete"
msgstr "删除"
@@ -4475,7 +4156,6 @@ msgstr "删除"
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\">删除选定模块。</ahelp>"
@@ -4484,7 +4164,6 @@ msgstr "<ahelp hid=\".uno:DeleteCurrent\">删除选定模块。</ahelp>"
msgctxt ""
"01050000.xhp\n"
"hd_id3149018\n"
-"14\n"
"help.text"
msgid "Rename"
msgstr "重命名"
@@ -4493,7 +4172,6 @@ msgstr "重命名"
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\">在原来的位置重命名当前模块。</ahelp>"
@@ -4502,7 +4180,6 @@ msgstr "<ahelp hid=\".uno:RenameCurrent\">在原来的位置重命名当前模
msgctxt ""
"01050000.xhp\n"
"hd_id3150043\n"
-"16\n"
"help.text"
msgid "Hide"
msgstr "隐藏"
@@ -4511,7 +4188,6 @@ msgstr "隐藏"
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\">隐藏当前模块。</ahelp>"
@@ -4520,7 +4196,6 @@ msgstr "<ahelp hid=\".uno:HideCurPage\">隐藏当前模块。</ahelp>"
msgctxt ""
"01050000.xhp\n"
"hd_id3163805\n"
-"18\n"
"help.text"
msgid "Modules"
msgstr "模块"
@@ -4529,7 +4204,6 @@ msgstr "模块"
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 "打开<link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"宏管理器\"><emph>宏管理器</emph></link>对话框。"
@@ -4546,7 +4220,6 @@ msgstr "监视窗口"
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\">“监视”窗口</link>"
@@ -4555,7 +4228,6 @@ msgstr "<link href=\"text/sbasic/shared/01050100.xhp\">“监视”窗口</link>
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 "“监视”窗口可用来在程序执行过程中查看变量的值。在“监视”文字框中定义要查看的变量。单击<link href=\"text/sbasic/shared/02/11080000.xhp\">启用监视</link>将变量添加到列表框中并显示变量的值。"
@@ -4564,7 +4236,6 @@ msgstr "“监视”窗口可用来在程序执行过程中查看变量的值。
msgctxt ""
"01050100.xhp\n"
"hd_id3145173\n"
-"4\n"
"help.text"
msgid "Watch"
msgstr "监视"
@@ -4573,7 +4244,6 @@ msgstr "监视"
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\">此文本框用于输入变量,该变量的值将显示在列表框中。</ahelp>"
@@ -4582,7 +4252,6 @@ msgstr "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_EDIT\">此文本框用于输入变
msgctxt ""
"01050100.xhp\n"
"hd_id3148645\n"
-"6\n"
"help.text"
msgid "Remove Watch"
msgstr "取消监视"
@@ -4591,7 +4260,6 @@ msgstr "取消监视"
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\">从被监视的变量列表中删除选定的变量。</ahelp>"
@@ -4608,7 +4276,6 @@ msgstr "<image id=\"img_id3152460\" src=\"res/baswatr.png\" width=\"0.25inch\" h
msgctxt ""
"01050100.xhp\n"
"par_id3154012\n"
-"8\n"
"help.text"
msgid "Remove Watch"
msgstr "取消监视"
@@ -4617,7 +4284,6 @@ msgstr "取消监视"
msgctxt ""
"01050100.xhp\n"
"hd_id3154491\n"
-"10\n"
"help.text"
msgid "Editing the Value of a Watched Variable"
msgstr "编辑被监视变量的值"
@@ -4626,7 +4292,6 @@ msgstr "编辑被监视变量的值"
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\">显示监视的变量列表。在条目上单击两次(两次单击之间停顿片刻),即可对变量的值进行编辑。</ahelp>程序将输入的新值作为变量的值。"
@@ -4643,7 +4308,6 @@ msgstr "调用堆栈窗口(调用)"
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=\"调用堆栈窗口(调用)\">调用堆栈窗口(调用)</link>"
@@ -4652,7 +4316,6 @@ msgstr "<link href=\"text/sbasic/shared/01050200.xhp\" name=\"调用堆栈窗口
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\">在程序执行过程中显示过程和函数的序列。</ahelp>通过<emph>调用堆栈</emph>窗口,可以在程序执行的过程中监视过程和函数的序列。过程和函数按照调用的先后顺序由下至上排列,最近调用的函数或过程排在列表的最上面。"
@@ -4669,7 +4332,6 @@ msgstr "管理断点"
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=\"管理断点\">管理断点</link>"
@@ -4678,7 +4340,6 @@ msgstr "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"管理断点\">管
msgctxt ""
"01050300.xhp\n"
"par_id3148550\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/ManageBreakpointsDialog\">Specifies the options for breakpoints.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/ManageBreakpointsDialog\" visibility=\"visible\">指定断点的选项。</ahelp>"
@@ -4687,7 +4348,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/ManageBreakpointsDial
msgctxt ""
"01050300.xhp\n"
"hd_id3149670\n"
-"3\n"
"help.text"
msgid "Breakpoints"
msgstr "断点"
@@ -4696,7 +4356,6 @@ msgstr "断点"
msgctxt ""
"01050300.xhp\n"
"par_id3150398\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/entries\">Enter the line number for a new breakpoint, then click <emph>New</emph>.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/entries\">输入新断点的行号,然后单击<emph>新建</emph>。</ahelp>"
@@ -4705,7 +4364,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/entries\">输入新
msgctxt ""
"01050300.xhp\n"
"hd_id3156280\n"
-"6\n"
"help.text"
msgid "Active"
msgstr "活动的"
@@ -4714,7 +4372,6 @@ msgstr "活动的"
msgctxt ""
"01050300.xhp\n"
"par_id3154910\n"
-"7\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/active\">Activates or deactivates the current breakpoint.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/active\" visibility=\"visible\">启动或停用当前断点。</ahelp>"
@@ -4723,7 +4380,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/active\" visibility=\
msgctxt ""
"01050300.xhp\n"
"hd_id3144500\n"
-"8\n"
"help.text"
msgid "Pass Count"
msgstr "穿透"
@@ -4732,7 +4388,6 @@ msgstr "穿透"
msgctxt ""
"01050300.xhp\n"
"par_id3161831\n"
-"9\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/pass-nospin\">Specify the number of loops to perform before the breakpoint takes effect.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/pass-nospin\" visibility=\"visible\">指定在断点生效前循环的次数。</ahelp>"
@@ -4741,7 +4396,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/pass-nospin\" visibil
msgctxt ""
"01050300.xhp\n"
"hd_id3152579\n"
-"10\n"
"help.text"
msgid "New"
msgstr "新建"
@@ -4750,7 +4404,6 @@ msgstr "新建"
msgctxt ""
"01050300.xhp\n"
"par_id3148575\n"
-"11\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/new\">Creates a breakpoint on the line number specified.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/new\" visibility=\"visible\">在指定的行号上创建一个断点。</ahelp>"
@@ -4759,7 +4412,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/new\" visibility=\"vi
msgctxt ""
"01050300.xhp\n"
"hd_id3147319\n"
-"12\n"
"help.text"
msgid "Delete"
msgstr "删除"
@@ -4768,7 +4420,6 @@ msgstr "删除"
msgctxt ""
"01050300.xhp\n"
"par_id3153363\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/delete\">Deletes the selected breakpoint.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/delete\" visibility=\"visible\">删除选定的断点。</ahelp>"
@@ -4793,7 +4444,6 @@ msgstr "<bookmark_value>控件; 属性</bookmark_value><bookmark_value>属性;
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=\"控件和对话框属性\">控件和对话框属性</link>"
@@ -4802,7 +4452,6 @@ msgstr "<link href=\"text/sbasic/shared/01170100.xhp\" name=\"控件和对话框
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=\".\">指定选定对话框或控件的属性。</ahelp>必须在设计模式下才能使用此命令。"
@@ -4811,7 +4460,6 @@ msgstr "<ahelp hid=\".\">指定选定对话框或控件的属性。</ahelp>必
msgctxt ""
"01170100.xhp\n"
"hd_id3151043\n"
-"20\n"
"help.text"
msgid "Entering Data in the Properties Dialog"
msgstr "在“属性”对话框中输入“数据”"
@@ -4820,7 +4468,6 @@ msgstr "在“属性”对话框中输入“数据”"
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 "以下组合键用于在<emph>属性</emph>对话框的多行字段或组合框中输入数据。"
@@ -4829,7 +4476,6 @@ msgstr "以下组合键用于在<emph>属性</emph>对话框的多行字段或
msgctxt ""
"01170100.xhp\n"
"par_id3150010\n"
-"18\n"
"help.text"
msgid "Keys"
msgstr "键"
@@ -4838,7 +4484,6 @@ msgstr "键"
msgctxt ""
"01170100.xhp\n"
"par_id3147317\n"
-"19\n"
"help.text"
msgid "Effects"
msgstr "效果"
@@ -4847,7 +4492,6 @@ msgstr "效果"
msgctxt ""
"01170100.xhp\n"
"par_id3146121\n"
-"4\n"
"help.text"
msgid "Alt+Down Arrow"
msgstr "Alt+向下键"
@@ -4856,7 +4500,6 @@ msgstr "Alt+向下键"
msgctxt ""
"01170100.xhp\n"
"par_id3149581\n"
-"5\n"
"help.text"
msgid "Opens a combo box"
msgstr "打开组合框"
@@ -4865,7 +4508,6 @@ msgstr "打开组合框"
msgctxt ""
"01170100.xhp\n"
"par_id3147394\n"
-"6\n"
"help.text"
msgid "Alt+Up Arrow"
msgstr "Alt+上箭头"
@@ -4874,7 +4516,6 @@ msgstr "Alt+上箭头"
msgctxt ""
"01170100.xhp\n"
"par_id3148455\n"
-"7\n"
"help.text"
msgid "Closes a combo box"
msgstr "关闭组合框"
@@ -4883,7 +4524,6 @@ msgstr "关闭组合框"
msgctxt ""
"01170100.xhp\n"
"par_id3154511\n"
-"8\n"
"help.text"
msgid "Shift+Enter"
msgstr "Shift+Enter"
@@ -4892,7 +4532,6 @@ msgstr "Shift+Enter"
msgctxt ""
"01170100.xhp\n"
"par_id3146971\n"
-"9\n"
"help.text"
msgid "Inserts a line break in multiline fields."
msgstr "在多行字段中插入换行符。"
@@ -4901,7 +4540,6 @@ msgstr "在多行字段中插入换行符。"
msgctxt ""
"01170100.xhp\n"
"par_id3146914\n"
-"10\n"
"help.text"
msgid "(UpArrow)"
msgstr "(上箭头)"
@@ -4910,7 +4548,6 @@ msgstr "(上箭头)"
msgctxt ""
"01170100.xhp\n"
"par_id3153714\n"
-"11\n"
"help.text"
msgid "Goes to the previous line."
msgstr "跳到上一行。"
@@ -4919,7 +4556,6 @@ msgstr "跳到上一行。"
msgctxt ""
"01170100.xhp\n"
"par_id3159266\n"
-"12\n"
"help.text"
msgid "(DownArrow)"
msgstr "(下箭头)"
@@ -4928,7 +4564,6 @@ msgstr "(下箭头)"
msgctxt ""
"01170100.xhp\n"
"par_id3146314\n"
-"13\n"
"help.text"
msgid "Goes to the next line."
msgstr "跳到下一行。"
@@ -4937,7 +4572,6 @@ msgstr "跳到下一行。"
msgctxt ""
"01170100.xhp\n"
"par_id3149255\n"
-"14\n"
"help.text"
msgid "Enter"
msgstr "Enter"
@@ -4946,7 +4580,6 @@ msgstr "Enter"
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 "应用对字段所做的修改并将光标置于下一个字段中。"
@@ -4963,7 +4596,6 @@ msgstr "常规"
msgctxt ""
"01170101.xhp\n"
"hd_id3147436\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/01170101.xhp\" name=\"General\">General</link>"
msgstr "<link href=\"text/sbasic/shared/01170101.xhp\" name=\"常规\">常规</link>"
@@ -4972,7 +4604,6 @@ msgstr "<link href=\"text/sbasic/shared/01170101.xhp\" name=\"常规\">常规</l
msgctxt ""
"01170101.xhp\n"
"par_id3155855\n"
-"2\n"
"help.text"
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 "为选定的控件或对话框定义属性。可供选择的属性取决于选择的控件类型,因此以下属性并不适用于每种类型的控件。"
@@ -4981,7 +4612,6 @@ msgstr "为选定的控件或对话框定义属性。可供选择的属性取决
msgctxt ""
"01170101.xhp\n"
"hd_id3148647\n"
-"11\n"
"help.text"
msgid "Alignment"
msgstr "对齐"
@@ -4990,7 +4620,6 @@ msgstr "对齐"
msgctxt ""
"01170101.xhp\n"
"par_id3147318\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"HID_PROP_IMAGE_ALIGN\">Specify the alignment option for the selected control.</ahelp>"
msgstr "<ahelp hid=\"HID_PROP_IMAGE_ALIGN\">指定选定控件的对齐选项。</ahelp>"
@@ -4999,7 +4628,6 @@ msgstr "<ahelp hid=\"HID_PROP_IMAGE_ALIGN\">指定选定控件的对齐选项。
msgctxt ""
"01170101.xhp\n"
"hd_id3153189\n"
-"76\n"
"help.text"
msgid "AutoFill"
msgstr "自动填充"
@@ -5008,7 +4636,6 @@ msgstr "自动填充"
msgctxt ""
"01170101.xhp\n"
"par_id3152460\n"
-"77\n"
"help.text"
msgid "<ahelp hid=\".\">Select \"Yes\" to enable the AutoFill function for the selected control. </ahelp>"
msgstr "<ahelp hid=\".\">选择“是”将对选定的控件启用自动填充功能。</ahelp>"
@@ -5017,7 +4644,6 @@ msgstr "<ahelp hid=\".\">选择“是”将对选定的控件启用自动填充
msgctxt ""
"01170101.xhp\n"
"hd_id3155307\n"
-"3\n"
"help.text"
msgid "Background color"
msgstr "背景颜色"
@@ -5026,7 +4652,6 @@ msgstr "背景颜色"
msgctxt ""
"01170101.xhp\n"
"par_id3145251\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the background color for the current control.</ahelp>"
msgstr "<ahelp hid=\".\">指定当前控件的背景颜色。</ahelp>"
@@ -5035,7 +4660,6 @@ msgstr "<ahelp hid=\".\">指定当前控件的背景颜色。</ahelp>"
msgctxt ""
"01170101.xhp\n"
"hd_id3151076\n"
-"263\n"
"help.text"
msgid "Large change"
msgstr "大的变化"
@@ -5044,7 +4668,6 @@ msgstr "大的变化"
msgctxt ""
"01170101.xhp\n"
"par_id3148457\n"
-"262\n"
"help.text"
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=\".\">指定当用户单击滚动条上滑块与箭头之间的区域时所滚动的单位数。</ahelp>"
@@ -5053,7 +4676,6 @@ msgstr "<ahelp hid=\".\">指定当用户单击滚动条上滑块与箭头之间
msgctxt ""
"01170101.xhp\n"
"hd_id3153876\n"
-"139\n"
"help.text"
msgid "Border"
msgstr "边框"
@@ -5062,7 +4684,6 @@ msgstr "边框"
msgctxt ""
"01170101.xhp\n"
"par_id3154017\n"
-"140\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the border type for the current control.</ahelp>"
msgstr "<ahelp hid=\".\">指定当前控件的边框类型。</ahelp>"
@@ -5071,7 +4692,6 @@ msgstr "<ahelp hid=\".\">指定当前控件的边框类型。</ahelp>"
msgctxt ""
"01170101.xhp\n"
"hd_id3150749\n"
-"23\n"
"help.text"
msgid "Button type"
msgstr "按钮类型"
@@ -5080,7 +4700,6 @@ msgstr "按钮类型"
msgctxt ""
"01170101.xhp\n"
"par_id3155064\n"
-"24\n"
"help.text"
msgid "<ahelp hid=\".\">Select a button type. Button types determine what type of action is initiated.</ahelp>"
msgstr "<ahelp hid=\".\">选择按钮类型。按钮类型决定启动什么类型的操作。</ahelp>"
@@ -5089,7 +4708,6 @@ msgstr "<ahelp hid=\".\">选择按钮类型。按钮类型决定启动什么类
msgctxt ""
"01170101.xhp\n"
"hd_id3149019\n"
-"5\n"
"help.text"
msgid "Character set"
msgstr "字符集"
@@ -5098,7 +4716,6 @@ msgstr "字符集"
msgctxt ""
"01170101.xhp\n"
"par_id3148406\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\".\">Select the font to be used for displaying the contents of the current control.</ahelp>"
msgstr "<ahelp hid=\".\">选择要用于显示当前控件内容的字体。</ahelp>"
@@ -5107,7 +4724,6 @@ msgstr "<ahelp hid=\".\">选择要用于显示当前控件内容的字体。</ah
msgctxt ""
"01170101.xhp\n"
"hd_id3147341\n"
-"149\n"
"help.text"
msgid "Currency symbol"
msgstr "货币符号"
@@ -5116,7 +4732,6 @@ msgstr "货币符号"
msgctxt ""
"01170101.xhp\n"
"par_id3146315\n"
-"150\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the currency symbol to be used for currency controls.</ahelp>"
msgstr "<ahelp hid=\".\">输入要用于货币控件的货币符号。</ahelp>"
@@ -5141,7 +4756,6 @@ msgstr "<ahelp hid=\".\">指定要在日期控件中显示的默认日期。</ah
msgctxt ""
"01170101.xhp\n"
"hd_id3153965\n"
-"82\n"
"help.text"
msgid "Date format"
msgstr "日期格式"
@@ -5150,7 +4764,6 @@ msgstr "日期格式"
msgctxt ""
"01170101.xhp\n"
"par_id3155334\n"
-"83\n"
"help.text"
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=\".\">指定日期控件所需的格式。日期控件将根据此格式设置来解释用户输入的内容。</ahelp>"
@@ -5159,7 +4772,6 @@ msgstr "<ahelp hid=\".\">指定日期控件所需的格式。日期控件将根
msgctxt ""
"01170101.xhp\n"
"hd_id3154663\n"
-"121\n"
"help.text"
msgid "Date max."
msgstr "最长日期"
@@ -5168,7 +4780,6 @@ msgstr "最长日期"
msgctxt ""
"01170101.xhp\n"
"par_id3148485\n"
-"122\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the upper limit for a date control.</ahelp>"
msgstr "<ahelp hid=\".\">指定日期控件的上限。</ahelp>"
@@ -5177,7 +4788,6 @@ msgstr "<ahelp hid=\".\">指定日期控件的上限。</ahelp>"
msgctxt ""
"01170101.xhp\n"
"hd_id3152778\n"
-"131\n"
"help.text"
msgid "Date min."
msgstr "最短日期"
@@ -5186,7 +4796,6 @@ msgstr "最短日期"
msgctxt ""
"01170101.xhp\n"
"par_id3154120\n"
-"132\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the lower limit for a date control.</ahelp>"
msgstr "<ahelp hid=\".\">指定日期控件的下限。</ahelp>"
@@ -5195,7 +4804,6 @@ msgstr "<ahelp hid=\".\">指定日期控件的下限。</ahelp>"
msgctxt ""
"01170101.xhp\n"
"hd_id3154573\n"
-"137\n"
"help.text"
msgid "Decimal accuracy"
msgstr "小数点位数"
@@ -5204,7 +4812,6 @@ msgstr "小数点位数"
msgctxt ""
"01170101.xhp\n"
"par_id3166426\n"
-"138\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the number of decimal places displayed for a numerical or currency control.</ahelp>"
msgstr "<ahelp hid=\".\">指定数字控件或货币控件所显示的小数位数。</ahelp>"
@@ -5213,7 +4820,6 @@ msgstr "<ahelp hid=\".\">指定数字控件或货币控件所显示的小数位
msgctxt ""
"01170101.xhp\n"
"hd_id3159091\n"
-"144\n"
"help.text"
msgid "Default button"
msgstr "默认按钮"
@@ -5222,7 +4828,6 @@ msgstr "默认按钮"
msgctxt ""
"01170101.xhp\n"
"par_id3154200\n"
-"145\n"
"help.text"
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=\".\">选择“是”将使当前按钮控件成为默认选项。在对话框中按 <emph>Return</emph> 键将激活默认按钮。</ahelp>"
@@ -5247,7 +4852,6 @@ msgstr "<ahelp hid=\".\">指定滚动条触发事件之间的延迟时间(以
msgctxt ""
"01170101.xhp\n"
"hd_id3151278\n"
-"19\n"
"help.text"
msgid "Dropdown"
msgstr "下拉"
@@ -5256,7 +4860,6 @@ msgstr "下拉"
msgctxt ""
"01170101.xhp\n"
"par_id3155113\n"
-"20\n"
"help.text"
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=\".\">选择“是”将对列表框或组合框控件启用下拉选项。下拉控件字段包含一个箭头按钮,通过单击该按钮可以打开现有窗体条目的列表。</ahelp>"
@@ -5265,7 +4868,6 @@ msgstr "<ahelp hid=\".\">选择“是”将对列表框或组合框控件启用
msgctxt ""
"01170101.xhp\n"
"hd_id3151216\n"
-"13\n"
"help.text"
msgid "Enabled"
msgstr "启用"
@@ -5274,7 +4876,6 @@ msgstr "启用"
msgctxt ""
"01170101.xhp\n"
"par_id3150517\n"
-"14\n"
"help.text"
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=\".\">选择“是”可启用控件。如果控件被禁用,将在对话框中以灰色显示。</ahelp>"
@@ -5283,7 +4884,6 @@ msgstr "<ahelp hid=\".\">选择“是”可启用控件。如果控件被禁用
msgctxt ""
"01170101.xhp\n"
"hd_id3155379\n"
-"91\n"
"help.text"
msgid "Edit mask"
msgstr "编辑掩码"
@@ -5292,7 +4892,6 @@ msgstr "编辑掩码"
msgctxt ""
"01170101.xhp\n"
"par_id3155509\n"
-"92\n"
"help.text"
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=\".\">指定模式控件的编辑掩码。编辑掩码是用于定义控件输入格式的字符代码。</ahelp>"
@@ -5301,7 +4900,6 @@ msgstr "<ahelp hid=\".\">指定模式控件的编辑掩码。编辑掩码是用
msgctxt ""
"01170101.xhp\n"
"par_id3154485\n"
-"184\n"
"help.text"
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 "对于编辑掩码的每个输入字符,您必须指定一个掩码字符来限定只能输入表格中给定的数值:"
@@ -5310,7 +4908,6 @@ msgstr "对于编辑掩码的每个输入字符,您必须指定一个掩码字
msgctxt ""
"01170101.xhp\n"
"par_id3155809\n"
-"93\n"
"help.text"
msgid "Character"
msgstr "字符"
@@ -5319,7 +4916,6 @@ msgstr "字符"
msgctxt ""
"01170101.xhp\n"
"par_id3148702\n"
-"94\n"
"help.text"
msgid "Meaning"
msgstr "含义"
@@ -5328,7 +4924,6 @@ msgstr "含义"
msgctxt ""
"01170101.xhp\n"
"par_id3156199\n"
-"95\n"
"help.text"
msgid "L"
msgstr "L"
@@ -5337,7 +4932,6 @@ msgstr "L"
msgctxt ""
"01170101.xhp\n"
"par_id3148869\n"
-"96\n"
"help.text"
msgid "A text constant. This character cannot be modified by the user."
msgstr "文字常数。用户不能修改该字符。"
@@ -5346,7 +4940,6 @@ msgstr "文字常数。用户不能修改该字符。"
msgctxt ""
"01170101.xhp\n"
"par_id3156016\n"
-"97\n"
"help.text"
msgid "a"
msgstr "a"
@@ -5355,7 +4948,6 @@ msgstr "a"
msgctxt ""
"01170101.xhp\n"
"par_id3157983\n"
-"98\n"
"help.text"
msgid "The characters a-z can be entered here. If a capital letter is entered, it is automatically converted to a lowercase letter."
msgstr "此处可以输入字符 a 到 z。如果输入了大写字母,将被自动转换成小写字母。"
@@ -5364,7 +4956,6 @@ msgstr "此处可以输入字符 a 到 z。如果输入了大写字母,将被
msgctxt ""
"01170101.xhp\n"
"par_id3148607\n"
-"99\n"
"help.text"
msgid "A"
msgstr "A"
@@ -5373,7 +4964,6 @@ msgstr "A"
msgctxt ""
"01170101.xhp\n"
"par_id3159204\n"
-"100\n"
"help.text"
msgid "The characters A-Z can be entered here. If a lowercase letter is entered, it is automatically converted to a capital letter"
msgstr "此处可以输入字符 A 到 Z。如果输入了小写字母,将被自动转换成大写字母。"
@@ -5382,7 +4972,6 @@ msgstr "此处可以输入字符 A 到 Z。如果输入了小写字母,将被
msgctxt ""
"01170101.xhp\n"
"par_id3149126\n"
-"101\n"
"help.text"
msgid "c"
msgstr "c"
@@ -5391,7 +4980,6 @@ msgstr "c"
msgctxt ""
"01170101.xhp\n"
"par_id3151304\n"
-"102\n"
"help.text"
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 "此处可以输入字符 a 到 z 和 0 到 9。如果输入了大写字母,将被自动转换成小写字母。"
@@ -5400,7 +4988,6 @@ msgstr "此处可以输入字符 a 到 z 和 0 到 9。如果输入了大写字
msgctxt ""
"01170101.xhp\n"
"par_id3152870\n"
-"103\n"
"help.text"
msgid "C"
msgstr "C"
@@ -5409,7 +4996,6 @@ msgstr "C"
msgctxt ""
"01170101.xhp\n"
"par_id3155071\n"
-"104\n"
"help.text"
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 "此处可以输入字符 A 到 Z 和 0 到 9。如果输入了小写字母,将被自动转换成大写字母。"
@@ -5418,7 +5004,6 @@ msgstr "此处可以输入字符 A 到 Z 和 0 到 9。如果输入了小写字
msgctxt ""
"01170101.xhp\n"
"par_id3159230\n"
-"105\n"
"help.text"
msgid "N"
msgstr "N"
@@ -5427,7 +5012,6 @@ msgstr "N"
msgctxt ""
"01170101.xhp\n"
"par_id3154650\n"
-"106\n"
"help.text"
msgid "Only the characters 0-9 can be entered."
msgstr "只能输入字符 0 到 9。"
@@ -5436,7 +5020,6 @@ msgstr "只能输入字符 0 到 9。"
msgctxt ""
"01170101.xhp\n"
"par_id3149383\n"
-"107\n"
"help.text"
msgid "x"
msgstr "x"
@@ -5445,7 +5028,6 @@ msgstr "x"
msgctxt ""
"01170101.xhp\n"
"par_id3153489\n"
-"108\n"
"help.text"
msgid "All printable characters can be entered."
msgstr "可以输入所有可打印的字符。"
@@ -5454,7 +5036,6 @@ msgstr "可以输入所有可打印的字符。"
msgctxt ""
"01170101.xhp\n"
"par_id3146967\n"
-"109\n"
"help.text"
msgid "X"
msgstr "X"
@@ -5463,7 +5044,6 @@ msgstr "X"
msgctxt ""
"01170101.xhp\n"
"par_id3154707\n"
-"110\n"
"help.text"
msgid "All printable characters can be entered. If a lowercase letter is used, it is automatically converted to a capital letter."
msgstr "可以输入所有可打印的字符。如果输入了小写字母,将被自动转换成大写字母。"
@@ -5496,7 +5076,6 @@ msgstr "默认值为 FALSE。"
msgctxt ""
"01170101.xhp\n"
"hd_id3149317\n"
-"114\n"
"help.text"
msgid "Graphics"
msgstr "图形"
@@ -5505,7 +5084,6 @@ msgstr "图形"
msgctxt ""
"01170101.xhp\n"
"par_id3147546\n"
-"115\n"
"help.text"
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=\".\">为按钮或图像控件指定图形来源。单击 \"...\" 可选择文件。</ahelp>"
@@ -5514,7 +5092,6 @@ msgstr "<ahelp hid=\".\">为按钮或图像控件指定图形来源。单击 \".
msgctxt ""
"01170101.xhp\n"
"hd_id3154627\n"
-"258\n"
"help.text"
msgid "Height"
msgstr "高度"
@@ -5523,7 +5100,6 @@ msgstr "高度"
msgctxt ""
"01170101.xhp\n"
"par_id3155754\n"
-"257\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the height of the current control or the dialog.</ahelp>"
msgstr "<ahelp hid=\".\">指定当前控件或对话框的高度。</ahelp>"
@@ -5532,7 +5108,6 @@ msgstr "<ahelp hid=\".\">指定当前控件或对话框的高度。</ahelp>"
msgctxt ""
"01170101.xhp\n"
"hd_id3153072\n"
-"208\n"
"help.text"
msgid "Help text"
msgstr "帮助文本"
@@ -5541,7 +5116,6 @@ msgstr "帮助文本"
msgctxt ""
"01170101.xhp\n"
"par_id3147502\n"
-"209\n"
"help.text"
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=\".\">输入帮助文本,当鼠标停留在控件上时,该文本将显示为提示(气泡式帮助)。</ahelp>"
@@ -5550,7 +5124,6 @@ msgstr "<ahelp hid=\".\">输入帮助文本,当鼠标停留在控件上时,
msgctxt ""
"01170101.xhp\n"
"hd_id3154400\n"
-"212\n"
"help.text"
msgid "Help URL"
msgstr "帮助 URL"
@@ -5559,7 +5132,6 @@ msgstr "帮助 URL"
msgctxt ""
"01170101.xhp\n"
"par_id3150431\n"
-"213\n"
"help.text"
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=\".\">指定当焦点位于特定控件上时,按 F1 所调用的帮助 URL。例如,使用 HID:1234 格式可以调用编号为 1234 的 Help-ID。</ahelp>"
@@ -5576,7 +5148,6 @@ msgstr "把环境变量 HELP_DEBUG 的值设为 1,以查看扩展提示信息
msgctxt ""
"01170101.xhp\n"
"hd_id3159260\n"
-"85\n"
"help.text"
msgid "Incr./decrement value"
msgstr "区间"
@@ -5585,7 +5156,6 @@ msgstr "区间"
msgctxt ""
"01170101.xhp\n"
"par_id3145233\n"
-"86\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the increment and decrement interval for spin button controls.</ahelp>"
msgstr "<ahelp hid=\".\">指定微调按钮控件的递增和递减间隔。</ahelp>"
@@ -5626,7 +5196,6 @@ msgstr "默认值为 FALSE。"
msgctxt ""
"01170101.xhp\n"
"hd_id3150536\n"
-"7\n"
"help.text"
msgid "Label"
msgstr "标签"
@@ -5635,7 +5204,6 @@ msgstr "标签"
msgctxt ""
"01170101.xhp\n"
"par_id3146324\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the label of the current control. The label is displayed along with the control.</ahelp>"
msgstr "<ahelp hid=\".\">指定当前控件的标签。标签将随控件一同显示。</ahelp>"
@@ -5644,7 +5212,6 @@ msgstr "<ahelp hid=\".\">指定当前控件的标签。标签将随控件一同
msgctxt ""
"01170101.xhp\n"
"par_id3146816\n"
-"223\n"
"help.text"
msgid "You can create multi-line <emph>labels</emph> by inserting manual line breaks in the label using <emph>Shift+Enter</emph>."
msgstr "使用 <emph>Shift+Enter</emph> 键在标签中插入手动换行符,可以创建多行<emph>标签</emph>。"
@@ -5653,7 +5220,6 @@ msgstr "使用 <emph>Shift+Enter</emph> 键在标签中插入手动换行符,
msgctxt ""
"01170101.xhp\n"
"hd_id3150457\n"
-"74\n"
"help.text"
msgid "Line Count"
msgstr "行数"
@@ -5662,7 +5228,6 @@ msgstr "行数"
msgctxt ""
"01170101.xhp\n"
"par_id3149143\n"
-"75\n"
"help.text"
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=\".\">输入列表控件要显示的行数。对于组合框,此设置只在启用下拉选项时有效。</ahelp>"
@@ -5687,7 +5252,6 @@ msgstr "将指定的滚动条类型添加到文本框。"
msgctxt ""
"01170101.xhp\n"
"hd_id3153121\n"
-"256\n"
"help.text"
msgid "Small change"
msgstr "小的变化"
@@ -5696,7 +5260,6 @@ msgstr "小的变化"
msgctxt ""
"01170101.xhp\n"
"par_id3157875\n"
-"255\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the number of units to scroll when a user clicks an arrow on a scrollbar.</ahelp>"
msgstr "<ahelp hid=\".\">指定当用户单击滚动条上的箭头时所滚动的单位数。</ahelp>"
@@ -5705,7 +5268,6 @@ msgstr "<ahelp hid=\".\">指定当用户单击滚动条上的箭头时所滚动
msgctxt ""
"01170101.xhp\n"
"hd_id3145221\n"
-"73\n"
"help.text"
msgid "List entries"
msgstr "列表条目"
@@ -5714,7 +5276,6 @@ msgstr "列表条目"
msgctxt ""
"01170101.xhp\n"
"par_id3154580\n"
-"120\n"
"help.text"
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=\".\">指定列表控件的条目。一个列表条目占一行。按 <emph>Shift+Enter</emph> 组合键可以插入一个新行。</ahelp>"
@@ -5723,7 +5284,6 @@ msgstr "<ahelp hid=\".\">指定列表控件的条目。一个列表条目占一
msgctxt ""
"01170101.xhp\n"
"hd_id3149723\n"
-"159\n"
"help.text"
msgid "Literal mask"
msgstr "字符掩码"
@@ -5732,7 +5292,6 @@ msgstr "字符掩码"
msgctxt ""
"01170101.xhp\n"
"par_id3150656\n"
-"160\n"
"help.text"
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=\".\">指定要在模式控件中显示的初始值。这可以帮助用户确定模式控件中允许使用的值。字符掩码受编辑掩码所指定的格式的限制。</ahelp>"
@@ -5741,7 +5300,6 @@ msgstr "<ahelp hid=\".\">指定要在模式控件中显示的初始值。这可
msgctxt ""
"01170101.xhp\n"
"hd_id3149015\n"
-"116\n"
"help.text"
msgid "Manual line break"
msgstr "手动换行"
@@ -5750,7 +5308,6 @@ msgstr "手动换行"
msgctxt ""
"01170101.xhp\n"
"par_id3149893\n"
-"117\n"
"help.text"
msgid "<ahelp hid=\".\">Select \"Yes\" to allow manual line breaks inside multiline controls.</ahelp>"
msgstr "<ahelp hid=\".\">选择“是”将允许在多行控件中使用手动换行符。</ahelp>"
@@ -5759,7 +5316,6 @@ msgstr "<ahelp hid=\".\">选择“是”将允许在多行控件中使用手动
msgctxt ""
"01170101.xhp\n"
"hd_id3150463\n"
-"123\n"
"help.text"
msgid "Max. text length"
msgstr "最长的文字"
@@ -5768,7 +5324,6 @@ msgstr "最长的文字"
msgctxt ""
"01170101.xhp\n"
"par_id3150745\n"
-"124\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the maximum number of characters that the user can enter.</ahelp>"
msgstr "<ahelp hid=\".\">指定用户可以输入的最大字符数。</ahelp>"
@@ -5777,7 +5332,6 @@ msgstr "<ahelp hid=\".\">指定用户可以输入的最大字符数。</ahelp>"
msgctxt ""
"01170101.xhp\n"
"hd_id3154675\n"
-"21\n"
"help.text"
msgid "Multiline Input"
msgstr "多行输入"
@@ -5786,7 +5340,6 @@ msgstr "多行输入"
msgctxt ""
"01170101.xhp\n"
"par_id3144741\n"
-"22\n"
"help.text"
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=\".\">选择“是”允许在控件中输入多行文本。按 Enter 可以在控件中插入手动换行符。</ahelp>"
@@ -5795,7 +5348,6 @@ msgstr "<ahelp hid=\".\">选择“是”允许在控件中输入多行文本。
msgctxt ""
"01170101.xhp\n"
"hd_id3154848\n"
-"129\n"
"help.text"
msgid "Multiselection"
msgstr "多重选择"
@@ -5804,7 +5356,6 @@ msgstr "多重选择"
msgctxt ""
"01170101.xhp\n"
"par_id3151235\n"
-"130\n"
"help.text"
msgid "<ahelp hid=\".\">Select \"Yes\" to allow the selection of multiple entries in list controls.</ahelp>"
msgstr "<ahelp hid=\".\">选择“是”将允许在列表控件中选择多个条目。</ahelp>"
@@ -5813,7 +5364,6 @@ msgstr "<ahelp hid=\".\">选择“是”将允许在列表控件中选择多个
msgctxt ""
"01170101.xhp\n"
"hd_id3148887\n"
-"9\n"
"help.text"
msgid "Name"
msgstr "名称"
@@ -5822,7 +5372,6 @@ msgstr "名称"
msgctxt ""
"01170101.xhp\n"
"par_id3154548\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\".\">Insert a name for the current control. This name is used to identify the control.</ahelp>"
msgstr "<ahelp hid=\".\">插入当前控件的名称。此名称用于标识控件。</ahelp>"
@@ -5831,7 +5380,6 @@ msgstr "<ahelp hid=\".\">插入当前控件的名称。此名称用于标识控
msgctxt ""
"01170101.xhp\n"
"hd_id3148739\n"
-"44\n"
"help.text"
msgid "Order"
msgstr "顺序"
@@ -5840,7 +5388,6 @@ msgstr "顺序"
msgctxt ""
"01170101.xhp\n"
"par_id3149252\n"
-"45\n"
"help.text"
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=\".\">指定在对话框中按 Tab 键时控件获得焦点的顺序。</ahelp>进入对话框时,具有最小顺序号 (0) 的控件将获得焦点。连续按 <emph>Tab</emph> 键时,其余控件将按照各自的顺序号依次获得焦点。"
@@ -5849,7 +5396,6 @@ msgstr "<ahelp hid=\".\">指定在对话框中按 Tab 键时控件获得焦点
msgctxt ""
"01170101.xhp\n"
"par_id3155259\n"
-"46\n"
"help.text"
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 "刚开始时,控件的顺序号取决于它们添加到对话框中的顺序。您可以更改控件的顺序号。$[officename] Basic 自动更新顺序号,以避免号码重复。$[officename] Basic 对不能获得焦点的控件也指定了值,但是在使用 Tab 键时将跳过这些控件。"
@@ -5858,7 +5404,6 @@ msgstr "刚开始时,控件的顺序号取决于它们添加到对话框中的
msgctxt ""
"01170101.xhp\n"
"hd_id3149511\n"
-"247\n"
"help.text"
msgid "Orientation"
msgstr "方向"
@@ -5867,7 +5412,6 @@ msgstr "方向"
msgctxt ""
"01170101.xhp\n"
"par_id3153780\n"
-"246\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the orientation for a scrollbar control.</ahelp>"
msgstr "<ahelp hid=\".\">指定滚动条控件的方向。</ahelp>"
@@ -5876,7 +5420,6 @@ msgstr "<ahelp hid=\".\">指定滚动条控件的方向。</ahelp>"
msgctxt ""
"01170101.xhp\n"
"hd_id3154374\n"
-"239\n"
"help.text"
msgid "Page (step)"
msgstr "页 (步)"
@@ -5885,7 +5428,6 @@ msgstr "页 (步)"
msgctxt ""
"01170101.xhp\n"
"par_id3154109\n"
-"238\n"
"help.text"
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=\".\">指定分配了当前控件的对话框页码,或者要编辑的对话框的页码。</ahelp>如果对话框只有一页,则将其<emph>页(步)</emph>的值设置为 <emph>0</emph>。"
@@ -5894,7 +5436,6 @@ msgstr "<ahelp hid=\".\">指定分配了当前控件的对话框页码,或者
msgctxt ""
"01170101.xhp\n"
"par_id3148580\n"
-"236\n"
"help.text"
msgid "Select <emph>Page (Step)</emph> = 0 to make a control visible on every dialog page."
msgstr "选择<emph>页(步)</emph> = 0 将使每个对话框页面中均能看到当前控件。"
@@ -5903,7 +5444,6 @@ msgstr "选择<emph>页(步)</emph> = 0 将使每个对话框页面中均能
msgctxt ""
"01170101.xhp\n"
"par_id3146144\n"
-"235\n"
"help.text"
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 "要于运行时在对话框页面之间进行切换,需要创建一个修改<emph>页(步)</emph>的值的宏。"
@@ -5912,7 +5452,6 @@ msgstr "要于运行时在对话框页面之间进行切换,需要创建一个
msgctxt ""
"01170101.xhp\n"
"hd_id3154558\n"
-"156\n"
"help.text"
msgid "Password characters"
msgstr "密码字符"
@@ -5921,7 +5460,6 @@ msgstr "密码字符"
msgctxt ""
"01170101.xhp\n"
"par_id3152787\n"
-"157\n"
"help.text"
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=\".\">输入要显示的字符,这些字符将取代实际键入的字符。这可以用于在文本控件中输入密码。</ahelp>"
@@ -5930,7 +5468,6 @@ msgstr "<ahelp hid=\".\">输入要显示的字符,这些字符将取代实际
msgctxt ""
"01170101.xhp\n"
"hd_id3148750\n"
-"245\n"
"help.text"
msgid "PositionX"
msgstr "位置 X"
@@ -5939,7 +5476,6 @@ msgstr "位置 X"
msgctxt ""
"01170101.xhp\n"
"par_id3154517\n"
-"244\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the distance of the current control from the left side of the dialog.</ahelp>"
msgstr "<ahelp hid=\".\">指定当前控件到对话框左边缘的距离。</ahelp>"
@@ -5948,7 +5484,6 @@ msgstr "<ahelp hid=\".\">指定当前控件到对话框左边缘的距离。</ah
msgctxt ""
"01170101.xhp\n"
"hd_id3152767\n"
-"243\n"
"help.text"
msgid "PositionY"
msgstr "位置 Y"
@@ -5957,7 +5492,6 @@ msgstr "位置 Y"
msgctxt ""
"01170101.xhp\n"
"par_id3159082\n"
-"242\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the distance of the current control from the top of the dialog.</ahelp>"
msgstr "<ahelp hid=\".\">指定当前控件到对话框顶部的距离。</ahelp>"
@@ -5966,7 +5500,6 @@ msgstr "<ahelp hid=\".\">指定当前控件到对话框顶部的距离。</ahelp
msgctxt ""
"01170101.xhp\n"
"hd_id3159213\n"
-"221\n"
"help.text"
msgid "Prefix symbol"
msgstr "前缀符号"
@@ -5975,7 +5508,6 @@ msgstr "前缀符号"
msgctxt ""
"01170101.xhp\n"
"par_id3149688\n"
-"222\n"
"help.text"
msgid "<ahelp hid=\".\">Select \"Yes\" to display the currency symbol prefix in currency controls when a number was entered.</ahelp>"
msgstr "<ahelp hid=\".\">选择“是”将在输入数字时在货币控件中显示货币符号前缀。</ahelp>"
@@ -5984,7 +5516,6 @@ msgstr "<ahelp hid=\".\">选择“是”将在输入数字时在货币控件中
msgctxt ""
"01170101.xhp\n"
"hd_id3149728\n"
-"89\n"
"help.text"
msgid "Print"
msgstr "打印"
@@ -5993,7 +5524,6 @@ msgstr "打印"
msgctxt ""
"01170101.xhp\n"
"par_id3150001\n"
-"90\n"
"help.text"
msgid "<ahelp hid=\".\">Select \"Yes\" to include the current control in a document's printout.</ahelp>"
msgstr "<ahelp hid=\".\">选择“是”将在文档的打印输出中包含当前控件。</ahelp>"
@@ -6002,7 +5532,6 @@ msgstr "<ahelp hid=\".\">选择“是”将在文档的打印输出中包含当
msgctxt ""
"01170101.xhp\n"
"hd_id3154671\n"
-"261\n"
"help.text"
msgid "Progress value"
msgstr "进度值"
@@ -6011,7 +5540,6 @@ msgstr "进度值"
msgctxt ""
"01170101.xhp\n"
"par_id3146849\n"
-"260\n"
"help.text"
msgid "<ahelp hid=\".\">Specify a progress value for a progress bar control.</ahelp>"
msgstr "<ahelp hid=\".\">指定进度条控件的进度值。</ahelp>"
@@ -6020,7 +5548,6 @@ msgstr "<ahelp hid=\".\">指定进度条控件的进度值。</ahelp>"
msgctxt ""
"01170101.xhp\n"
"hd_id3153112\n"
-"254\n"
"help.text"
msgid "Progress value max."
msgstr "最大进度值"
@@ -6029,7 +5556,6 @@ msgstr "最大进度值"
msgctxt ""
"01170101.xhp\n"
"par_id3145167\n"
-"253\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the maximum value of a progress bar control.</ahelp>"
msgstr "<ahelp hid=\".\">指定进度条控件的最大值。</ahelp>"
@@ -6038,7 +5564,6 @@ msgstr "<ahelp hid=\".\">指定进度条控件的最大值。</ahelp>"
msgctxt ""
"01170101.xhp\n"
"hd_id3153569\n"
-"249\n"
"help.text"
msgid "Progress value min."
msgstr "最小进度值。"
@@ -6047,7 +5572,6 @@ msgstr "最小进度值。"
msgctxt ""
"01170101.xhp\n"
"par_id3154506\n"
-"248\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the minimum value of a progress bar control.</ahelp>"
msgstr "<ahelp hid=\".\">指定进度条控件的最小值。</ahelp>"
@@ -6056,7 +5580,6 @@ msgstr "<ahelp hid=\".\">指定进度条控件的最小值。</ahelp>"
msgctxt ""
"01170101.xhp\n"
"hd_id3150134\n"
-"42\n"
"help.text"
msgid "Read-only"
msgstr "只读"
@@ -6065,7 +5588,6 @@ msgstr "只读"
msgctxt ""
"01170101.xhp\n"
"par_id3155930\n"
-"43\n"
"help.text"
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=\".\">选择“是”可防止用户编辑当前控件的值。控件处于启用状态,并且可以获得焦点,但无法对其进行修改。</ahelp>"
@@ -6154,7 +5676,6 @@ msgstr "默认值为 0。"
msgctxt ""
"01170101.xhp\n"
"hd_id3148761\n"
-"264\n"
"help.text"
msgid "Scale"
msgstr "显示比例"
@@ -6163,7 +5684,6 @@ msgstr "显示比例"
msgctxt ""
"01170101.xhp\n"
"par_id3159134\n"
-"265\n"
"help.text"
msgid "<ahelp hid=\".\">Scales the image to fit the control size.</ahelp>"
msgstr "<ahelp hid=\".\">调整图像比例,以符合控件大小。</ahelp>"
@@ -6188,7 +5708,6 @@ msgstr "<ahelp hid=\".\">将指定的滚动条类型添加到文本框。</ahelp
msgctxt ""
"01170101.xhp\n"
"hd_id3147370\n"
-"241\n"
"help.text"
msgid "Scroll value"
msgstr "滚动数值"
@@ -6197,7 +5716,6 @@ msgstr "滚动数值"
msgctxt ""
"01170101.xhp\n"
"par_id3159622\n"
-"240\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the initial value of a scrollbar control. This determines the position of the scrollbar slider.</ahelp>"
msgstr "<ahelp hid=\".\">指定滚动条控件的初始值。此值用于确定滚动条滑块的位置。</ahelp>"
@@ -6206,7 +5724,6 @@ msgstr "<ahelp hid=\".\">指定滚动条控件的初始值。此值用于确定
msgctxt ""
"01170101.xhp\n"
"hd_id3155440\n"
-"252\n"
"help.text"
msgid "Scroll value max."
msgstr "最大滚动值"
@@ -6215,7 +5732,6 @@ msgstr "最大滚动值"
msgctxt ""
"01170101.xhp\n"
"par_id3148877\n"
-"251\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the maximum value of a scrollbar control.</ahelp>"
msgstr "<ahelp hid=\".\">指定滚动条控件的最大值。</ahelp>"
@@ -6344,7 +5860,6 @@ msgstr "<ahelp hid=\".\">指定为该树控件激活的选择模式。</ahelp>"
msgctxt ""
"01170101.xhp\n"
"hd_id3154193\n"
-"87\n"
"help.text"
msgid "Spin Button"
msgstr "调节按钮"
@@ -6353,7 +5868,6 @@ msgstr "调节按钮"
msgctxt ""
"01170101.xhp\n"
"par_id3145298\n"
-"88\n"
"help.text"
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=\".\">选择“是”可以将数值调节钮添加到数字、货币、日期或时间控件,以便使用箭头按钮来增加或减少输入值。</ahelp>"
@@ -6362,7 +5876,6 @@ msgstr "<ahelp hid=\".\">选择“是”可以将数值调节钮添加到数字
msgctxt ""
"01170101.xhp\n"
"hd_id3156267\n"
-"232\n"
"help.text"
msgid "State"
msgstr "状态"
@@ -6371,7 +5884,6 @@ msgstr "状态"
msgctxt ""
"01170101.xhp\n"
"par_id3150928\n"
-"231\n"
"help.text"
msgid "<ahelp hid=\".\">Select the selection state of the current control.</ahelp>"
msgstr "<ahelp hid=\".\">指定当前控件的选择状态。</ahelp>"
@@ -6380,7 +5892,6 @@ msgstr "<ahelp hid=\".\">指定当前控件的选择状态。</ahelp>"
msgctxt ""
"01170101.xhp\n"
"hd_id3148396\n"
-"112\n"
"help.text"
msgid "Strict format"
msgstr "检查格式"
@@ -6389,7 +5900,6 @@ msgstr "检查格式"
msgctxt ""
"01170101.xhp\n"
"par_id3153042\n"
-"113\n"
"help.text"
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=\".\">选择“是”只允许在数字、货币、日期或时间控件中输入有效字符。</ahelp>"
@@ -6398,7 +5908,6 @@ msgstr "<ahelp hid=\".\">选择“是”只允许在数字、货币、日期或
msgctxt ""
"01170101.xhp\n"
"hd_id3149538\n"
-"48\n"
"help.text"
msgid "Tabstop"
msgstr "制表符"
@@ -6407,7 +5916,6 @@ msgstr "制表符"
msgctxt ""
"01170101.xhp\n"
"par_id3148543\n"
-"49\n"
"help.text"
msgid "<ahelp hid=\".\">Select the focus behavior of the current control when using the <emph>Tab</emph> key.</ahelp>"
msgstr "<ahelp hid=\".\">选择当使用 <emph>Tab</emph> 键时当前控件的焦点行为。</ahelp>"
@@ -6416,7 +5924,6 @@ msgstr "<ahelp hid=\".\">选择当使用 <emph>Tab</emph> 键时当前控件的
msgctxt ""
"01170101.xhp\n"
"par_id3148776\n"
-"178\n"
"help.text"
msgid "Default"
msgstr "默认"
@@ -6425,7 +5932,6 @@ msgstr "默认"
msgctxt ""
"01170101.xhp\n"
"par_id3153547\n"
-"179\n"
"help.text"
msgid "Only input controls receive the focus when using the <emph>Tab</emph> key. Controls without input like caption controls are omitted."
msgstr "使用 <emph>Tab</emph> 键定位时,只有输入控件能接收焦点。没有输入框的控件,如标题控件将被略过。"
@@ -6434,7 +5940,6 @@ msgstr "使用 <emph>Tab</emph> 键定位时,只有输入控件能接收焦点
msgctxt ""
"01170101.xhp\n"
"par_id3154632\n"
-"52\n"
"help.text"
msgid "No"
msgstr "否"
@@ -6443,7 +5948,6 @@ msgstr "否"
msgctxt ""
"01170101.xhp\n"
"par_id3150475\n"
-"53\n"
"help.text"
msgid "When using the tab key focusing skips the control."
msgstr "当使用 Tab 键切换焦点时,跳过当前控件。"
@@ -6452,7 +5956,6 @@ msgstr "当使用 Tab 键切换焦点时,跳过当前控件。"
msgctxt ""
"01170101.xhp\n"
"par_id3150690\n"
-"50\n"
"help.text"
msgid "Yes"
msgstr "是"
@@ -6461,7 +5964,6 @@ msgstr "是"
msgctxt ""
"01170101.xhp\n"
"par_id3159106\n"
-"51\n"
"help.text"
msgid "The control can be selected with the Tab key."
msgstr "使用 Tab 键可以选择控件。"
@@ -6470,7 +5972,6 @@ msgstr "使用 Tab 键可以选择控件。"
msgctxt ""
"01170101.xhp\n"
"hd_id3145152\n"
-"147\n"
"help.text"
msgid "Thousands Separator"
msgstr "千位分隔符"
@@ -6479,7 +5980,6 @@ msgstr "千位分隔符"
msgctxt ""
"01170101.xhp\n"
"par_id3155085\n"
-"148\n"
"help.text"
msgid "<ahelp hid=\".\">Select \"Yes\" to display thousands separator characters in numerical and currency controls.</ahelp>"
msgstr "<ahelp hid=\".\">选择“是”将在数字控件或货币控件中显示千位分隔符。</ahelp>"
@@ -6488,7 +5988,6 @@ msgstr "<ahelp hid=\".\">选择“是”将在数字控件或货币控件中显
msgctxt ""
"01170101.xhp\n"
"hd_id3152816\n"
-"168\n"
"help.text"
msgid "Time Format"
msgstr "时间格式"
@@ -6497,7 +5996,6 @@ msgstr "时间格式"
msgctxt ""
"01170101.xhp\n"
"par_id3145263\n"
-"169\n"
"help.text"
msgid "<ahelp hid=\".\">Select the format to be used for time controls.</ahelp>"
msgstr "<ahelp hid=\".\">选择要用于时间控件的格式。</ahelp>"
@@ -6506,7 +6004,6 @@ msgstr "<ahelp hid=\".\">选择要用于时间控件的格式。</ahelp>"
msgctxt ""
"01170101.xhp\n"
"hd_id3153920\n"
-"127\n"
"help.text"
msgid "Time max."
msgstr "最长时间"
@@ -6515,7 +6012,6 @@ msgstr "最长时间"
msgctxt ""
"01170101.xhp\n"
"par_id3155401\n"
-"128\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the maximum time value for a time control.</ahelp>"
msgstr "<ahelp hid=\".\">指定时间控件的最大时间值。</ahelp>"
@@ -6524,7 +6020,6 @@ msgstr "<ahelp hid=\".\">指定时间控件的最大时间值。</ahelp>"
msgctxt ""
"01170101.xhp\n"
"hd_id3163818\n"
-"135\n"
"help.text"
msgid "Time min."
msgstr "最短时间"
@@ -6533,7 +6028,6 @@ msgstr "最短时间"
msgctxt ""
"01170101.xhp\n"
"par_id3156262\n"
-"136\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the minimum time value for a time control.</ahelp>"
msgstr "<ahelp hid=\".\">指定时间控件的最小时间值。</ahelp>"
@@ -6542,7 +6036,6 @@ msgstr "<ahelp hid=\".\">指定时间控件的最小时间值。</ahelp>"
msgctxt ""
"01170101.xhp\n"
"hd_id3148638\n"
-"266\n"
"help.text"
msgid "Title"
msgstr "标题"
@@ -6551,7 +6044,6 @@ msgstr "标题"
msgctxt ""
"01170101.xhp\n"
"par_id3147169\n"
-"267\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the title of the dialog. Click the border of the dialog to select the dialog.</ahelp>"
msgstr "<ahelp hid=\".\">指定对话框的标题。单击对话框的边框可以选择该对话框。</ahelp>"
@@ -6560,7 +6052,6 @@ msgstr "<ahelp hid=\".\">指定对话框的标题。单击对话框的边框可
msgctxt ""
"01170101.xhp\n"
"par_id3153716\n"
-"55\n"
"help.text"
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 "<emph>标题</emph>仅用于为对话框加上标签,并且只能含有一行文字。请注意,如果使用宏进行操作,则只能通过 <emph>Name</emph> 属性调用控件。"
@@ -6569,7 +6060,6 @@ msgstr "<emph>标题</emph>仅用于为对话框加上标签,并且只能含
msgctxt ""
"01170101.xhp\n"
"hd_id3152594\n"
-"173\n"
"help.text"
msgid "Tristate"
msgstr "三重状态"
@@ -6578,7 +6068,6 @@ msgstr "三重状态"
msgctxt ""
"01170101.xhp\n"
"par_id3149825\n"
-"174\n"
"help.text"
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=\".\">选择“是”可以使复选框具有三种状态(选中、未选中和灰显),否则只有两种状态(选中和未选中)。</ahelp>"
@@ -6587,7 +6076,6 @@ msgstr "<ahelp hid=\".\">选择“是”可以使复选框具有三种状态(
msgctxt ""
"01170101.xhp\n"
"hd_id3150614\n"
-"268\n"
"help.text"
msgid "Value"
msgstr "数值"
@@ -6596,7 +6084,6 @@ msgstr "数值"
msgctxt ""
"01170101.xhp\n"
"par_id3154315\n"
-"269\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the value for the current control.</ahelp>"
msgstr "<ahelp hid=\".\">指定当前控件的值。</ahelp>"
@@ -6605,7 +6092,6 @@ msgstr "<ahelp hid=\".\">指定当前控件的值。</ahelp>"
msgctxt ""
"01170101.xhp\n"
"hd_id3152480\n"
-"125\n"
"help.text"
msgid "Value max."
msgstr "最大数值"
@@ -6614,7 +6100,6 @@ msgstr "最大数值"
msgctxt ""
"01170101.xhp\n"
"par_id3163823\n"
-"126\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the maximum value for the current control.</ahelp>"
msgstr "<ahelp hid=\".\">指定当前控件的最大值。</ahelp>"
@@ -6623,7 +6108,6 @@ msgstr "<ahelp hid=\".\">指定当前控件的最大值。</ahelp>"
msgctxt ""
"01170101.xhp\n"
"hd_id3149276\n"
-"133\n"
"help.text"
msgid "Value min."
msgstr "最小数值"
@@ -6632,7 +6116,6 @@ msgstr "最小数值"
msgctxt ""
"01170101.xhp\n"
"par_id3145088\n"
-"134\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the minimum value for the current control.</ahelp>"
msgstr "<ahelp hid=\".\">指定当前控件的最小值。</ahelp>"
@@ -6641,7 +6124,6 @@ msgstr "<ahelp hid=\".\">指定当前控件的最小值。</ahelp>"
msgctxt ""
"01170101.xhp\n"
"hd_id3149712\n"
-"234\n"
"help.text"
msgid "Visible size"
msgstr "可见大小"
@@ -6650,7 +6132,6 @@ msgstr "可见大小"
msgctxt ""
"01170101.xhp\n"
"par_id3149445\n"
-"233\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the length of the slider of a scrollbar control.</ahelp>"
msgstr "<ahelp hid=\".\">指定滚动条控件的滑块长度。</ahelp>"
@@ -6659,7 +6140,6 @@ msgstr "<ahelp hid=\".\">指定滚动条控件的滑块长度。</ahelp>"
msgctxt ""
"01170101.xhp\n"
"hd_id3152472\n"
-"142\n"
"help.text"
msgid "Width"
msgstr "宽度"
@@ -6668,7 +6148,6 @@ msgstr "宽度"
msgctxt ""
"01170101.xhp\n"
"par_id3157963\n"
-"143\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the width of the current control or dialog.</ahelp>"
msgstr "<ahelp hid=\".\">指定当前控件或对话框的宽度。</ahelp>"
@@ -6685,7 +6164,6 @@ msgstr "事件"
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=\"事件\">事件</link>"
@@ -6694,7 +6172,6 @@ msgstr "<link href=\"text/sbasic/shared/01170103.xhp\" name=\"事件\">事件</l
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 "为选定的控制或对话框指定事件。可供选择的事件取决于选择的控制类型。"
@@ -6703,7 +6180,6 @@ msgstr "为选定的控制或对话框指定事件。可供选择的事件取决
msgctxt ""
"01170103.xhp\n"
"hd_id3145387\n"
-"16\n"
"help.text"
msgid "When receiving focus"
msgstr "在瞄准时"
@@ -6712,7 +6188,6 @@ msgstr "在瞄准时"
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\">当控件获得焦点时会发生此事件。</ahelp>"
@@ -6721,7 +6196,6 @@ msgstr "<ahelp hid=\"HID_EVT_FOCUSGAINED\">当控件获得焦点时会发生此
msgctxt ""
"01170103.xhp\n"
"hd_id3152892\n"
-"18\n"
"help.text"
msgid "When losing focus"
msgstr "在偏离目标时"
@@ -6730,7 +6204,6 @@ msgstr "在偏离目标时"
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\">当控件失去焦点时会发生此事件。</ahelp>"
@@ -6739,7 +6212,6 @@ msgstr "<ahelp hid=\"HID_EVT_FOCUSLOST\">当控件失去焦点时会发生此事
msgctxt ""
"01170103.xhp\n"
"hd_id3152896\n"
-"20\n"
"help.text"
msgid "Key pressed"
msgstr "已按键"
@@ -6748,7 +6220,6 @@ msgstr "已按键"
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\">如果用户在控件具有焦点时按任意键,将会发生此事件。</ahelp>"
@@ -6757,7 +6228,6 @@ msgstr "<ahelp hid=\"HID_EVT_KEYTYPED\">如果用户在控件具有焦点时按
msgctxt ""
"01170103.xhp\n"
"hd_id3146869\n"
-"43\n"
"help.text"
msgid "Key released"
msgstr "已释放键"
@@ -6766,7 +6236,6 @@ msgstr "已释放键"
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\">如果用户在控件具有焦点时松开某个键,将会发生此事件。</ahelp>"
@@ -6775,7 +6244,6 @@ msgstr "<ahelp hid=\"HID_EVT_KEYUP\">如果用户在控件具有焦点时松开
msgctxt ""
"01170103.xhp\n"
"hd_id3159096\n"
-"41\n"
"help.text"
msgid "Modified"
msgstr "已修改"
@@ -6784,7 +6252,6 @@ msgstr "已修改"
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\">当控件失去焦点并且控件内容在失去焦点后被修改时,将会发生此事件。</ahelp>"
@@ -6793,7 +6260,6 @@ msgstr "<ahelp hid=\"HID_EVT_CHANGED\">当控件失去焦点并且控件内容
msgctxt ""
"01170103.xhp\n"
"hd_id3144508\n"
-"10\n"
"help.text"
msgid "Text modified"
msgstr "文字已经修改"
@@ -6802,7 +6268,6 @@ msgstr "文字已经修改"
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\">在输入字段中输入或修改文本时会发生此事件。</ahelp>"
@@ -6811,7 +6276,6 @@ msgstr "<ahelp hid=\"HID_EVT_TEXTCHANGED\">在输入字段中输入或修改文
msgctxt ""
"01170103.xhp\n"
"hd_id3159207\n"
-"8\n"
"help.text"
msgid "Item status changed"
msgstr "状态已经修改"
@@ -6820,7 +6284,6 @@ msgstr "状态已经修改"
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\">当修改控件字段的状态(例如,由选中状态修改为未选中状态)时会发生此事件。</ahelp>"
@@ -6829,7 +6292,6 @@ msgstr "<ahelp hid=\"HID_EVT_ITEMSTATECHANGED\">当修改控件字段的状态
msgctxt ""
"01170103.xhp\n"
"hd_id3151304\n"
-"26\n"
"help.text"
msgid "Mouse inside"
msgstr "鼠标在内部"
@@ -6838,7 +6300,6 @@ msgstr "鼠标在内部"
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\">当鼠标进入控件时会发生此事件。</ahelp>"
@@ -6847,7 +6308,6 @@ msgstr "<ahelp hid=\"HID_EVT_MOUSEENTERED\">当鼠标进入控件时会发生此
msgctxt ""
"01170103.xhp\n"
"hd_id3146778\n"
-"30\n"
"help.text"
msgid "Mouse moved while key pressed"
msgstr "按住按键的同时移动鼠标"
@@ -6856,7 +6316,6 @@ msgstr "按住按键的同时移动鼠标"
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\">当按下鼠标键并拖动鼠标时会发生此事件。</ahelp>"
@@ -6865,7 +6324,6 @@ msgstr "<ahelp hid=\"HID_EVT_MOUSEDRAGGED\">当按下鼠标键并拖动鼠标时
msgctxt ""
"01170103.xhp\n"
"hd_id3150210\n"
-"32\n"
"help.text"
msgid "Mouse moved"
msgstr "鼠标移动"
@@ -6874,7 +6332,6 @@ msgstr "鼠标移动"
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\">当鼠标移过控件时会发生此事件。</ahelp>"
@@ -6883,7 +6340,6 @@ msgstr "<ahelp hid=\"HID_EVT_MOUSEMOVED\">当鼠标移过控件时会发生此
msgctxt ""
"01170103.xhp\n"
"hd_id3145216\n"
-"22\n"
"help.text"
msgid "Mouse button pressed"
msgstr "已按下鼠标键"
@@ -6892,7 +6348,6 @@ msgstr "已按下鼠标键"
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\">当鼠标指针位于控件上并按下鼠标键时,将会发生此事件。</ahelp>"
@@ -6901,7 +6356,6 @@ msgstr "<ahelp hid=\"HID_EVT_MOUSEPRESSED\">当鼠标指针位于控件上并按
msgctxt ""
"01170103.xhp\n"
"hd_id3148899\n"
-"24\n"
"help.text"
msgid "Mouse button released"
msgstr "松开鼠标按键"
@@ -6910,7 +6364,6 @@ msgstr "松开鼠标按键"
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\">当鼠标指针位于控件上并松开鼠标键时,将会发生此事件。</ahelp>"
@@ -6919,7 +6372,6 @@ msgstr "<ahelp hid=\"HID_EVT_MOUSERELEASED\">当鼠标指针位于控件上并
msgctxt ""
"01170103.xhp\n"
"hd_id3153556\n"
-"28\n"
"help.text"
msgid "Mouse outside"
msgstr "鼠标在外部"
@@ -6928,7 +6380,6 @@ msgstr "鼠标在外部"
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\">当鼠标离开控件时会发生此事件。</ahelp>"
@@ -6937,7 +6388,6 @@ msgstr "<ahelp hid=\"HID_EVT_MOUSEEXITED\">当鼠标离开控件时会发生此
msgctxt ""
"01170103.xhp\n"
"hd_id3155759\n"
-"45\n"
"help.text"
msgid "While adjusting"
msgstr "随时调整"
@@ -6946,7 +6396,6 @@ msgstr "随时调整"
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\">拖动滚动条时会发生此事件。</ahelp>"
@@ -6963,7 +6412,6 @@ msgstr "运行时函数"
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=\"运行时函数\">运行时函数</link></variable>"
@@ -6972,7 +6420,6 @@ msgstr "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/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 "本节介绍 <item type=\"productname\">%PRODUCTNAME</item> Basic 的运行时函数。"
@@ -6989,7 +6436,6 @@ msgstr "屏幕 I/O 函数"
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=\"屏幕 I/O 函数\">屏幕 I/O 函数</link>"
@@ -6998,7 +6444,6 @@ msgstr "<link href=\"text/sbasic/shared/03010000.xhp\" name=\"屏幕 I/O 函数\
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 "本节介绍通过调用对话框来处理用户条目的输入和输出的运行时函数。"
@@ -7015,7 +6460,6 @@ msgstr "显示函数"
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=\"显示函数\">显示函数</link>"
@@ -7024,7 +6468,6 @@ msgstr "<link href=\"text/sbasic/shared/03010100.xhp\" name=\"显示函数\">显
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 "本节介绍可以将信息输出到屏幕显示的运行时函数。"
@@ -7689,7 +7132,6 @@ msgstr "用于屏幕输入的函数"
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=\"用于屏幕输入的函数\">用于屏幕输入的函数</link>"
@@ -7698,7 +7140,6 @@ msgstr "<link href=\"text/sbasic/shared/03010200.xhp\" name=\"用于屏幕输入
msgctxt ""
"03010200.xhp\n"
"par_id3150398\n"
-"2\n"
"help.text"
msgid "This section describes Runtime functions used to control screen input."
msgstr "本节介绍用于控制屏幕输入的运行时函数。"
@@ -7867,7 +7308,6 @@ msgstr "颜色函数"
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=\"颜色函数\">颜色函数</link>"
@@ -7876,7 +7316,6 @@ msgstr "<link href=\"text/sbasic/shared/03010300.xhp\" name=\"颜色函数\">颜
msgctxt ""
"03010300.xhp\n"
"par_id3155555\n"
-"2\n"
"help.text"
msgid "This section describes Runtime functions used to define colors."
msgstr "下面是用于定义颜色的所有函数。"
@@ -8613,7 +8052,6 @@ msgstr "文件 I/O 函数"
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=\"文件 I/O 函数\">文件 I/O 函数</link>"
@@ -8622,7 +8060,6 @@ msgstr "<link href=\"text/sbasic/shared/03020000.xhp\" name=\"文件 I/O 函数\
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 "使用文件 I/O 函数可以创建并管理自定义的(数据)文件。"
@@ -8631,7 +8068,6 @@ msgstr "使用文件 I/O 函数可以创建并管理自定义的(数据)文
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 "您可以使用这些函数来创建“相对”文件,这样就可以通过指定文件的记录编号来保存并重新加载某些记录。文件 I/O 函数还可以为您提供文件或目录的文件大小、当前路径设置和创建时间等信息,帮助您更好地管理文件。"
@@ -8648,7 +8084,6 @@ msgstr "打开和关闭文件"
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=\"打开和关闭文件\">打开和关闭文件</link>"
@@ -9049,7 +8484,6 @@ msgstr "文件输入/输出函数"
msgctxt ""
"03020200.xhp\n"
"hd_id3150791\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020200.xhp\" name=\"File Input/Output Functions\">File Input/Output Functions</link>"
msgstr "<link href=\"text/sbasic/shared/03020200.xhp\" name=\"File Input/Output Functions\">文件输入/输出函数</link>"
@@ -9882,7 +9316,6 @@ msgstr "<bookmark_value>Loc 函数</bookmark_value>"
msgctxt ""
"03020302.xhp\n"
"hd_id3148663\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020302.xhp\" name=\"Loc Function [Runtime]\">Loc Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03020302.xhp\" name=\"Loc 函数 [运行时]\">Loc 函数 [运行时]</link>"
@@ -9891,7 +9324,6 @@ msgstr "<link href=\"text/sbasic/shared/03020302.xhp\" name=\"Loc 函数 [运行
msgctxt ""
"03020302.xhp\n"
"par_id3154138\n"
-"2\n"
"help.text"
msgid "Returns the current position in an open file."
msgstr "返回打开文件中的当前位置。"
@@ -9900,7 +9332,6 @@ msgstr "返回打开文件中的当前位置。"
msgctxt ""
"03020302.xhp\n"
"hd_id3156422\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -9909,7 +9340,6 @@ msgstr "语法:"
msgctxt ""
"03020302.xhp\n"
"par_id3150768\n"
-"4\n"
"help.text"
msgid "Loc(FileNumber)"
msgstr "Loc(FileNumber)"
@@ -9918,7 +9348,6 @@ msgstr "Loc(FileNumber)"
msgctxt ""
"03020302.xhp\n"
"hd_id3150440\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "返回值:"
@@ -9927,7 +9356,6 @@ msgstr "返回值:"
msgctxt ""
"03020302.xhp\n"
"par_id3152578\n"
-"6\n"
"help.text"
msgid "Long"
msgstr "Long"
@@ -9936,7 +9364,6 @@ msgstr "Long"
msgctxt ""
"03020302.xhp\n"
"hd_id3152462\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -9945,7 +9372,6 @@ msgstr "参数:"
msgctxt ""
"03020302.xhp\n"
"par_id3153363\n"
-"8\n"
"help.text"
msgid "<emph>FileNumber:</emph> Any numeric expression that contains the file number that is set by the Open statement for the respective file."
msgstr "<emph>FileNumber:</emph>含有由 Open 语句为各个文件设置的文件编号的任意数字表达式。"
@@ -9954,7 +9380,6 @@ msgstr "<emph>FileNumber:</emph>含有由 Open 语句为各个文件设置的
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 "如果对一个打开的随机访问文件使用 Loc 函数,此函数将返回上次读取或写入的最后一个记录的编号。"
@@ -9963,7 +9388,6 @@ msgstr "如果对一个打开的随机访问文件使用 Loc 函数,此函数
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 "对于顺序文件,Loc 函数返回文件中文件指针所在位置除以 128 后的位置;对于二进制文件,则返回上一次读取或写入的字节的位置。"
@@ -9988,7 +9412,6 @@ msgstr "<bookmark_value>Lof 函数</bookmark_value>"
msgctxt ""
"03020303.xhp\n"
"hd_id3156024\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020303.xhp\" name=\"Lof Function [Runtime]\">Lof Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03020303.xhp\" name=\"Lof 函数 [运行时]\">Lof 函数 [运行时]</link>"
@@ -9997,7 +9420,6 @@ msgstr "<link href=\"text/sbasic/shared/03020303.xhp\" name=\"Lof 函数 [运行
msgctxt ""
"03020303.xhp\n"
"par_id3146794\n"
-"2\n"
"help.text"
msgid "Returns the size of an open file in bytes."
msgstr "返回打开文件的大小,以字节为单位。"
@@ -10006,7 +9428,6 @@ msgstr "返回打开文件的大小,以字节为单位。"
msgctxt ""
"03020303.xhp\n"
"hd_id3153380\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -10015,7 +9436,6 @@ msgstr "语法:"
msgctxt ""
"03020303.xhp\n"
"par_id3150359\n"
-"4\n"
"help.text"
msgid "Lof (FileNumber)"
msgstr "Lof (FileNumber)"
@@ -10024,7 +9444,6 @@ msgstr "Lof (FileNumber)"
msgctxt ""
"03020303.xhp\n"
"hd_id3154141\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "返回值:"
@@ -10033,7 +9452,6 @@ msgstr "返回值:"
msgctxt ""
"03020303.xhp\n"
"par_id3147230\n"
-"6\n"
"help.text"
msgid "Long"
msgstr "Long"
@@ -10042,7 +9460,6 @@ msgstr "Long"
msgctxt ""
"03020303.xhp\n"
"hd_id3156281\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -10051,7 +9468,6 @@ msgstr "参数:"
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>FileNumber:</emph>含有 Open 语句指定的文件编号的任意数字表达式。"
@@ -10060,7 +9476,6 @@ msgstr "<emph>FileNumber:</emph>含有 Open 语句指定的文件编号的任
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 "要获取未打开的文件的长度,请使用 <emph>FileLen</emph> 函数。"
@@ -10069,7 +9484,6 @@ msgstr "要获取未打开的文件的长度,请使用 <emph>FileLen</emph>
msgctxt ""
"03020303.xhp\n"
"hd_id3155415\n"
-"10\n"
"help.text"
msgid "Example:"
msgstr "示例:"
@@ -10078,7 +9492,6 @@ msgstr "示例:"
msgctxt ""
"03020303.xhp\n"
"par_id3154730\n"
-"13\n"
"help.text"
msgid "Dim sText As Variant REM must be a Variant"
msgstr "Dim sText As Variant REM 必须是变体类型"
@@ -10087,7 +9500,6 @@ msgstr "Dim sText As Variant REM 必须是变体类型"
msgctxt ""
"03020303.xhp\n"
"par_id3156276\n"
-"19\n"
"help.text"
msgid "Seek #iNumber,1 REM Position at start"
msgstr "Seek #iNumber,1 REM 指定起始位置"
@@ -10096,7 +9508,6 @@ msgstr "Seek #iNumber,1 REM 指定起始位置"
msgctxt ""
"03020303.xhp\n"
"par_id3148405\n"
-"20\n"
"help.text"
msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
msgstr "Put #iNumber,, \"这是第一行文本\" REM 用文字充填"
@@ -10105,7 +9516,6 @@ msgstr "Put #iNumber,, \"这是第一行文本\" REM 用文字充填"
msgctxt ""
"03020303.xhp\n"
"par_id3154756\n"
-"21\n"
"help.text"
msgid "Put #iNumber,, \"This is the second line of text\""
msgstr "Put #iNumber,, \"This is the second line of text\""
@@ -10114,7 +9524,6 @@ msgstr "Put #iNumber,, \"This is the second line of text\""
msgctxt ""
"03020303.xhp\n"
"par_id3145643\n"
-"22\n"
"help.text"
msgid "Put #iNumber,, \"This is the third line of text\""
msgstr "Put #iNumber,, \"This is the third line of text\""
@@ -10123,7 +9532,6 @@ msgstr "Put #iNumber,, \"This is the third line of text\""
msgctxt ""
"03020303.xhp\n"
"par_id3150299\n"
-"31\n"
"help.text"
msgid "Put #iNumber,,\"This is a new line of text\""
msgstr "Put #iNumber,,\"这是新文本行\""
@@ -10132,7 +9540,6 @@ msgstr "Put #iNumber,,\"这是新文本行\""
msgctxt ""
"03020303.xhp\n"
"par_id3166425\n"
-"34\n"
"help.text"
msgid "Put #iNumber,20,\"This is the text in record 20\""
msgstr "Put #iNumber,20,\"This is the text in record 20\""
@@ -10157,7 +9564,6 @@ msgstr "<bookmark_value>seek 函数</bookmark_value>"
msgctxt ""
"03020304.xhp\n"
"hd_id3154367\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek Function [Runtime]\">Seek Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek 函数 [运行时]\">Seek 函数 [运行时]</link>"
@@ -10166,7 +9572,6 @@ msgstr "<link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek 函数 [运
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 "返回通过 Open 语句打开的文件中的下一个写入或读取位置。"
@@ -10175,7 +9580,6 @@ msgstr "返回通过 Open 语句打开的文件中的下一个写入或读取位
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 "对于随机访问文件,Seek 函数返回下一个要读取的记录的编号。"
@@ -10184,7 +9588,6 @@ msgstr "对于随机访问文件,Seek 函数返回下一个要读取的记录
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 "对于其他文件,该函数返回将要进行下一个操作的字节位置。"
@@ -10193,7 +9596,6 @@ msgstr "对于其他文件,该函数返回将要进行下一个操作的字节
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 "另请参阅:<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>、<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek\">Seek</link>。"
@@ -10202,7 +9604,6 @@ msgstr "另请参阅:<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Ope
msgctxt ""
"03020304.xhp\n"
"hd_id3152460\n"
-"6\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -10211,7 +9612,6 @@ msgstr "语法:"
msgctxt ""
"03020304.xhp\n"
"par_id3145365\n"
-"7\n"
"help.text"
msgid "Seek (FileNumber)"
msgstr "Seek (FileNumber)"
@@ -10220,7 +9620,6 @@ msgstr "Seek (FileNumber)"
msgctxt ""
"03020304.xhp\n"
"hd_id3148575\n"
-"8\n"
"help.text"
msgid "Return value:"
msgstr "返回值:"
@@ -10229,7 +9628,6 @@ msgstr "返回值:"
msgctxt ""
"03020304.xhp\n"
"par_id3159156\n"
-"9\n"
"help.text"
msgid "Long"
msgstr "Long"
@@ -10238,7 +9636,6 @@ msgstr "Long"
msgctxt ""
"03020304.xhp\n"
"hd_id3149665\n"
-"10\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -10247,7 +9644,6 @@ msgstr "参数:"
msgctxt ""
"03020304.xhp\n"
"par_id3148645\n"
-"11\n"
"help.text"
msgid "<emph>FileNumber:</emph> The data channel number used in the Open statement."
msgstr "<emph>FileNumber:</emph>在 Open 语句中使用的数据通道编号。"
@@ -10272,7 +9668,6 @@ msgstr "<bookmark_value>seek 语句</bookmark_value>"
msgctxt ""
"03020305.xhp\n"
"hd_id3159413\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek Statement [Runtime]\">Seek Statement [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek 语句 [运行时]\">Seek 语句 [运行时]</link>"
@@ -10281,7 +9676,6 @@ msgstr "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek 语句 [运
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 "设置通过 Open 语句打开的文件中的下一个写入或读取位置。"
@@ -10306,7 +9700,6 @@ msgstr "对于所有其他文件,Seek 语句设置要进行下一个操作的
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 "请参阅:<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>、<link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek\">Seek</link>。"
@@ -10315,7 +9708,6 @@ msgstr "请参阅:<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\"
msgctxt ""
"03020305.xhp\n"
"hd_id3145785\n"
-"6\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -10324,7 +9716,6 @@ msgstr "语法:"
msgctxt ""
"03020305.xhp\n"
"par_id3145273\n"
-"7\n"
"help.text"
msgid "Seek[#FileNumber], Position (As Long)"
msgstr "Seek[#FileNumber], Position (As Long)"
@@ -10333,7 +9724,6 @@ msgstr "Seek[#FileNumber], Position (As Long)"
msgctxt ""
"03020305.xhp\n"
"hd_id3154321\n"
-"8\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -10342,7 +9732,6 @@ msgstr "参数:"
msgctxt ""
"03020305.xhp\n"
"par_id3153952\n"
-"9\n"
"help.text"
msgid "<emph>FileNumber: </emph>The data channel number used in the Open statement."
msgstr "<emph>FileNumber:</emph>在 Open 语句中使用的数据通道编号。"
@@ -10351,7 +9740,6 @@ msgstr "<emph>FileNumber:</emph>在 Open 语句中使用的数据通道编号
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>Position:</emph> 下一次写入或读取的位置,其值可以是 1 到 2,147,483,647 之间的数字。文件类型不同,位置指示的信息也不同。对于 Random 模式下的文件,指示的是记录编号;而对于 Binary、Output、Append 或 Input 模式下的文件,指示的是字节位置编号。文件中第一个字节是位置 1,第二个字节是位置 2,以此类推。"
@@ -10368,7 +9756,6 @@ msgstr "管理文件"
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=\"管理文件\">管理文件</link>"
@@ -10377,7 +9764,6 @@ msgstr "<link href=\"text/sbasic/shared/03020400.xhp\" name=\"管理文件\">管
msgctxt ""
"03020400.xhp\n"
"par_id3147264\n"
-"2\n"
"help.text"
msgid "The functions and statements for managing files are described here."
msgstr "下面介绍用于管理文件的函数和语句。"
@@ -12122,7 +11508,6 @@ msgstr "日期和时间函数"
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=\"日期和时间函数\">日期和时间函数</link>"
@@ -12131,7 +11516,6 @@ msgstr "<link href=\"text/sbasic/shared/03030000.xhp\" name=\"日期和时间函
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 "可以使用以下语句和函数来计算日期和时间。"
@@ -12140,7 +11524,6 @@ msgstr "可以使用以下语句和函数来计算日期和时间。"
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 "在 <item type=\"productname\">%PRODUCTNAME</item> Basic 中,可以通过将时间和日期转换为顺序数来计算两个时间或日期之间的差。计算出差值后,再通过某些特殊的函数将该值转换为标准的时间或日期格式。"
@@ -12149,7 +11532,6 @@ msgstr "在 <item type=\"productname\">%PRODUCTNAME</item> Basic 中,可以通
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 "日期和时间可以合并为一个带有小数的浮点数。转换后,整数部分表示日期,小数部分表示时间。<item type=\"productname\">%PRODUCTNAME</item> Basic 同时还支持日期变量类型,该变量符合由日期和时间组成的时间规范。"
@@ -12166,7 +11548,6 @@ msgstr "转换日期值"
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=\"转换日期值\">转换日期值</link>"
@@ -12175,7 +11556,6 @@ msgstr "<link href=\"text/sbasic/shared/03030100.xhp\" name=\"转换日期值\">
msgctxt ""
"03030100.xhp\n"
"par_id3154760\n"
-"2\n"
"help.text"
msgid "The following functions convert date values to calculable numbers and back."
msgstr "以下函数用于将日期转换为可计算的数字或者将数字转换为日期。"
@@ -12200,7 +11580,6 @@ msgstr "<bookmark_value>DateSerial 函数</bookmark_value>"
msgctxt ""
"03030101.xhp\n"
"hd_id3157896\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030101.xhp\" name=\"DateSerial Function [Runtime]\">DateSerial Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03030101.xhp\" name=\"DateSerial 函数 [运行时]\">DateSerial 函数 [运行时]</link>"
@@ -12209,7 +11588,6 @@ msgstr "<link href=\"text/sbasic/shared/03030101.xhp\" name=\"DateSerial 函数
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 "返回指定年、月或日的 <emph>日期</emph> 值。"
@@ -12218,7 +11596,6 @@ msgstr "返回指定年、月或日的 <emph>日期</emph> 值。"
msgctxt ""
"03030101.xhp\n"
"hd_id3147264\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -12227,7 +11604,6 @@ msgstr "语法:"
msgctxt ""
"03030101.xhp\n"
"par_id3149670\n"
-"4\n"
"help.text"
msgid "DateSerial (year, month, day)"
msgstr "DateSerial (year, month, day)"
@@ -12236,7 +11612,6 @@ msgstr "DateSerial (year, month, day)"
msgctxt ""
"03030101.xhp\n"
"hd_id3150792\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "返回值:"
@@ -12245,7 +11620,6 @@ msgstr "返回值:"
msgctxt ""
"03030101.xhp\n"
"par_id3150398\n"
-"6\n"
"help.text"
msgid "Date"
msgstr "日期"
@@ -12254,7 +11628,6 @@ msgstr "日期"
msgctxt ""
"03030101.xhp\n"
"hd_id3154141\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -12263,7 +11636,6 @@ msgstr "参数:"
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>Year:</emph>整数表达式,表示年份。1900-1999 之间的年份可以用 0 到 99 之间相应的数值表示,而对于超出此范围的年份,必须输入完整的四位数字。"
@@ -12272,7 +11644,6 @@ msgstr "<emph>Year:</emph>整数表达式,表示年份。1900-1999 之间的
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>Month:</emph>整数表达式,表示指定年份中的月份。有效值范围是 1-12。"
@@ -12281,7 +11652,6 @@ msgstr "<emph>Month:</emph>整数表达式,表示指定年份中的月份。
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>Day:</emph> 整数表达式,表示指定月份中的日期。有效值域为 1-31。针对不满 31 天的月份,输入不存在的日期不会返回任何错误。"
@@ -12290,7 +11660,6 @@ msgstr "<emph>Day:</emph> 整数表达式,表示指定月份中的日期。有
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 "<emph>DateSerial 函数</emph>返回 1899 年 12 月 30 日与给定日期之间相差的天数。因此,可以使用此函数计算两个日期之间相差的天数。"
@@ -12299,7 +11668,6 @@ msgstr "<emph>DateSerial 函数</emph>返回 1899 年 12 月 30 日与给定日
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 "<emph>DateSerial 函数</emph>返回的数据类型是变体,其 VarType 为 7,即日期。在程序内部,该值被作为双精度类型的数值进行存储。所以当给定日期为 1900.1.1 时,返回值是 2。负值表示给定的日期早于 1899 年 12 月 30 日。"
@@ -12308,7 +11676,6 @@ msgstr "<emph>DateSerial 函数</emph>返回的数据类型是变体,其 VarTy
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 "如果定义的日期超出了有效值范围,$[officename] Basic 将返回一个错误报告。"
@@ -12317,7 +11684,6 @@ msgstr "如果定义的日期超出了有效值范围,$[officename] Basic 将
msgctxt ""
"03030101.xhp\n"
"par_id3149481\n"
-"14\n"
"help.text"
msgid "Whereas you define the <emph>DateValue function</emph> as a string that contains the date, the <emph>DateSerial function</emph> evaluates each of the parameters (year, month, day) as separate numeric expressions."
msgstr "由于 <emph>DateValue 函数</emph>中可以定义含有日期的字符串,因此 <emph>DateSerial 函数</emph>将每个参数 (year、month、day) 当作独立的数字表达式来求值。"
@@ -12326,7 +11692,6 @@ msgstr "由于 <emph>DateValue 函数</emph>中可以定义含有日期的字符
msgctxt ""
"03030101.xhp\n"
"hd_id3155411\n"
-"15\n"
"help.text"
msgid "Example:"
msgstr "示例:"
@@ -12367,7 +11732,6 @@ msgstr "<bookmark_value>DateValue 函数</bookmark_value>"
msgctxt ""
"03030102.xhp\n"
"hd_id3156344\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030102.xhp\" name=\"DateValue Function [Runtime]\">DateValue Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03030102.xhp\" name=\"DateValue 函数 [运行时]\">DateValue 函数 [运行时]</link>"
@@ -12376,7 +11740,6 @@ msgstr "<link href=\"text/sbasic/shared/03030102.xhp\" name=\"DateValue 函数 [
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 "根据日期字符串返回日期值。日期字符串是以单个数值表示的完整日期。也可以使用此序列数确定两个日期之差。"
@@ -12385,7 +11748,6 @@ msgstr "根据日期字符串返回日期值。日期字符串是以单个数值
msgctxt ""
"03030102.xhp\n"
"hd_id3148799\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -12394,7 +11756,6 @@ msgstr "语法:"
msgctxt ""
"03030102.xhp\n"
"par_id3154910\n"
-"4\n"
"help.text"
msgid "DateValue [(date)]"
msgstr "DateValue [(date)]"
@@ -12403,7 +11764,6 @@ msgstr "DateValue [(date)]"
msgctxt ""
"03030102.xhp\n"
"hd_id3150870\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "返回值:"
@@ -12412,7 +11772,6 @@ msgstr "返回值:"
msgctxt ""
"03030102.xhp\n"
"par_id3153194\n"
-"6\n"
"help.text"
msgid "Date"
msgstr "日期"
@@ -12421,7 +11780,6 @@ msgstr "日期"
msgctxt ""
"03030102.xhp\n"
"hd_id3153969\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -12430,7 +11788,6 @@ msgstr "参数:"
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>date:</emph>含有要转换的日期的字符串表达式。可以按任意格式指定日期。"
@@ -12439,7 +11796,6 @@ msgstr "<emph>date:</emph>含有要转换的日期的字符串表达式。可
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 "使用此函数,可以将 1582 年 12 月 1 日 到 9999 年 12 月 31 日之间的任意日期转换成单个整数值。这样,就可以利用得到的整数值计算两个日期之间的差。如果日期自变量的值超出了允许的范围,$[officename] Basic 将返回一个错误报告。"
@@ -12448,7 +11804,6 @@ msgstr "使用此函数,可以将 1582 年 12 月 1 日 到 9999 年 12 月 31
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 "DateSerial 将年、月、日分别作为单独的数值传送,而 DateValue 函数则使用“month.[,]day.[,]year”格式传送日期。"
@@ -12457,7 +11812,6 @@ msgstr "DateSerial 将年、月、日分别作为单独的数值传送,而 Dat
msgctxt ""
"03030102.xhp\n"
"hd_id3153142\n"
-"24\n"
"help.text"
msgid "Example:"
msgstr "示例:"
@@ -12482,7 +11836,6 @@ msgstr "<bookmark_value>Day 函数</bookmark_value>"
msgctxt ""
"03030103.xhp\n"
"hd_id3153345\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day Function [Runtime]\">Day Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day 函数 [运行时]\">Day 函数 [运行时]</link>"
@@ -12491,7 +11844,6 @@ msgstr "<link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day 函数 [运行
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 "根据 <emph>DateSerial</emph> 或 <emph>DateValue</emph> 生成的顺序日期数,返回表示某个月中某一天的数值。"
@@ -12500,7 +11852,6 @@ msgstr "根据 <emph>DateSerial</emph> 或 <emph>DateValue</emph> 生成的顺
msgctxt ""
"03030103.xhp\n"
"hd_id3149456\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -12509,7 +11860,6 @@ msgstr "语法:"
msgctxt ""
"03030103.xhp\n"
"par_id3150358\n"
-"4\n"
"help.text"
msgid "Day (Number)"
msgstr "Day (Number)"
@@ -12518,7 +11868,6 @@ msgstr "Day (Number)"
msgctxt ""
"03030103.xhp\n"
"hd_id3148798\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "返回值:"
@@ -12527,7 +11876,6 @@ msgstr "返回值:"
msgctxt ""
"03030103.xhp\n"
"par_id3125865\n"
-"6\n"
"help.text"
msgid "Integer"
msgstr "整数"
@@ -12536,7 +11884,6 @@ msgstr "整数"
msgctxt ""
"03030103.xhp\n"
"hd_id3150448\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -12545,7 +11892,6 @@ msgstr "参数:"
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>Number:</emph>数字表达式,含有用于确定某个月中某一天的顺序日期数。"
@@ -12554,7 +11900,6 @@ msgstr "<emph>Number:</emph>数字表达式,含有用于确定某个月中
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 "此函数基本上可以说是 DateSerial 的逆运算,它根据 <emph>DateSerial</emph> 或 <emph>DateValue</emph> 函数生成的顺序日期数返回某个月中对应的日期。例如,表达式"
@@ -12563,7 +11908,6 @@ msgstr "此函数基本上可以说是 DateSerial 的逆运算,它根据 <emph
msgctxt ""
"03030103.xhp\n"
"par_id3153190\n"
-"11\n"
"help.text"
msgid "returns the value 20."
msgstr "返回值为 20。"
@@ -12572,7 +11916,6 @@ msgstr "返回值为 20。"
msgctxt ""
"03030103.xhp\n"
"hd_id3149481\n"
-"12\n"
"help.text"
msgid "Example:"
msgstr "示例:"
@@ -12581,7 +11924,6 @@ msgstr "示例:"
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)) & \" of the month\""
@@ -12606,7 +11948,6 @@ msgstr "<bookmark_value>Month 函数</bookmark_value>"
msgctxt ""
"03030104.xhp\n"
"hd_id3153127\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month Function [Runtime]\">Month Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month 函数 [运行时]\">Month 函数 [运行时]</link>"
@@ -12615,7 +11956,6 @@ msgstr "<link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month 函数 [运
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 "根据 DateSerial 或 DateValue 函数生成的顺序日期,返回某一年份中的月份。"
@@ -12624,7 +11964,6 @@ msgstr "根据 DateSerial 或 DateValue 函数生成的顺序日期,返回某
msgctxt ""
"03030104.xhp\n"
"hd_id3145068\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -12633,7 +11972,6 @@ msgstr "语法:"
msgctxt ""
"03030104.xhp\n"
"par_id3150398\n"
-"4\n"
"help.text"
msgid "Month (Number)"
msgstr "Month (Number)"
@@ -12642,7 +11980,6 @@ msgstr "Month (Number)"
msgctxt ""
"03030104.xhp\n"
"hd_id3154366\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "返回值:"
@@ -12651,7 +11988,6 @@ msgstr "返回值:"
msgctxt ""
"03030104.xhp\n"
"par_id3154125\n"
-"6\n"
"help.text"
msgid "Integer"
msgstr "整数"
@@ -12660,7 +11996,6 @@ msgstr "整数"
msgctxt ""
"03030104.xhp\n"
"hd_id3150768\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -12669,7 +12004,6 @@ msgstr "参数:"
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>Number:</emph>数字表达式,含有用于确定某一年份中的月份的顺序日期数。"
@@ -12678,7 +12012,6 @@ msgstr "<emph>Number:</emph>数字表达式,含有用于确定某一年份
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 "此函数是 <emph>DateSerial</emph> 函数的逆运算,它根据 <emph>DateSerial</emph> 或 <emph>DateValue</emph> 生成的顺序日期,返回所在年份中对应的月份。例如,表达式"
@@ -12687,7 +12020,6 @@ msgstr "此函数是 <emph>DateSerial</emph> 函数的逆运算,它根据 <emp
msgctxt ""
"03030104.xhp\n"
"par_id3145366\n"
-"11\n"
"help.text"
msgid "returns the value 12."
msgstr "返回值为 12。"
@@ -12696,7 +12028,6 @@ msgstr "返回值为 12。"
msgctxt ""
"03030104.xhp\n"
"hd_id3146923\n"
-"12\n"
"help.text"
msgid "Example:"
msgstr "示例:"
@@ -12705,7 +12036,6 @@ msgstr "示例:"
msgctxt ""
"03030104.xhp\n"
"par_id3149664\n"
-"14\n"
"help.text"
msgid "MsgBox \"\" & Month(Now) ,64,\"The current month\""
msgstr "MsgBox \"\" & Month(Now) ,64,\"The current month\""
@@ -12730,7 +12060,6 @@ msgstr "<bookmark_value>WeekDay 函数</bookmark_value>"
msgctxt ""
"03030105.xhp\n"
"hd_id3153127\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030105.xhp\" name=\"WeekDay Function [Runtime]\">WeekDay Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03030105.xhp\" name=\"WeekDay 函数 [运行时]\">WeekDay 函数 [运行时]</link>"
@@ -12739,7 +12068,6 @@ msgstr "<link href=\"text/sbasic/shared/03030105.xhp\" name=\"WeekDay 函数 [
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 "返回与由 DateSerial 或 DateValue 函数生成的工作日(以顺序日期数表示)相对应的数字。"
@@ -12748,7 +12076,6 @@ msgstr "返回与由 DateSerial 或 DateValue 函数生成的工作日(以顺
msgctxt ""
"03030105.xhp\n"
"hd_id3145068\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -12757,7 +12084,6 @@ msgstr "语法:"
msgctxt ""
"03030105.xhp\n"
"par_id3149655\n"
-"4\n"
"help.text"
msgid "WeekDay (Number)"
msgstr "WeekDay (Number)"
@@ -12766,7 +12092,6 @@ msgstr "WeekDay (Number)"
msgctxt ""
"03030105.xhp\n"
"hd_id3148799\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "返回值:"
@@ -12775,7 +12100,6 @@ msgstr "返回值:"
msgctxt ""
"03030105.xhp\n"
"par_id3154125\n"
-"6\n"
"help.text"
msgid "Integer"
msgstr "整数"
@@ -12784,7 +12108,6 @@ msgstr "整数"
msgctxt ""
"03030105.xhp\n"
"hd_id3150768\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -12793,7 +12116,6 @@ msgstr "参数:"
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>Number:</emph>含有用于计算一周 (1-7) 中的第几天的顺序日期数的整数表达式。"
@@ -12802,7 +12124,6 @@ msgstr "<emph>Number:</emph>含有用于计算一周 (1-7) 中的第几天的
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 "以下示例使用 WeekDay 函数确定输入的日期是星期几。"
@@ -12811,7 +12132,6 @@ msgstr "以下示例使用 WeekDay 函数确定输入的日期是星期几。"
msgctxt ""
"03030105.xhp\n"
"hd_id3148616\n"
-"10\n"
"help.text"
msgid "Example:"
msgstr "示例:"
@@ -12820,7 +12140,6 @@ msgstr "示例:"
msgctxt ""
"03030105.xhp\n"
"par_id3148576\n"
-"13\n"
"help.text"
msgid "' Return And display the day of the week"
msgstr "' 返回并显示星期几"
@@ -12829,7 +12148,6 @@ msgstr "' 返回并显示星期几"
msgctxt ""
"03030105.xhp\n"
"par_id3151117\n"
-"16\n"
"help.text"
msgid "sDay=\"Sunday\""
msgstr "sDay=\"Sunday\""
@@ -12838,7 +12156,6 @@ msgstr "sDay=\"Sunday\""
msgctxt ""
"03030105.xhp\n"
"par_id3153952\n"
-"18\n"
"help.text"
msgid "sDay=\"Monday\""
msgstr "sDay=\"Monday\""
@@ -12847,7 +12164,6 @@ msgstr "sDay=\"Monday\""
msgctxt ""
"03030105.xhp\n"
"par_id3153157\n"
-"20\n"
"help.text"
msgid "sDay=\"Tuesday\""
msgstr "sDay=\"Tuesday\""
@@ -12856,7 +12172,6 @@ msgstr "sDay=\"Tuesday\""
msgctxt ""
"03030105.xhp\n"
"par_id3154942\n"
-"22\n"
"help.text"
msgid "sDay=\"Wednesday\""
msgstr "sDay=\"Wednesday\""
@@ -12865,7 +12180,6 @@ msgstr "sDay=\"Wednesday\""
msgctxt ""
"03030105.xhp\n"
"par_id3155416\n"
-"24\n"
"help.text"
msgid "sDay=\"Thursday\""
msgstr "sDay=\"Thursday\""
@@ -12874,7 +12188,6 @@ msgstr "sDay=\"Thursday\""
msgctxt ""
"03030105.xhp\n"
"par_id3154015\n"
-"26\n"
"help.text"
msgid "sDay=\"Friday\""
msgstr "sDay=\"Friday\""
@@ -12883,7 +12196,6 @@ msgstr "sDay=\"Friday\""
msgctxt ""
"03030105.xhp\n"
"par_id3153707\n"
-"28\n"
"help.text"
msgid "sDay=\"Saturday\""
msgstr "sDay=\"Saturday\""
@@ -12892,7 +12204,6 @@ msgstr "sDay=\"Saturday\""
msgctxt ""
"03030105.xhp\n"
"par_id3148993\n"
-"30\n"
"help.text"
msgid "MsgBox \"\" + sDay,64,\"Today Is\""
msgstr "MsgBox \"\" + sDay,64,\"今天是\""
@@ -12917,7 +12228,6 @@ msgstr "<bookmark_value>Year 函数</bookmark_value>"
msgctxt ""
"03030106.xhp\n"
"hd_id3148664\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year Function [Runtime]\">Year Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year 函数 [运行时]\">Year 函数 [运行时]</link>"
@@ -12926,7 +12236,6 @@ msgstr "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year 函数 [运
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 "根据 DateSerial 或 DateValue 函数生成的顺序日期数返回年份。"
@@ -12935,7 +12244,6 @@ msgstr "根据 DateSerial 或 DateValue 函数生成的顺序日期数返回年
msgctxt ""
"03030106.xhp\n"
"hd_id3154125\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -12944,7 +12252,6 @@ msgstr "语法:"
msgctxt ""
"03030106.xhp\n"
"par_id3147229\n"
-"4\n"
"help.text"
msgid "Year (Number)"
msgstr "Year (Number)"
@@ -12953,7 +12260,6 @@ msgstr "Year (Number)"
msgctxt ""
"03030106.xhp\n"
"hd_id3154685\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "返回值:"
@@ -12962,7 +12268,6 @@ msgstr "返回值:"
msgctxt ""
"03030106.xhp\n"
"par_id3153970\n"
-"6\n"
"help.text"
msgid "Integer"
msgstr "整数"
@@ -12971,7 +12276,6 @@ msgstr "整数"
msgctxt ""
"03030106.xhp\n"
"hd_id3150440\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -12980,7 +12284,6 @@ msgstr "参数:"
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>Number:</emph>整数表达式,含有用于计算年份的顺序日期数。"
@@ -12989,7 +12292,6 @@ msgstr "<emph>Number:</emph>整数表达式,含有用于计算年份的顺
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 "此函数是 <emph>DateSerial</emph> 函数的逆运算,返回的是顺序日期对应的年份。例如,表达式:"
@@ -12998,7 +12300,6 @@ msgstr "此函数是 <emph>DateSerial</emph> 函数的逆运算,返回的是
msgctxt ""
"03030106.xhp\n"
"par_id3149483\n"
-"11\n"
"help.text"
msgid "returns the value 1994."
msgstr "返回值为 1994。"
@@ -13007,7 +12308,6 @@ msgstr "返回值为 1994。"
msgctxt ""
"03030106.xhp\n"
"hd_id3146985\n"
-"12\n"
"help.text"
msgid "Example:"
msgstr "示例:"
@@ -13016,7 +12316,6 @@ msgstr "示例:"
msgctxt ""
"03030106.xhp\n"
"par_id3153363\n"
-"14\n"
"help.text"
msgid "MsgBox \"\" & Year(Now) ,64,\"Current year\""
msgstr "MsgBox \"\" & Year(Now) ,64,\"Current year\""
@@ -13050,8 +12349,24 @@ msgctxt ""
"03030107.xhp\n"
"par_id3151097\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 "根据 DateSerial 或 DateValue 函数生成的顺序日期数返回 ISO 格式的日期。"
+msgid "Returns the date in ISO format without separators (YYYYMMDD) from a serial date number that is generated by the DateSerial or the DateValue or the CDateFromIso function."
+msgstr ""
+
+#: 03030107.xhp
+msgctxt ""
+"03030107.xhp\n"
+"par_id3151098\n"
+"help.text"
+msgid "The year part consists of at least four digits, with leading zeros if the absolute value is less than 1000, it can be negative with a leading minus sign if the date passed denotes a year before the common era (BCE) and it can have more than four digits if the absolute value is greater than 9999. The formatted string returned can be in the range \"-327680101\" to \"327671231\"."
+msgstr ""
+
+#: 03030107.xhp
+msgctxt ""
+"03030107.xhp\n"
+"par_id3151099\n"
+"help.text"
+msgid "Years less than 100 and greater than 9999 are supported since %PRODUCTNAME 5.4"
+msgstr ""
#: 03030107.xhp
msgctxt ""
@@ -13137,7 +12452,6 @@ msgstr "<bookmark_value>CdateFromIso 函数</bookmark_value>"
msgctxt ""
"03030108.xhp\n"
"hd_id3153127\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030108.xhp\" name=\"CDateFromIso Function [Runtime]\">CDateFromIso Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03030108.xhp\" name=\"CDateFromIso 函数 [运行时]\">CDateFromIso 函数 [运行时]</link>"
@@ -13146,16 +12460,46 @@ msgstr "<link href=\"text/sbasic/shared/03030108.xhp\" name=\"CDateFromIso 函
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 "根据含有 ISO 格式的日期的字符串返回内部日期值。"
+msgid "Returns the internal date number from a string that contains a date in ISO format (YYYYMMDD or YYYY-MM-DD)."
+msgstr ""
+
+#: 03030108.xhp
+msgctxt ""
+"03030108.xhp\n"
+"par_id3148551\n"
+"help.text"
+msgid "The year part must consist of either two (supported only in YYMMDD format without separators for compatibility) or at least four digits. With four digits leading zeros must be given if the absolute value is less than 1000, it can be negative with a leading minus sign if the date passed denotes a year before the common era (BCE) and it can have more than four digits if the absolute value is greater than 9999. The formatted string can be in the range \"-327680101\" to \"327671231\", or \"-32768-01-01\" to \"32767-12-31\"."
+msgstr ""
+
+#: 03030108.xhp
+msgctxt ""
+"03030108.xhp\n"
+"par_id3148552\n"
+"help.text"
+msgid "An invalid date results in an error. Year 0 is not accepted, the last day BCE is -0001-12-31 and the next day CE is 0001-01-01. Dates before 1582-10-15 are in the proleptic Gregorian calendar."
+msgstr ""
+
+#: 03030108.xhp
+msgctxt ""
+"03030108.xhp\n"
+"par_id3148553\n"
+"help.text"
+msgid "When converting a date serial number to a printable string, for example for the Print or MsgBox command, the locale's default calendar is used and at that 1582-10-15 cutover date may switch to the Julian calendar, which can result in a different date being displayed than expected. Use the <link href=\"text/sbasic/shared/03030107.xhp\" name=\"CDateToIso Function [Runtime]\">CDateToIso Function [Runtime]</link> to convert such date number to a string representation in the proleptic Gregorian calendar."
+msgstr ""
+
+#: 03030108.xhp
+msgctxt ""
+"03030108.xhp\n"
+"par_id3148554\n"
+"help.text"
+msgid "The YYYY-MM-DD format with separators is supported since %PRODUCTNAME 5.3.4. Years less than 100 or greater than 9999 are accepted since %PRODUCTNAME 5.4 if not in VBA compatibility mode."
+msgstr ""
#: 03030108.xhp
msgctxt ""
"03030108.xhp\n"
"hd_id3148947\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -13164,7 +12508,6 @@ msgstr "语法:"
msgctxt ""
"03030108.xhp\n"
"par_id3150400\n"
-"4\n"
"help.text"
msgid "CDateFromIso(String)"
msgstr "CDateFromIso(String)"
@@ -13173,7 +12516,6 @@ msgstr "CDateFromIso(String)"
msgctxt ""
"03030108.xhp\n"
"hd_id3154367\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "返回值:"
@@ -13182,7 +12524,6 @@ msgstr "返回值:"
msgctxt ""
"03030108.xhp\n"
"par_id3156212\n"
-"6\n"
"help.text"
msgid "Internal date number"
msgstr "内部日期值"
@@ -13191,7 +12532,6 @@ msgstr "内部日期值"
msgctxt ""
"03030108.xhp\n"
"hd_id3125864\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -13200,16 +12540,14 @@ msgstr "参数:"
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>String:</emph>含有 ISO 格式的日期的字符串。年份可以是两位或四位数字。"
+msgid "<emph>String:</emph> A string that contains a date in ISO format."
+msgstr ""
#: 03030108.xhp
msgctxt ""
"03030108.xhp\n"
"hd_id3150439\n"
-"9\n"
"help.text"
msgid "Example:"
msgstr "示例:"
@@ -13218,7 +12556,6 @@ msgstr "示例:"
msgctxt ""
"03030108.xhp\n"
"par_id3147318\n"
-"10\n"
"help.text"
msgid "dateval = CDateFromIso(\"20021231\")"
msgstr "dateval = CDateFromIso(\"20021231\")"
@@ -13226,11 +12563,18 @@ msgstr "dateval = CDateFromIso(\"20021231\")"
#: 03030108.xhp
msgctxt ""
"03030108.xhp\n"
+"par_id3147319\n"
+"help.text"
+msgid "dateval = CDateFromIso(\"2002-12-31\")"
+msgstr ""
+
+#: 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 "返回的日期为 2002 年 12 月 31 日,日期的格式取决于您的系统"
+msgid "return both 12/31/2002 in the date format of your system"
+msgstr ""
#: 03030110.xhp
msgctxt ""
@@ -14484,7 +13828,6 @@ msgstr "转换时间值"
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=\"转换时间值\">转换时间值</link>"
@@ -14493,7 +13836,6 @@ msgstr "<link href=\"text/sbasic/shared/03030200.xhp\" name=\"转换时间值\">
msgctxt ""
"03030200.xhp\n"
"par_id3149415\n"
-"2\n"
"help.text"
msgid "The following functions convert time values to calculable numbers."
msgstr "以下函数用于将时间值转换为可计算的数字。"
@@ -14518,7 +13860,6 @@ msgstr "<bookmark_value>Hour 函数</bookmark_value>"
msgctxt ""
"03030201.xhp\n"
"hd_id3156042\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour Function [Runtime]\">Hour Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour 函数 [运行时]\">Hour 函数 [运行时]</link>"
@@ -14527,7 +13868,6 @@ msgstr "<link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour 函数 [运
msgctxt ""
"03030201.xhp\n"
"par_id3149346\n"
-"2\n"
"help.text"
msgid "Returns the hour from a time value that is generated by the TimeSerial or the TimeValue function."
msgstr "根据 TimeSerial 函数或 TimeValue 函数生成的时间值返回小时。"
@@ -14536,7 +13876,6 @@ msgstr "根据 TimeSerial 函数或 TimeValue 函数生成的时间值返回小
msgctxt ""
"03030201.xhp\n"
"hd_id3147574\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -14545,7 +13884,6 @@ msgstr "语法:"
msgctxt ""
"03030201.xhp\n"
"par_id3147264\n"
-"4\n"
"help.text"
msgid "Hour (Number)"
msgstr "Hour (Number)"
@@ -14554,7 +13892,6 @@ msgstr "Hour (Number)"
msgctxt ""
"03030201.xhp\n"
"hd_id3145069\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "返回值:"
@@ -14563,7 +13900,6 @@ msgstr "返回值:"
msgctxt ""
"03030201.xhp\n"
"par_id3149670\n"
-"6\n"
"help.text"
msgid "Integer"
msgstr "整数"
@@ -14572,7 +13908,6 @@ msgstr "整数"
msgctxt ""
"03030201.xhp\n"
"hd_id3150359\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -14581,7 +13916,6 @@ msgstr "参数:"
msgctxt ""
"03030201.xhp\n"
"par_id3154366\n"
-"8\n"
"help.text"
msgid "<emph>Number:</emph> Numeric expression that contains the serial time value that is used to return the hour value."
msgstr "<emph>Number:</emph>数字表达式,含有用于计算小时值的顺序时间值。"
@@ -14590,7 +13924,6 @@ msgstr "<emph>Number:</emph>数字表达式,含有用于计算小时值的
msgctxt ""
"03030201.xhp\n"
"par_id3154909\n"
-"9\n"
"help.text"
msgid "This function is the opposite of the <emph>TimeSerial</emph> function. It returns an integer value that represents the hour from a time value that is generated by the <emph>TimeSerial</emph> or the <emph>TimeValue </emph>function. For example, the expression"
msgstr "此函数是 <emph>TimeSerial</emph> 函数的逆运算,根据 <emph>TimeSerial</emph> 或 <emph>TimeValue</emph> 函数生成的时间值返回表示小时的整数值。例如,表达式"
@@ -14599,7 +13932,6 @@ msgstr "此函数是 <emph>TimeSerial</emph> 函数的逆运算,根据 <emph>T
msgctxt ""
"03030201.xhp\n"
"par_id3163798\n"
-"10\n"
"help.text"
msgid "Print Hour(TimeSerial(12,30,41))"
msgstr "Print Hour(TimeSerial(12,30,41))"
@@ -14608,7 +13940,6 @@ msgstr "Print Hour(TimeSerial(12,30,41))"
msgctxt ""
"03030201.xhp\n"
"par_id3155132\n"
-"11\n"
"help.text"
msgid "returns the value 12."
msgstr "返回值为 12。"
@@ -14617,7 +13948,6 @@ msgstr "返回值为 12。"
msgctxt ""
"03030201.xhp\n"
"hd_id3147348\n"
-"12\n"
"help.text"
msgid "Example:"
msgstr "示例:"
@@ -14626,7 +13956,6 @@ msgstr "示例:"
msgctxt ""
"03030201.xhp\n"
"par_id3146985\n"
-"13\n"
"help.text"
msgid "Sub ExampleHour"
msgstr "Sub ExampleHour"
@@ -14635,7 +13964,6 @@ msgstr "Sub ExampleHour"
msgctxt ""
"03030201.xhp\n"
"par_id3156441\n"
-"14\n"
"help.text"
msgid "Print \"The current hour is \" & Hour( Now )"
msgstr "Print \"现在的时间(小时)是 \" & Hour( Now )"
@@ -14644,7 +13972,6 @@ msgstr "Print \"现在的时间(小时)是 \" & Hour( Now )"
msgctxt ""
"03030201.xhp\n"
"par_id3153145\n"
-"15\n"
"help.text"
msgid "End Sub"
msgstr "End Sub"
@@ -14669,7 +13996,6 @@ msgstr "<bookmark_value>Minute 函数</bookmark_value>"
msgctxt ""
"03030202.xhp\n"
"hd_id3155419\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute Function [Runtime]\">Minute Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute 函数 [运行时]\">Minute 函数 [运行时]</link>"
@@ -14678,7 +14004,6 @@ msgstr "<link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute 函数 [运
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 "返回由 TimeSerial 或 TimeValue 函数生成的顺序时间值所对应的分钟值。"
@@ -14687,7 +14012,6 @@ msgstr "返回由 TimeSerial 或 TimeValue 函数生成的顺序时间值所对
msgctxt ""
"03030202.xhp\n"
"hd_id3154758\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -14696,7 +14020,6 @@ msgstr "语法:"
msgctxt ""
"03030202.xhp\n"
"par_id3149656\n"
-"4\n"
"help.text"
msgid "Minute (Number)"
msgstr "Minute (Number)"
@@ -14705,7 +14028,6 @@ msgstr "Minute (Number)"
msgctxt ""
"03030202.xhp\n"
"hd_id3148798\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "返回值:"
@@ -14714,7 +14036,6 @@ msgstr "返回值:"
msgctxt ""
"03030202.xhp\n"
"par_id3150449\n"
-"6\n"
"help.text"
msgid "Integer"
msgstr "整数"
@@ -14723,7 +14044,6 @@ msgstr "整数"
msgctxt ""
"03030202.xhp\n"
"hd_id3153193\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -14732,7 +14052,6 @@ msgstr "参数:"
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>Number:</emph> 数字表达式,含有用于计算分钟值的顺序时间值。"
@@ -14741,7 +14060,6 @@ msgstr "<emph>Number:</emph> 数字表达式,含有用于计算分钟值的顺
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 "此函数是 <emph>TimeSerial</emph> 函数的逆运算,返回由 <emph>TimeSerial</emph> 或 <emph>TimeValue</emph> 函数生成的顺序时间值所对应的分钟值。例如,表达式:"
@@ -14750,7 +14068,6 @@ msgstr "此函数是 <emph>TimeSerial</emph> 函数的逆运算,返回由 <emp
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))"
@@ -14759,7 +14076,6 @@ msgstr "Print Minute(TimeSerial(12,30,41))"
msgctxt ""
"03030202.xhp\n"
"par_id3148576\n"
-"11\n"
"help.text"
msgid "returns the value 30."
msgstr "返回值为 30。"
@@ -14768,7 +14084,6 @@ msgstr "返回值为 30。"
msgctxt ""
"03030202.xhp\n"
"hd_id3150010\n"
-"12\n"
"help.text"
msgid "Example:"
msgstr "示例:"
@@ -14777,7 +14092,6 @@ msgstr "示例:"
msgctxt ""
"03030202.xhp\n"
"par_id3159154\n"
-"13\n"
"help.text"
msgid "Sub ExampleMinute"
msgstr "Sub ExampleMinute"
@@ -14786,7 +14100,6 @@ msgstr "Sub ExampleMinute"
msgctxt ""
"03030202.xhp\n"
"par_id3146119\n"
-"14\n"
"help.text"
msgid "MsgBox \"The current minute is \"& Minute(Now)& \".\""
msgstr "MsgBox \"当前分钟数是\"& Minute(Now)& \"。\""
@@ -14795,7 +14108,6 @@ msgstr "MsgBox \"当前分钟数是\"& Minute(Now)& \"。\""
msgctxt ""
"03030202.xhp\n"
"par_id3153726\n"
-"15\n"
"help.text"
msgid "end sub"
msgstr "end sub"
@@ -15340,7 +14652,6 @@ msgstr "系统日期和时间"
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=\"系统日期和时间\">系统日期和时间</link>"
@@ -15349,7 +14660,6 @@ msgstr "<link href=\"text/sbasic/shared/03030300.xhp\" name=\"系统日期和时
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 "以下函数和语句用于设置或返回系统日期和时间。"
@@ -15622,7 +14932,6 @@ msgstr "错误处理函数"
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=\"错误处理函数\">错误处理函数</link>"
@@ -15631,7 +14940,6 @@ msgstr "<link href=\"text/sbasic/shared/03050000.xhp\" name=\"错误处理函数
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 "使用以下语句和函数可以定义 $[officename] Basic 对运行时错误的反应。"
@@ -15640,7 +14948,6 @@ msgstr "使用以下语句和函数可以定义 $[officename] Basic 对运行时
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 提供了一些方法来避免由于运行时错误而导致程序终止。"
@@ -15777,7 +15084,6 @@ msgstr "<bookmark_value>Err 函数</bookmark_value>"
msgctxt ""
"03050200.xhp\n"
"hd_id3156343\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03050200.xhp\" name=\"Err Function [Runtime]\">Err Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03050200.xhp\" name=\"Err 函数 [运行时]\">Err 函数 [运行时]</link>"
@@ -15786,7 +15092,6 @@ msgstr "<link href=\"text/sbasic/shared/03050200.xhp\" name=\"Err 函数 [运行
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 "返回一个错误代码,用于标识程序执行过程中出现的错误。"
@@ -15795,7 +15100,6 @@ msgstr "返回一个错误代码,用于标识程序执行过程中出现的错
msgctxt ""
"03050200.xhp\n"
"hd_id3149656\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -15804,7 +15108,6 @@ msgstr "语法:"
msgctxt ""
"03050200.xhp\n"
"par_id3154123\n"
-"4\n"
"help.text"
msgid "Err"
msgstr "Err"
@@ -15813,7 +15116,6 @@ msgstr "Err"
msgctxt ""
"03050200.xhp\n"
"hd_id3147229\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "返回值:"
@@ -15822,7 +15124,6 @@ msgstr "返回值:"
msgctxt ""
"03050200.xhp\n"
"par_id3150869\n"
-"6\n"
"help.text"
msgid "Integer"
msgstr "整数"
@@ -15831,7 +15132,6 @@ msgstr "整数"
msgctxt ""
"03050200.xhp\n"
"hd_id3153193\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -15840,7 +15140,6 @@ msgstr "参数:"
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 "错误处理例行程序使用 Err 函数来确定错误以及纠正措施。"
@@ -15849,7 +15148,6 @@ msgstr "错误处理例行程序使用 Err 函数来确定错误以及纠正措
msgctxt ""
"03050200.xhp\n"
"hd_id3147317\n"
-"9\n"
"help.text"
msgid "Example:"
msgstr "示例:"
@@ -15858,7 +15156,6 @@ msgstr "示例:"
msgctxt ""
"03050200.xhp\n"
"par_id3147426\n"
-"11\n"
"help.text"
msgid "On Error Goto ErrorHandler REM Set up error handler"
msgstr "On Error Goto ErrorHandler REM 设置错误处理程序"
@@ -15867,7 +15164,6 @@ msgstr "On Error Goto ErrorHandler REM 设置错误处理程序"
msgctxt ""
"03050200.xhp\n"
"par_id3149481\n"
-"14\n"
"help.text"
msgid "REM Error occurs due to non-existent file"
msgstr "REM 由于文件不存在而出现的错误"
@@ -15876,7 +15172,6 @@ msgstr "REM 由于文件不存在而出现的错误"
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 \"错误 \" & Err & \":\" & Error$ + chr(13) + \"行数:\" + Erl + chr(13) + Now , 16 ,\"发生错误\""
@@ -15901,7 +15196,6 @@ msgstr "<bookmark_value>Error 函数</bookmark_value>"
msgctxt ""
"03050300.xhp\n"
"hd_id3159413\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03050300.xhp\" name=\"Error Function [Runtime]\">Error Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03050300.xhp\" name=\"Error 函数 [运行时]\">Error 函数 [运行时]</link>"
@@ -15910,7 +15204,6 @@ msgstr "<link href=\"text/sbasic/shared/03050300.xhp\" name=\"Error 函数 [运
msgctxt ""
"03050300.xhp\n"
"par_id3148663\n"
-"2\n"
"help.text"
msgid "Returns the error message that corresponds to a given error code."
msgstr "返回给定的错误代码对应的错误消息。"
@@ -15919,7 +15212,6 @@ msgstr "返回给定的错误代码对应的错误消息。"
msgctxt ""
"03050300.xhp\n"
"hd_id3153379\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -15928,7 +15220,6 @@ msgstr "语法:"
msgctxt ""
"03050300.xhp\n"
"par_id3154366\n"
-"4\n"
"help.text"
msgid "Error (Expression)"
msgstr "Error (Expression)"
@@ -15937,7 +15228,6 @@ msgstr "Error (Expression)"
msgctxt ""
"03050300.xhp\n"
"hd_id3145173\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "返回值:"
@@ -15946,7 +15236,6 @@ msgstr "返回值:"
msgctxt ""
"03050300.xhp\n"
"par_id3154125\n"
-"6\n"
"help.text"
msgid "String"
msgstr "字符串"
@@ -15955,7 +15244,6 @@ msgstr "字符串"
msgctxt ""
"03050300.xhp\n"
"hd_id3150869\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -15964,7 +15252,6 @@ msgstr "参数:"
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>Expression:</emph>任何包含要返回的错误消息的错误代码的数字表达式。"
@@ -15973,7 +15260,6 @@ msgstr "<emph>Expression:</emph>任何包含要返回的错误消息的错误
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 "如果没有传送任何参数,Error 函数将返回程序执行过程中最近出现的错误消息。"
@@ -16110,7 +15396,6 @@ msgstr "逻辑运算符"
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=\"逻辑运算符\">逻辑运算符</link>"
@@ -16119,7 +15404,6 @@ msgstr "<link href=\"text/sbasic/shared/03060000.xhp\" name=\"逻辑运算符\">
msgctxt ""
"03060000.xhp\n"
"par_id3153379\n"
-"2\n"
"help.text"
msgid "The following logical operators are supported by $[officename] Basic."
msgstr "$[officename] Basic 支持以下逻辑运算符。"
@@ -16128,7 +15412,6 @@ msgstr "$[officename] Basic 支持以下逻辑运算符。"
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 "逻辑运算符可以对两个表达式或变量的内容进行合并(按位)。例如,可以利用逻辑运算符测试是否设置了特定位。"
@@ -16921,7 +16204,6 @@ msgstr "数学运算符"
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=\"数学运算符\">数学运算符</link>"
@@ -16930,7 +16212,6 @@ msgstr "<link href=\"text/sbasic/shared/03070000.xhp\" name=\"数学运算符\">
msgctxt ""
"03070000.xhp\n"
"par_id3145068\n"
-"2\n"
"help.text"
msgid "The following mathematical operators are supported in $[officename] Basic."
msgstr "$[officename] Basic 支持以下数学运算符。"
@@ -16939,7 +16220,6 @@ msgstr "$[officename] Basic 支持以下数学运算符。"
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 "本章概要介绍可能会在程序中用到的所有数学运算符。"
@@ -17516,7 +16796,6 @@ msgstr "数字函数"
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=\"数字函数\">数字函数</link>"
@@ -17525,7 +16804,6 @@ msgstr "<link href=\"text/sbasic/shared/03080000.xhp\" name=\"数字函数\">数
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 "下面介绍用于执行计算的数字函数。数学运算符和布尔运算符将在单独的一节中介绍。函数与运算符不同,函数通过传送自变量来返回结果,而运算符是通过组合两个数字表达式来返回结果的。"
@@ -17542,7 +16820,6 @@ msgstr "三角函数"
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=\"三角函数\">三角函数</link>"
@@ -17551,7 +16828,6 @@ msgstr "<link href=\"text/sbasic/shared/03080100.xhp\" name=\"三角函数\">三
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 "$[officename] Basic 支持以下三角函数。"
@@ -18304,7 +17580,6 @@ msgstr "指数函数和对数函数"
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=\"指数函数和对数函数\">指数函数和对数函数</link>"
@@ -18313,7 +17588,6 @@ msgstr "<link href=\"text/sbasic/shared/03080200.xhp\" name=\"指数函数和对
msgctxt ""
"03080200.xhp\n"
"par_id3148550\n"
-"2\n"
"help.text"
msgid "$[officename] Basic supports the following exponential and logarithmic functions."
msgstr "$[officename] Basic 支持以下指数函数和对数函数。"
@@ -18554,7 +17828,6 @@ msgstr "生成随机数"
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=\"生成随机数\">生成随机数</link>"
@@ -18563,7 +17836,6 @@ msgstr "<link href=\"text/sbasic/shared/03080300.xhp\" name=\"生成随机数\">
msgctxt ""
"03080300.xhp\n"
"par_id3154347\n"
-"2\n"
"help.text"
msgid "The following statements and functions generate random numbers."
msgstr "以下语句和函数用于生成随机数。"
@@ -18812,7 +18084,6 @@ msgstr "计算平方根"
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=\"计算平方根\">计算平方根</link>"
@@ -18821,7 +18092,6 @@ msgstr "<link href=\"text/sbasic/shared/03080400.xhp\" name=\"计算平方根\">
msgctxt ""
"03080400.xhp\n"
"par_id3159414\n"
-"2\n"
"help.text"
msgid "Use this function to calculate square roots."
msgstr "此函数用于计算平方根。"
@@ -18934,7 +18204,6 @@ msgstr "转换为整数"
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=\"转换为整数\">转换为整数</link>"
@@ -18943,7 +18212,6 @@ msgstr "<link href=\"text/sbasic/shared/03080500.xhp\" name=\"转换为整数\">
msgctxt ""
"03080500.xhp\n"
"par_id3156152\n"
-"2\n"
"help.text"
msgid "The following functions round values to integers."
msgstr "以下函数用于将数值转换为整数。"
@@ -19184,7 +18452,6 @@ msgstr "绝对值"
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=\"绝对值\">绝对值</link>"
@@ -19193,7 +18460,6 @@ msgstr "<link href=\"text/sbasic/shared/03080600.xhp\" name=\"绝对值\">绝对
msgctxt ""
"03080600.xhp\n"
"par_id3150771\n"
-"2\n"
"help.text"
msgid "This function returns absolute values."
msgstr "此函数返回绝对值。"
@@ -19330,7 +18596,6 @@ msgstr "表达式符号"
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=\"表达式符号\">表达式符号</link>"
@@ -19339,7 +18604,6 @@ msgstr "<link href=\"text/sbasic/shared/03080700.xhp\" name=\"表达式符号\">
msgctxt ""
"03080700.xhp\n"
"par_id3148668\n"
-"2\n"
"help.text"
msgid "This function returns the algebraic sign of a numeric expression."
msgstr "此函数返回数字表达式的代数符号。"
@@ -19524,7 +18788,6 @@ msgstr "转换数字"
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=\"转换数字\">转换数字</link>"
@@ -19533,7 +18796,6 @@ msgstr "<link href=\"text/sbasic/shared/03080800.xhp\" name=\"转换数字\">转
msgctxt ""
"03080800.xhp\n"
"par_id3154760\n"
-"2\n"
"help.text"
msgid "The following functions convert numbers from one number format to another."
msgstr "以下函数用于转换数字的格式。"
@@ -19750,7 +19012,6 @@ msgstr "控制程序的执行"
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=\"控制程序的执行\">控制程序的执行</link>"
@@ -19759,7 +19020,6 @@ msgstr "<link href=\"text/sbasic/shared/03090000.xhp\" name=\"控制程序的执
msgctxt ""
"03090000.xhp\n"
"par_id3143268\n"
-"2\n"
"help.text"
msgid "The following statements control the execution of a program."
msgstr "以下语句用于控制程序的执行。"
@@ -19768,7 +19028,6 @@ msgstr "以下语句用于控制程序的执行。"
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 "程序通常是按照从第一行代码到最后一行代码的顺序执行。但是,也可以根据特定的条件仅执行程序中的某些过程,或重复执行某个子过程或函数中的部分程序。您可以使用循环来重复执行程序中的不同部分,直到满足某一条件为止。这些控制语句分为条件语句、循环语句和跳转语句。"
@@ -19785,7 +19044,6 @@ msgstr "条件语句"
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=\"条件语句\">条件语句</link>"
@@ -19794,7 +19052,6 @@ msgstr "<link href=\"text/sbasic/shared/03090100.xhp\" name=\"条件语句\">条
msgctxt ""
"03090100.xhp\n"
"par_id3153750\n"
-"2\n"
"help.text"
msgid "The following statements are based on conditions."
msgstr "以下语句基于各种条件。"
@@ -20075,7 +19332,6 @@ msgstr "<bookmark_value>IIf 语句</bookmark_value>"
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 语句 [运行时]\">IIf 语句 [运行时]</link>"
@@ -20084,7 +19340,6 @@ msgstr "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"IIf 语句 [运行
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 "返回两个可能的函数结果之一,具体是哪一个结果取决于对表达式进行求值后得到的逻辑值。"
@@ -20093,7 +19348,6 @@ msgstr "返回两个可能的函数结果之一,具体是哪一个结果取决
msgctxt ""
"03090103.xhp\n"
"hd_id3159413\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -20102,7 +19356,6 @@ msgstr "语法:"
msgctxt ""
"03090103.xhp\n"
"par_id3147560\n"
-"4\n"
"help.text"
msgid "IIf (Expression, ExpressionTrue, ExpressionFalse)"
msgstr "IIf (Expression, ExpressionTrue, ExpressionFalse)"
@@ -20111,7 +19364,6 @@ msgstr "IIf (Expression, ExpressionTrue, ExpressionFalse)"
msgctxt ""
"03090103.xhp\n"
"hd_id3150541\n"
-"5\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -20120,7 +19372,6 @@ msgstr "参数:"
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>Expression:</emph>要求值的任意表达式。如果对表达式求值的结果为 <emph>True</emph>,函数将返回 ExpressionTrue 的结果,否则将返回 ExpressionFalse 的结果。"
@@ -20129,7 +19380,6 @@ msgstr "<emph>Expression:</emph>要求值的任意表达式。如果对表达
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>ExpressionTrue、ExpressionFalse:</emph>任意表达式,其中的一个将作为函数结果返回,具体是哪一个取决于逻辑求值的结果。"
@@ -20146,7 +19396,6 @@ msgstr "循环"
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=\"循环\">循环</link>"
@@ -20155,7 +19404,6 @@ msgstr "<link href=\"text/sbasic/shared/03090200.xhp\" name=\"循环\">循环</l
msgctxt ""
"03090200.xhp\n"
"par_id3147226\n"
-"2\n"
"help.text"
msgid "The following statements execute loops."
msgstr "以下语句用于执行循环。"
@@ -20844,7 +20092,6 @@ msgstr "<bookmark_value>While;While...Wend 循环</bookmark_value>"
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 语句 [运行时]\">While...Wend 语句 [运行时]</link>"
@@ -20853,7 +20100,6 @@ msgstr "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend 语
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 "当遇到 While 语句时,程序将对条件进行测试。如果条件为 False,则直接执行 Wend 语句之后的程序。如果条件为 True,则继续执行循环直至程序到达 Wend 语句,然后跳回 <emph>While</emph> 语句。如果条件仍为 True,则再次执行循环。"
@@ -20862,7 +20108,6 @@ msgstr "当遇到 While 语句时,程序将对条件进行测试。如果条
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 "与 <link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop\">Do...Loop</link> 语句不同,不能使用 <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">退出</link> 取消 <emph>While...Wend</emph> 循环。切勿使用 <link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo\">GoTo</link> 退出 While...Wend 循环,这将导致运行时错误。"
@@ -20871,7 +20116,6 @@ msgstr "与 <link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop\">Do
msgctxt ""
"03090203.xhp\n"
"par_id3145172\n"
-"4\n"
"help.text"
msgid "A Do...Loop is more flexible than a While...Wend."
msgstr "Do...Loop 语句比 While...Wend 语句更为灵活。"
@@ -20880,7 +20124,6 @@ msgstr "Do...Loop 语句比 While...Wend 语句更为灵活。"
msgctxt ""
"03090203.xhp\n"
"hd_id3155133\n"
-"5\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -20889,7 +20132,6 @@ msgstr "语法:"
msgctxt ""
"03090203.xhp\n"
"par_id3147288\n"
-"6\n"
"help.text"
msgid "While Condition [Statement] Wend"
msgstr "While Condition [Statement] Wend"
@@ -20898,7 +20140,6 @@ msgstr "While Condition [Statement] Wend"
msgctxt ""
"03090203.xhp\n"
"hd_id3153139\n"
-"7\n"
"help.text"
msgid "Example:"
msgstr "示例:"
@@ -20907,7 +20148,6 @@ msgstr "示例:"
msgctxt ""
"03090203.xhp\n"
"par_id3159153\n"
-"8\n"
"help.text"
msgid "Sub ExampleWhileWend"
msgstr "Sub ExampleWhileWend"
@@ -20916,7 +20156,6 @@ msgstr "Sub ExampleWhileWend"
msgctxt ""
"03090203.xhp\n"
"par_id3151114\n"
-"9\n"
"help.text"
msgid "Dim stext As String"
msgstr "Dim stext As String"
@@ -20925,7 +20164,6 @@ msgstr "Dim stext As String"
msgctxt ""
"03090203.xhp\n"
"par_id3153143\n"
-"10\n"
"help.text"
msgid "Dim iRun As Integer"
msgstr "Dim iRun As Integer"
@@ -20934,7 +20172,6 @@ msgstr "Dim iRun As Integer"
msgctxt ""
"03090203.xhp\n"
"par_id3155306\n"
-"11\n"
"help.text"
msgid "sText =\"This Is a short text\""
msgstr "sText =\"短文本示例\""
@@ -20943,7 +20180,6 @@ msgstr "sText =\"短文本示例\""
msgctxt ""
"03090203.xhp\n"
"par_id3154011\n"
-"12\n"
"help.text"
msgid "iRun = 1"
msgstr "iRun = 1"
@@ -20952,7 +20188,6 @@ msgstr "iRun = 1"
msgctxt ""
"03090203.xhp\n"
"par_id3147215\n"
-"13\n"
"help.text"
msgid "While iRun < Len(sText)"
msgstr "While iRun < Len(sText)"
@@ -20961,7 +20196,6 @@ msgstr "While iRun < Len(sText)"
msgctxt ""
"03090203.xhp\n"
"par_id3147427\n"
-"14\n"
"help.text"
msgid "If Mid(sText,iRun,1 )<> \" \" Then Mid( sText ,iRun, 1, Chr( 1 + Asc( Mid(sText,iRun,1 )) )"
msgstr "If Mid(sText,iRun,1 )<> \" \" Then Mid( sText ,iRun, 1, Chr( 1 + Asc( Mid(sText,iRun,1 )) )"
@@ -20970,7 +20204,6 @@ msgstr "If Mid(sText,iRun,1 )<> \" \" Then Mid( sText ,iRun, 1, Chr( 1 + Asc( Mi
msgctxt ""
"03090203.xhp\n"
"par_id3149665\n"
-"15\n"
"help.text"
msgid "iRun = iRun + 1"
msgstr "iRun = iRun + 1"
@@ -20979,7 +20212,6 @@ msgstr "iRun = iRun + 1"
msgctxt ""
"03090203.xhp\n"
"par_id3152939\n"
-"16\n"
"help.text"
msgid "Wend"
msgstr "Wend"
@@ -20988,7 +20220,6 @@ msgstr "Wend"
msgctxt ""
"03090203.xhp\n"
"par_id3153189\n"
-"17\n"
"help.text"
msgid "MsgBox sText,0,\"Text encoded\""
msgstr "MsgBox sText,0,\"Text encoded\""
@@ -20997,7 +20228,6 @@ msgstr "MsgBox sText,0,\"Text encoded\""
msgctxt ""
"03090203.xhp\n"
"par_id3145251\n"
-"18\n"
"help.text"
msgid "End Sub"
msgstr "End Sub"
@@ -21014,7 +20244,6 @@ msgstr "跳转"
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=\"跳转\">跳转</link>"
@@ -21023,7 +20252,6 @@ msgstr "<link href=\"text/sbasic/shared/03090300.xhp\" name=\"跳转\">跳转</l
msgctxt ""
"03090300.xhp\n"
"par_id3148983\n"
-"2\n"
"help.text"
msgid "The following statements execute jumps."
msgstr "以下语句用于执行跳转。"
@@ -21248,7 +20476,6 @@ msgstr "<bookmark_value>GoTo 语句</bookmark_value>"
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 语句 [运行时]\">GoTo 语句 [运行时]</link>"
@@ -21257,7 +20484,6 @@ msgstr "<link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo 语句 [运
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 "在子程序或函数中跳到某个标签指示的过程行处继续执行程序。"
@@ -21266,7 +20492,6 @@ msgstr "在子程序或函数中跳到某个标签指示的过程行处继续执
msgctxt ""
"03090302.xhp\n"
"hd_id3149656\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -21275,7 +20500,6 @@ msgstr "语法:"
msgctxt ""
"03090302.xhp\n"
"par_id3154367\n"
-"4\n"
"help.text"
msgid "see Parameters"
msgstr "请参阅“参数”部分"
@@ -21284,7 +20508,6 @@ msgstr "请参阅“参数”部分"
msgctxt ""
"03090302.xhp\n"
"hd_id3150870\n"
-"5\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -21293,7 +20516,6 @@ msgstr "参数:"
msgctxt ""
"03090302.xhp\n"
"par_id3156214\n"
-"6\n"
"help.text"
msgid "Sub/Function"
msgstr "Sub/Function"
@@ -21302,7 +20524,6 @@ msgstr "Sub/Function"
msgctxt ""
"03090302.xhp\n"
"par_id3156424\n"
-"7\n"
"help.text"
msgid "statement block"
msgstr "语句块"
@@ -21311,7 +20532,6 @@ msgstr "语句块"
msgctxt ""
"03090302.xhp\n"
"par_id3154685\n"
-"8\n"
"help.text"
msgid "Label1"
msgstr "Label1"
@@ -21320,7 +20540,6 @@ msgstr "Label1"
msgctxt ""
"03090302.xhp\n"
"par_id3145786\n"
-"9\n"
"help.text"
msgid "<emph>Label2:</emph>"
msgstr "<emph>Label2:</emph>"
@@ -21329,7 +20548,6 @@ msgstr "<emph>Label2:</emph>"
msgctxt ""
"03090302.xhp\n"
"par_id3161832\n"
-"10\n"
"help.text"
msgid "statement block"
msgstr "语句块"
@@ -21338,7 +20556,6 @@ msgstr "语句块"
msgctxt ""
"03090302.xhp\n"
"par_id3146120\n"
-"11\n"
"help.text"
msgid "Exit Sub"
msgstr "Exit Sub"
@@ -21347,7 +20564,6 @@ msgstr "Exit Sub"
msgctxt ""
"03090302.xhp\n"
"par_id3150010\n"
-"12\n"
"help.text"
msgid "<emph>Label1:</emph>"
msgstr "<emph>Label1:</emph>"
@@ -21356,7 +20572,6 @@ msgstr "<emph>Label1:</emph>"
msgctxt ""
"03090302.xhp\n"
"par_id3152462\n"
-"13\n"
"help.text"
msgid "statement block"
msgstr "语句块"
@@ -21365,7 +20580,6 @@ msgstr "语句块"
msgctxt ""
"03090302.xhp\n"
"par_id3149664\n"
-"14\n"
"help.text"
msgid "GoTo Label2"
msgstr "GoTo Label2"
@@ -21374,7 +20588,6 @@ msgstr "GoTo Label2"
msgctxt ""
"03090302.xhp\n"
"par_id3152886\n"
-"15\n"
"help.text"
msgid "End Sub/Function"
msgstr "End Sub/Function"
@@ -21383,7 +20596,6 @@ msgstr "End Sub/Function"
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 "GoTo 语句可用于指示 $[officename] Basic 跳到过程中的其他位置继续执行程序。必须使用标签来指定跳转位置。要设置一个标签,请指定一个名称并以冒号 (“:”) 结尾。"
@@ -21392,7 +20604,6 @@ msgstr "GoTo 语句可用于指示 $[officename] Basic 跳到过程中的其他
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 "GoTo 语句不能用于跳出子程序或函数。"
@@ -21401,7 +20612,6 @@ msgstr "GoTo 语句不能用于跳出子程序或函数。"
msgctxt ""
"03090302.xhp\n"
"hd_id3154731\n"
-"19\n"
"help.text"
msgid "Example:"
msgstr "示例:"
@@ -21554,7 +20764,6 @@ msgstr "其他语句"
msgctxt ""
"03090400.xhp\n"
"hd_id3145316\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090400.xhp\" name=\"Further Statements\">Further Statements</link>"
msgstr "<link href=\"text/sbasic/shared/03090400.xhp\" name=\"其他语句\">其他语句</link>"
@@ -21563,7 +20772,6 @@ msgstr "<link href=\"text/sbasic/shared/03090400.xhp\" name=\"其他语句\">其
msgctxt ""
"03090400.xhp\n"
"par_id3154923\n"
-"2\n"
"help.text"
msgid "Statements that do not belong to any of the other runtime categories are described here."
msgstr "下面介绍不属于任何其他运行时类别的语句。"
@@ -21588,7 +20796,6 @@ msgstr "<bookmark_value>Call 语句</bookmark_value>"
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 语句 [运行时]\">Call 语句 [运行时]</link>"
@@ -21597,7 +20804,6 @@ msgstr "<link href=\"text/sbasic/shared/03090401.xhp\" name=\"Call 语句 [运
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 "将程序控制传递给子例程、函数或 DLL 过程。"
@@ -21606,7 +20812,6 @@ msgstr "将程序控制传递给子例程、函数或 DLL 过程。"
msgctxt ""
"03090401.xhp\n"
"hd_id3153345\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -21615,7 +20820,6 @@ msgstr "语法:"
msgctxt ""
"03090401.xhp\n"
"par_id3150984\n"
-"4\n"
"help.text"
msgid "[Call] Name [Parameter]"
msgstr "[Call] Name [Parameter]"
@@ -21624,7 +20828,6 @@ msgstr "[Call] Name [Parameter]"
msgctxt ""
"03090401.xhp\n"
"hd_id3150771\n"
-"5\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -21633,7 +20836,6 @@ msgstr "参数:"
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>Name:</emph>要调用的子例程、函数或 DLL 过程的名称。"
@@ -21642,7 +20844,6 @@ msgstr "<emph>Name:</emph>要调用的子例程、函数或 DLL 过程的名
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>Parameter:</emph>传送给过程的参数,其类型和数目取决于所执行的例程。"
@@ -21651,7 +20852,6 @@ msgstr "<emph>Parameter:</emph>传送给过程的参数,其类型和数目
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 "调用过程时可以选择一个关键字。当将函数作为表达式执行时,语句中的参数前后必须加上括号。如果调用了 DLL,必须先在<emph>声明语句</emph>中指定该 DLL。"
@@ -21660,7 +20860,6 @@ msgstr "调用过程时可以选择一个关键字。当将函数作为表达式
msgctxt ""
"03090401.xhp\n"
"hd_id3125865\n"
-"9\n"
"help.text"
msgid "Example:"
msgstr "示例:"
@@ -22693,7 +21892,6 @@ msgstr "<bookmark_value>With;语句</bookmark_value>"
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 语句 [运行时]\">With 语句 [运行时]</link>"
@@ -22702,7 +21900,6 @@ msgstr "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With 语句 [运
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 "将某个对象设置为默认对象。除非声明其他对象名称,否则在执行到 End With 语句之前,所有属性和方法都是针对默认对象的。"
@@ -22711,7 +21908,6 @@ msgstr "将某个对象设置为默认对象。除非声明其他对象名称,
msgctxt ""
"03090411.xhp\n"
"hd_id3156153\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -22720,7 +21916,6 @@ msgstr "语法:"
msgctxt ""
"03090411.xhp\n"
"par_id3145609\n"
-"4\n"
"help.text"
msgid "With Object Statement block End With"
msgstr "With Object Statement block End With"
@@ -22729,7 +21924,6 @@ msgstr "With Object Statement block End With"
msgctxt ""
"03090411.xhp\n"
"hd_id3154924\n"
-"5\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -22738,7 +21932,6 @@ msgstr "参数:"
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 "当一个对象具有多个属性或方法时,可以使用 <emph>With</emph> 和 <emph>End With</emph>。"
@@ -22923,7 +22116,6 @@ msgstr "变量"
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=\"变量\">变量</link>"
@@ -22932,7 +22124,6 @@ msgstr "<link href=\"text/sbasic/shared/03100000.xhp\" name=\"变量\">变量</l
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 "以下语句和函数将用到变量。您可以使用这些函数来声明或定义变量,转换变量类型,或者确定变量类型。"
@@ -25197,7 +24388,6 @@ msgstr "<bookmark_value>DefObj 语句</bookmark_value>"
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 语句 [运行时]\">DefObj 语句 [运行时]</link>"
@@ -25206,7 +24396,6 @@ msgstr "<link href=\"text/sbasic/shared/03101700.xhp\" name=\"DefObj 语句 [运
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 "如果未指定类型声明字符或关键字,将根据字母范围设置默认的变量类型。"
@@ -25215,7 +24404,6 @@ msgstr "如果未指定类型声明字符或关键字,将根据字母范围设
msgctxt ""
"03101700.xhp\n"
"hd_id3150504\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -25224,7 +24412,6 @@ msgstr "语法:"
msgctxt ""
"03101700.xhp\n"
"par_id3147530\n"
-"4\n"
"help.text"
msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
@@ -25233,7 +24420,6 @@ msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
msgctxt ""
"03101700.xhp\n"
"hd_id3153896\n"
-"5\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -25242,7 +24428,6 @@ msgstr "参数:"
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>Characterrange:</emph>用于指定变量范围的字母,将为这些变量设置默认的数据类型。"
@@ -25251,7 +24436,6 @@ msgstr "<emph>Characterrange:</emph>用于指定变量范围的字母,将为
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>用于定义默认变量类型的关键字:"
@@ -25260,7 +24444,6 @@ msgstr "<emph>xxx:</emph>用于定义默认变量类型的关键字:"
msgctxt ""
"03101700.xhp\n"
"par_id3148798\n"
-"8\n"
"help.text"
msgid "<emph>Keyword: </emph>Default variable type"
msgstr "<emph>Keyword:</emph>默认变量类型"
@@ -25269,7 +24452,6 @@ msgstr "<emph>Keyword:</emph>默认变量类型"
msgctxt ""
"03101700.xhp\n"
"par_id3150769\n"
-"9\n"
"help.text"
msgid "<emph>DefObj:</emph> Object"
msgstr "<emph>DefObj:</emph>对象"
@@ -25278,7 +24460,6 @@ msgstr "<emph>DefObj:</emph>对象"
msgctxt ""
"03101700.xhp\n"
"hd_id3156212\n"
-"10\n"
"help.text"
msgid "Example:"
msgstr "示例:"
@@ -25287,7 +24468,6 @@ msgstr "示例:"
msgctxt ""
"03101700.xhp\n"
"par_id3153969\n"
-"12\n"
"help.text"
msgid "REM Prefix definitions for variable types:"
msgstr "REM 变量类型的前缀定义:"
@@ -25296,7 +24476,6 @@ msgstr "REM 变量类型的前缀定义:"
msgctxt ""
"03101700.xhp\n"
"par_id3156424\n"
-"13\n"
"help.text"
msgid "DefBool b"
msgstr "DefBool b"
@@ -25305,7 +24484,6 @@ msgstr "DefBool b"
msgctxt ""
"03101700.xhp\n"
"par_id3159254\n"
-"14\n"
"help.text"
msgid "DefDate t"
msgstr "DefDate t"
@@ -25314,7 +24492,6 @@ msgstr "DefDate t"
msgctxt ""
"03101700.xhp\n"
"par_id3150440\n"
-"15\n"
"help.text"
msgid "DefDbL d"
msgstr "DefDbL d"
@@ -25323,7 +24500,6 @@ msgstr "DefDbL d"
msgctxt ""
"03101700.xhp\n"
"par_id3161832\n"
-"16\n"
"help.text"
msgid "DefInt i"
msgstr "DefInt i"
@@ -25332,7 +24508,6 @@ msgstr "DefInt i"
msgctxt ""
"03101700.xhp\n"
"par_id3145365\n"
-"17\n"
"help.text"
msgid "DefLng l"
msgstr "DefLng l"
@@ -25341,7 +24516,6 @@ msgstr "DefLng l"
msgctxt ""
"03101700.xhp\n"
"par_id3149481\n"
-"18\n"
"help.text"
msgid "DefObj o"
msgstr "DefObj o"
@@ -25350,7 +24524,6 @@ msgstr "DefObj o"
msgctxt ""
"03101700.xhp\n"
"par_id3152886\n"
-"19\n"
"help.text"
msgid "DefVar v"
msgstr "DefVar v"
@@ -26615,7 +25788,6 @@ msgstr "<bookmark_value>IsObject 函数</bookmark_value>"
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 函数 [运行时]\">IsObject 函数 [运行时]</link>"
@@ -26624,7 +25796,6 @@ msgstr "<link href=\"text/sbasic/shared/03102800.xhp\" name=\"IsObject 函数 [
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 "测试对象变量是否为 OLE 对象。 如果变量是一个 OLE 对象,函数返回 True 值,否则返回 False 值。"
@@ -26633,7 +25804,6 @@ msgstr "测试对象变量是否为 OLE 对象。 如果变量是一个 OLE 对
msgctxt ""
"03102800.xhp\n"
"hd_id3149234\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -26642,7 +25812,6 @@ msgstr "语法:"
msgctxt ""
"03102800.xhp\n"
"par_id3154285\n"
-"4\n"
"help.text"
msgid "IsObject (ObjectVar)"
msgstr "IsObject (ObjectVar)"
@@ -26651,7 +25820,6 @@ msgstr "IsObject (ObjectVar)"
msgctxt ""
"03102800.xhp\n"
"hd_id3148685\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "返回值:"
@@ -26660,7 +25828,6 @@ msgstr "返回值:"
msgctxt ""
"03102800.xhp\n"
"par_id3156024\n"
-"6\n"
"help.text"
msgid "Bool"
msgstr "布尔"
@@ -26669,7 +25836,6 @@ msgstr "布尔"
msgctxt ""
"03102800.xhp\n"
"hd_id3148947\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -26678,7 +25844,6 @@ msgstr "参数:"
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>ObjectVar:</emph>要测试的任意变量。如果对象变量含有 OLE 对象,函数将返回 True。"
@@ -27791,7 +26956,6 @@ msgstr "<bookmark_value>FindObject 函数</bookmark_value>"
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 函数 [运行时]\">FindObject 函数 [运行时]</link>"
@@ -27800,7 +26964,6 @@ msgstr "<link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject 函数
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 "使用对象名称作为字符串参数运行时要定位的对象。"
@@ -27809,7 +26972,6 @@ msgstr "使用对象名称作为字符串参数运行时要定位的对象。"
msgctxt ""
"03103800.xhp\n"
"par_id3150669\n"
-"3\n"
"help.text"
msgid "For example, the following command:"
msgstr "例如,以下命令:"
@@ -27818,7 +26980,6 @@ msgstr "例如,以下命令:"
msgctxt ""
"03103800.xhp\n"
"par_id3148473\n"
-"4\n"
"help.text"
msgid "MyObj.Prop1.Command = 5"
msgstr "MyObj.Prop1.Command = 5"
@@ -27827,7 +26988,6 @@ msgstr "MyObj.Prop1.Command = 5"
msgctxt ""
"03103800.xhp\n"
"par_id3156023\n"
-"5\n"
"help.text"
msgid "corresponds to the command block:"
msgstr "与以下命令块相对应:"
@@ -27836,7 +26996,6 @@ msgstr "与以下命令块相对应:"
msgctxt ""
"03103800.xhp\n"
"par_id3153896\n"
-"6\n"
"help.text"
msgid "Dim ObjVar as Object"
msgstr "Dim ObjVar as Object"
@@ -27845,7 +27004,6 @@ msgstr "Dim ObjVar as Object"
msgctxt ""
"03103800.xhp\n"
"par_id3154760\n"
-"7\n"
"help.text"
msgid "Dim ObjProp as Object"
msgstr "Dim ObjProp as Object"
@@ -27854,7 +27012,6 @@ msgstr "Dim ObjProp as Object"
msgctxt ""
"03103800.xhp\n"
"par_id3145069\n"
-"8\n"
"help.text"
msgid "ObjName As String = \"MyObj\""
msgstr "ObjName As String = \"MyObj\""
@@ -27863,7 +27020,6 @@ msgstr "ObjName As String = \"MyObj\""
msgctxt ""
"03103800.xhp\n"
"par_id3154939\n"
-"9\n"
"help.text"
msgid "ObjVar = FindObject( ObjName As String )"
msgstr "ObjVar = FindObject( ObjName As String )"
@@ -27872,7 +27028,6 @@ msgstr "ObjVar = FindObject( ObjName As String )"
msgctxt ""
"03103800.xhp\n"
"par_id3150793\n"
-"10\n"
"help.text"
msgid "PropName As String = \"Prop1\""
msgstr "PropName As String = \"Prop1\""
@@ -27881,7 +27036,6 @@ msgstr "PropName As String = \"Prop1\""
msgctxt ""
"03103800.xhp\n"
"par_id3154141\n"
-"11\n"
"help.text"
msgid "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
msgstr "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
@@ -27890,7 +27044,6 @@ msgstr "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
msgctxt ""
"03103800.xhp\n"
"par_id3156424\n"
-"12\n"
"help.text"
msgid "ObjProp.Command = 5"
msgstr "ObjProp.Command = 5"
@@ -27899,7 +27052,6 @@ msgstr "ObjProp.Command = 5"
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 "这样就可以在运行时动态建立名称。例如:"
@@ -27908,7 +27060,6 @@ msgstr "这样就可以在运行时动态建立名称。例如:"
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\" 到 \"TextEdit5\",创建五个控件名称。"
@@ -27917,7 +27068,6 @@ msgstr "在一个循环中使用 \"TextEdit1\" 到 \"TextEdit5\",创建五个
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 "请参阅:<link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject\">FindPropertyObject</link>"
@@ -27926,7 +27076,6 @@ msgstr "请参阅:<link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPr
msgctxt ""
"03103800.xhp\n"
"hd_id3150868\n"
-"16\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -27935,7 +27084,6 @@ msgstr "语法:"
msgctxt ""
"03103800.xhp\n"
"par_id3151042\n"
-"17\n"
"help.text"
msgid "FindObject( ObjName As String )"
msgstr "FindObject( ObjName As String )"
@@ -27944,7 +27092,6 @@ msgstr "FindObject( ObjName As String )"
msgctxt ""
"03103800.xhp\n"
"hd_id3159254\n"
-"18\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -27953,7 +27100,6 @@ msgstr "参数:"
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>ObjName:</emph>一个字符串,用于指定运行时要定位的对象名称。"
@@ -27978,7 +27124,6 @@ msgstr "<bookmark_value>FindPropertyObject 函数</bookmark_value>"
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 函数 [运行时]\">FindPropertyObject 函数 [运行时]</link>"
@@ -27987,7 +27132,6 @@ msgstr "<link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject
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 "使用对象名称作为字符串参数启动运行时要定位的对象。"
@@ -27996,7 +27140,6 @@ msgstr "使用对象名称作为字符串参数启动运行时要定位的对象
msgctxt ""
"03103900.xhp\n"
"par_id3147573\n"
-"3\n"
"help.text"
msgid "For instance, the command:"
msgstr "例如,命令:"
@@ -28005,7 +27148,6 @@ msgstr "例如,命令:"
msgctxt ""
"03103900.xhp\n"
"par_id3145610\n"
-"4\n"
"help.text"
msgid "MyObj.Prop1.Command = 5"
msgstr "MyObj.Prop1.Command = 5"
@@ -28014,7 +27156,6 @@ msgstr "MyObj.Prop1.Command = 5"
msgctxt ""
"03103900.xhp\n"
"par_id3147265\n"
-"5\n"
"help.text"
msgid "corresponds to the following command block:"
msgstr "与以下命令块相对应:"
@@ -28023,7 +27164,6 @@ msgstr "与以下命令块相对应:"
msgctxt ""
"03103900.xhp\n"
"par_id3153896\n"
-"6\n"
"help.text"
msgid "Dim ObjVar as Object"
msgstr "Dim ObjVar as Object"
@@ -28032,7 +27172,6 @@ msgstr "Dim ObjVar as Object"
msgctxt ""
"03103900.xhp\n"
"par_id3148664\n"
-"7\n"
"help.text"
msgid "Dim ObjProp as Object"
msgstr "Dim ObjProp as Object"
@@ -28041,7 +27180,6 @@ msgstr "Dim ObjProp as Object"
msgctxt ""
"03103900.xhp\n"
"par_id3150792\n"
-"8\n"
"help.text"
msgid "ObjName As String = \"MyObj\""
msgstr "ObjName As String = \"MyObj\""
@@ -28050,7 +27188,6 @@ msgstr "ObjName As String = \"MyObj\""
msgctxt ""
"03103900.xhp\n"
"par_id3154365\n"
-"9\n"
"help.text"
msgid "ObjVar = FindObject( ObjName As String )"
msgstr "ObjVar = FindObject( ObjName As String )"
@@ -28059,7 +27196,6 @@ msgstr "ObjVar = FindObject( ObjName As String )"
msgctxt ""
"03103900.xhp\n"
"par_id3148453\n"
-"10\n"
"help.text"
msgid "PropName As String = \"Prop1\""
msgstr "PropName As String = \"Prop1\""
@@ -28068,7 +27204,6 @@ msgstr "PropName As String = \"Prop1\""
msgctxt ""
"03103900.xhp\n"
"par_id3150449\n"
-"11\n"
"help.text"
msgid "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
msgstr "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
@@ -28077,7 +27212,6 @@ msgstr "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
msgctxt ""
"03103900.xhp\n"
"par_id3159152\n"
-"12\n"
"help.text"
msgid "ObjProp.Command = 5"
msgstr "ObjProp.Command = 5"
@@ -28086,7 +27220,6 @@ msgstr "ObjProp.Command = 5"
msgctxt ""
"03103900.xhp\n"
"par_id3156214\n"
-"13\n"
"help.text"
msgid "To dynamically create Names at run-time, use:"
msgstr "要在运行时动态创建名称,请使用:"
@@ -28095,7 +27228,6 @@ msgstr "要在运行时动态创建名称,请使用:"
msgctxt ""
"03103900.xhp\n"
"par_id3154686\n"
-"14\n"
"help.text"
msgid "\"TextEdit1\" to TextEdit5\" in a loop to create five names."
msgstr "循环中的“TextEdit1”到“TextEdit5”来创建五个名称。"
@@ -28104,7 +27236,6 @@ msgstr "循环中的“TextEdit1”到“TextEdit5”来创建五个名称。"
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 "请参阅:<link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject\">FindObject</link>"
@@ -28113,7 +27244,6 @@ msgstr "请参阅:<link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindOb
msgctxt ""
"03103900.xhp\n"
"hd_id3147287\n"
-"16\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -28122,7 +27252,6 @@ msgstr "语法:"
msgctxt ""
"03103900.xhp\n"
"par_id3149560\n"
-"17\n"
"help.text"
msgid "FindPropertyObject( ObjVar, PropName As String )"
msgstr "FindPropertyObject( ObjVar, PropName As String )"
@@ -28131,7 +27260,6 @@ msgstr "FindPropertyObject( ObjVar, PropName As String )"
msgctxt ""
"03103900.xhp\n"
"hd_id3150012\n"
-"18\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -28140,7 +27268,6 @@ msgstr "参数:"
msgctxt ""
"03103900.xhp\n"
"par_id3109839\n"
-"19\n"
"help.text"
msgid "<emph>ObjVar:</emph> Object variable that you want to dynamically define at run-time."
msgstr "<emph>ObjVar:</emph>要在运行时动态定义的对象变量。"
@@ -28149,7 +27276,6 @@ msgstr "<emph>ObjVar:</emph>要在运行时动态定义的对象变量。"
msgctxt ""
"03103900.xhp\n"
"par_id3153363\n"
-"20\n"
"help.text"
msgid "<emph>PropName:</emph> String that specifies the name of the property that you want to address at run-time."
msgstr "<emph>PropName:</emph>一个字符串,用于指定运行时要定位的属性名称。"
@@ -28174,7 +27300,6 @@ msgstr "<bookmark_value>IsMissing 函数</bookmark_value>"
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 函数 [运行时]\">IsMissing 函数 [运行时]</link>"
@@ -28183,7 +27308,6 @@ msgstr "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing 函数 [
msgctxt ""
"03104000.xhp\n"
"par_id3153825\n"
-"2\n"
"help.text"
msgid "Tests if a function is called with an optional parameter."
msgstr "测试调用函数时是否带有可选参数。"
@@ -28192,7 +27316,6 @@ msgstr "测试调用函数时是否带有可选参数。"
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 "请参阅:<link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional\">Optional</link>"
@@ -28201,7 +27324,6 @@ msgstr "请参阅:<link href=\"text/sbasic/shared/03104100.xhp\" name=\"Option
msgctxt ""
"03104000.xhp\n"
"hd_id3145611\n"
-"4\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -28210,7 +27332,6 @@ msgstr "语法:"
msgctxt ""
"03104000.xhp\n"
"par_id3154924\n"
-"5\n"
"help.text"
msgid "IsMissing( ArgumentName )"
msgstr "IsMissing( ArgumentName )"
@@ -28219,7 +27340,6 @@ msgstr "IsMissing( ArgumentName )"
msgctxt ""
"03104000.xhp\n"
"hd_id3145069\n"
-"6\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -28228,7 +27348,6 @@ msgstr "参数:"
msgctxt ""
"03104000.xhp\n"
"par_id3149457\n"
-"7\n"
"help.text"
msgid "<emph>ArgumentName:</emph> the name of an optional argument."
msgstr "<emph>ArgumentName:</emph>可选自变量的名称。"
@@ -28237,7 +27356,6 @@ msgstr "<emph>ArgumentName:</emph>可选自变量的名称。"
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 "如果通过 ArgumentName 来调用 IsMissing 函数,则返回 True。"
@@ -28246,7 +27364,6 @@ msgstr "如果通过 ArgumentName 来调用 IsMissing 函数,则返回 True。
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 "请参阅<link href=\"text/sbasic/guide/sample_code.xhp\" name=\"示例\">示例</link>。"
@@ -28271,7 +27388,6 @@ msgstr "<bookmark_value>Optional 函数</bookmark_value>"
msgctxt ""
"03104100.xhp\n"
"hd_id3149205\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional (in Function Statement) [Runtime]\">Optional (in Function Statement) [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional(在 Function 语句中)[运行时]\">Optional(在 Function 语句中)[运行时]</link>"
@@ -28280,7 +27396,6 @@ msgstr "<link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional(在 Fun
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 "用于定义传送给函数的可选参数。"
@@ -28289,7 +27404,6 @@ msgstr "用于定义传送给函数的可选参数。"
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 "请参阅:<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing\">IsMissing</link>"
@@ -28298,7 +27412,6 @@ msgstr "请参阅:<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMiss
msgctxt ""
"03104100.xhp\n"
"hd_id3153824\n"
-"4\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -28307,7 +27420,6 @@ msgstr "语法:"
msgctxt ""
"03104100.xhp\n"
"par_id3159157\n"
-"5\n"
"help.text"
msgid "Function MyFunction(Text1 As String, Optional Arg2, Optional Arg3)"
msgstr "Function MyFunction(Text1 As String, Optional Arg2, Optional Arg3)"
@@ -28316,7 +27428,6 @@ msgstr "Function MyFunction(Text1 As String, Optional Arg2, Optional Arg3)"
msgctxt ""
"03104100.xhp\n"
"hd_id3145610\n"
-"7\n"
"help.text"
msgid "Examples:"
msgstr "实例:"
@@ -28325,7 +27436,6 @@ msgstr "实例:"
msgctxt ""
"03104100.xhp\n"
"par_id3154347\n"
-"8\n"
"help.text"
msgid "Result = MyFunction(\"Here\", 1, \"There\") ' all arguments are passed."
msgstr "Result = MyFunction(\"Here\", 1, \"There\") ' all arguments are passed."
@@ -28334,7 +27444,6 @@ msgstr "Result = MyFunction(\"Here\", 1, \"There\") ' all arguments are passed
msgctxt ""
"03104100.xhp\n"
"par_id3146795\n"
-"9\n"
"help.text"
msgid "Result = MyFunction(\"Test\", ,1) ' second argument is missing."
msgstr "Result = MyFunction(\"Test\", ,1) ' second argument is missing."
@@ -28343,7 +27452,6 @@ msgstr "Result = MyFunction(\"Test\", ,1) ' second argument is missing."
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 "请参阅<link href=\"text/sbasic/guide/sample_code.xhp\" name=\"示例\">示例</link>。"
@@ -28368,7 +27476,6 @@ msgstr "<bookmark_value>Array 函数</bookmark_value>"
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 函数 [运行时]\">Array 函数 [运行时]</link>"
@@ -28377,7 +27484,6 @@ msgstr "<link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array 函数 [运
msgctxt ""
"03104200.xhp\n"
"par_id3155555\n"
-"2\n"
"help.text"
msgid "Returns the type Variant with a data field."
msgstr "通过数据字段返回变体类型的变量。"
@@ -28386,7 +27492,6 @@ msgstr "通过数据字段返回变体类型的变量。"
msgctxt ""
"03104200.xhp\n"
"hd_id3148538\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -28395,7 +27500,6 @@ msgstr "语法:"
msgctxt ""
"03104200.xhp\n"
"par_id3153126\n"
-"4\n"
"help.text"
msgid "Array ( Argument list)"
msgstr "Array ( Argument list)"
@@ -28404,7 +27508,6 @@ msgstr "Array ( Argument list)"
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 "另请参阅 <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray\">DimArray</link>"
@@ -28413,7 +27516,6 @@ msgstr "另请参阅 <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimAr
msgctxt ""
"03104200.xhp\n"
"hd_id3150669\n"
-"6\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -28422,7 +27524,6 @@ msgstr "参数:"
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>Argument list:</emph>含有任意个数的自变量的列表,自变量之间用逗号分隔。"
@@ -28431,7 +27532,6 @@ msgstr "<emph>Argument list:</emph>含有任意个数的自变量的列表,
msgctxt ""
"03104200.xhp\n"
"hd_id3156343\n"
-"8\n"
"help.text"
msgid "Example:"
msgstr "示例:"
@@ -28440,7 +27540,6 @@ msgstr "示例:"
msgctxt ""
"03104200.xhp\n"
"par_id3153897\n"
-"9\n"
"help.text"
msgid "Dim A As Variant"
msgstr "Dim A As Variant"
@@ -28449,7 +27548,6 @@ msgstr "Dim A As Variant"
msgctxt ""
"03104200.xhp\n"
"par_id3153525\n"
-"10\n"
"help.text"
msgid "A = Array(\"Fred\",\"Tom\",\"Bill\")"
msgstr "A = Array(\"Fred\",\"Tom\",\"Bill\")"
@@ -28458,7 +27556,6 @@ msgstr "A = Array(\"Fred\",\"Tom\",\"Bill\")"
msgctxt ""
"03104200.xhp\n"
"par_id3150792\n"
-"11\n"
"help.text"
msgid "Msgbox A(2)"
msgstr "Msgbox A(2)"
@@ -28483,7 +27580,6 @@ msgstr "<bookmark_value>DimArray 函数</bookmark_value>"
msgctxt ""
"03104300.xhp\n"
"hd_id3150616\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray Function [Runtime]\">DimArray Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray 函数 [运行时]\">DimArray 函数 [运行时]</link>"
@@ -28492,7 +27588,6 @@ msgstr "<link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray 函数 [
msgctxt ""
"03104300.xhp\n"
"par_id3153527\n"
-"2\n"
"help.text"
msgid "Returns a Variant array."
msgstr "返回一个变体类型的矩阵。"
@@ -28501,7 +27596,6 @@ msgstr "返回一个变体类型的矩阵。"
msgctxt ""
"03104300.xhp\n"
"hd_id3149762\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -28510,7 +27604,6 @@ msgstr "语法:"
msgctxt ""
"03104300.xhp\n"
"par_id3148473\n"
-"4\n"
"help.text"
msgid "DimArray ( Argument list)"
msgstr "DimArray ( Argument list)"
@@ -28519,7 +27612,6 @@ msgstr "DimArray ( Argument list)"
msgctxt ""
"03104300.xhp\n"
"par_id3154142\n"
-"5\n"
"help.text"
msgid "See also <link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array\">Array</link>"
msgstr "另请参阅 <link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array\">Array</link>"
@@ -28528,7 +27620,6 @@ msgstr "另请参阅 <link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array
msgctxt ""
"03104300.xhp\n"
"par_id3156023\n"
-"6\n"
"help.text"
msgid "If no parameters are passed, an empty array is created (like Dim A() that is the same as a sequence of length 0 in Uno). If parameters are specified, a dimension is created for each parameter."
msgstr "如果不传递参数,则创建一个空数组(如 Dim A(),它与 Uno 中的零长度序列相同)。如果指定了参数,则为每个参数创建大小。"
@@ -28537,7 +27628,6 @@ msgstr "如果不传递参数,则创建一个空数组(如 Dim A(),它与
msgctxt ""
"03104300.xhp\n"
"hd_id3154760\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -28546,7 +27636,6 @@ msgstr "参数:"
msgctxt ""
"03104300.xhp\n"
"par_id3159414\n"
-"8\n"
"help.text"
msgid "<emph>Argument list:</emph> A list of any number of arguments that are separated by commas."
msgstr "<emph>Argument list:</emph>含有任意个数的自变量的列表,自变量之间用逗号分隔。"
@@ -28555,7 +27644,6 @@ msgstr "<emph>Argument list:</emph>含有任意个数的自变量的列表,
msgctxt ""
"03104300.xhp\n"
"hd_id3150358\n"
-"9\n"
"help.text"
msgid "Example:"
msgstr "示例:"
@@ -28564,10 +27652,9 @@ msgstr "示例:"
msgctxt ""
"03104300.xhp\n"
"par_id3154939\n"
-"10\n"
"help.text"
-msgid "DimArray( 2, 2, 4 ) is the same as DIM a( 2, 2, 4 )"
-msgstr "DimArray( 2, 2, 4 ) 等同于 DIM a( 2, 2, 4 )"
+msgid "a = DimArray( 2, 2, 4 ) is the same as DIM a( 2, 2, 4 )"
+msgstr ""
#: 03104400.xhp
msgctxt ""
@@ -28589,7 +27676,6 @@ msgstr "<bookmark_value>HasUnoInterfaces 函数</bookmark_value>"
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 函数 [运行时]\">HasUnoInterfaces 函数 [运行时]</link>"
@@ -28598,7 +27684,6 @@ msgstr "<link href=\"text/sbasic/shared/03104400.xhp\" name=\"HasUnoInterfaces
msgctxt ""
"03104400.xhp\n"
"par_id3151262\n"
-"2\n"
"help.text"
msgid "Tests if a Basic Uno object supports certain Uno interfaces."
msgstr "测试 Basic Uno 对象是否支持某个 Uno 接口。"
@@ -28607,7 +27692,6 @@ msgstr "测试 Basic Uno 对象是否支持某个 Uno 接口。"
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 "如果支持<emph>所有</emph>状态的 Uno 接口,则返回 True,否则返回 False。"
@@ -28616,7 +27700,6 @@ msgstr "如果支持<emph>所有</emph>状态的 Uno 接口,则返回 True,
msgctxt ""
"03104400.xhp\n"
"hd_id3150040\n"
-"4\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -28625,7 +27708,6 @@ msgstr "语法:"
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, Uno-Interface-Name 1 [, Uno-Interface-Name 2, ...])"
@@ -28634,7 +27716,6 @@ msgstr "HasUnoInterfaces( oTest, Uno-Interface-Name 1 [, Uno-Interface-Name 2, .
msgctxt ""
"03104400.xhp\n"
"hd_id3153345\n"
-"6\n"
"help.text"
msgid "Return value:"
msgstr "返回值:"
@@ -28643,7 +27724,6 @@ msgstr "返回值:"
msgctxt ""
"03104400.xhp\n"
"par_id3148538\n"
-"7\n"
"help.text"
msgid "Bool"
msgstr "布尔"
@@ -28652,7 +27732,6 @@ msgstr "布尔"
msgctxt ""
"03104400.xhp\n"
"hd_id3159157\n"
-"8\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -28661,7 +27740,6 @@ msgstr "参数:"
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>要测试的 Basic Uno 对象。"
@@ -28670,7 +27748,6 @@ msgstr "<emph>oTest:</emph>要测试的 Basic Uno 对象。"
msgctxt ""
"03104400.xhp\n"
"par_id3149236\n"
-"10\n"
"help.text"
msgid "<emph>Uno-Interface-Name:</emph> list of Uno interface names."
msgstr "<emph>Uno-Interface-Name:</emph>Uno 接口名称列表。"
@@ -28679,7 +27756,6 @@ msgstr "<emph>Uno-Interface-Name:</emph>Uno 接口名称列表。"
msgctxt ""
"03104400.xhp\n"
"hd_id3147574\n"
-"11\n"
"help.text"
msgid "Example:"
msgstr "示例:"
@@ -28688,7 +27764,6 @@ msgstr "示例:"
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\" )"
@@ -28841,7 +27916,6 @@ msgstr "<bookmark_value>EqualUnoObjects 函数</bookmark_value>"
msgctxt ""
"03104600.xhp\n"
"hd_id3149205\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03104600.xhp\" name=\"EqualUnoObjects Function [Runtime]\">EqualUnoObjects Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03104600.xhp\" name=\"EqualUnoObjects 函数 [运行时]\">EqualUnoObjects 函数 [运行时]</link>"
@@ -28850,7 +27924,6 @@ msgstr "<link href=\"text/sbasic/shared/03104600.xhp\" name=\"EqualUnoObjects
msgctxt ""
"03104600.xhp\n"
"par_id3145090\n"
-"2\n"
"help.text"
msgid "Returns True if the two specified Basic Uno objects represent the same Uno object instance."
msgstr "如果指定的两个 Basic Uno 对象表示相同的 Uno 对象实例,则返回 True。"
@@ -28859,7 +27932,6 @@ msgstr "如果指定的两个 Basic Uno 对象表示相同的 Uno 对象实例
msgctxt ""
"03104600.xhp\n"
"hd_id3148538\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -28868,7 +27940,6 @@ msgstr "语法:"
msgctxt ""
"03104600.xhp\n"
"par_id3150669\n"
-"4\n"
"help.text"
msgid "EqualUnoObjects( oObj1, oObj2 )"
msgstr "EqualUnoObjects( oObj1, oObj2 )"
@@ -28877,7 +27948,6 @@ msgstr "EqualUnoObjects( oObj1, oObj2 )"
msgctxt ""
"03104600.xhp\n"
"hd_id3150984\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "返回值:"
@@ -28886,7 +27956,6 @@ msgstr "返回值:"
msgctxt ""
"03104600.xhp\n"
"par_id3154285\n"
-"6\n"
"help.text"
msgid "Bool"
msgstr "布尔"
@@ -28895,7 +27964,6 @@ msgstr "布尔"
msgctxt ""
"03104600.xhp\n"
"hd_id3145315\n"
-"7\n"
"help.text"
msgid "Example:"
msgstr "示例:"
@@ -28904,7 +27972,6 @@ msgstr "示例:"
msgctxt ""
"03104600.xhp\n"
"par_id3156024\n"
-"8\n"
"help.text"
msgid "// Copy of objects -> same instance"
msgstr "// 复制对象 -> 相同实例"
@@ -28913,7 +27980,6 @@ msgstr "// 复制对象 -> 相同实例"
msgctxt ""
"03104600.xhp\n"
"par_id3154923\n"
-"9\n"
"help.text"
msgid "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
msgstr "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
@@ -28922,7 +27988,6 @@ msgstr "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\"
msgctxt ""
"03104600.xhp\n"
"par_id3147559\n"
-"10\n"
"help.text"
msgid "oIntro2 = oIntrospection"
msgstr "oIntro2 = oIntrospection"
@@ -28931,7 +27996,6 @@ msgstr "oIntro2 = oIntrospection"
msgctxt ""
"03104600.xhp\n"
"par_id3150541\n"
-"11\n"
"help.text"
msgid "print EqualUnoObjects( oIntrospection, oIntro2 )"
msgstr "print EqualUnoObjects( oIntrospection, oIntro2 )"
@@ -28940,7 +28004,6 @@ msgstr "print EqualUnoObjects( oIntrospection, oIntro2 )"
msgctxt ""
"03104600.xhp\n"
"par_id3153525\n"
-"12\n"
"help.text"
msgid "// Copy of structs as value -> new instance"
msgstr "// 以值的形式复制结构 -> 新实例"
@@ -28949,7 +28012,6 @@ msgstr "// 以值的形式复制结构 -> 新实例"
msgctxt ""
"03104600.xhp\n"
"par_id3154366\n"
-"13\n"
"help.text"
msgid "Dim Struct1 as new com.sun.star.beans.Property"
msgstr "Dim Struct1 as new com.sun.star.beans.Property"
@@ -28958,7 +28020,6 @@ msgstr "Dim Struct1 as new com.sun.star.beans.Property"
msgctxt ""
"03104600.xhp\n"
"par_id3154348\n"
-"14\n"
"help.text"
msgid "Struct2 = Struct1"
msgstr "Struct2 = Struct1"
@@ -28967,7 +28028,6 @@ msgstr "Struct2 = Struct1"
msgctxt ""
"03104600.xhp\n"
"par_id3154125\n"
-"15\n"
"help.text"
msgid "print EqualUnoObjects( Struct1, Struct2 )"
msgstr "print EqualUnoObjects( Struct1, Struct2 )"
@@ -29048,7 +28108,6 @@ msgstr "比较运算符"
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=\"比较运算符\">比较运算符</link>"
@@ -29057,7 +28116,6 @@ msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"比较运算符\">
msgctxt ""
"03110000.xhp\n"
"par_id3153528\n"
-"2\n"
"help.text"
msgid "The available comparison operators are described here."
msgstr "介绍可以使用的比较运算符。"
@@ -29218,7 +28276,6 @@ msgstr "字符串"
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=\"字符串\">字符串</link>"
@@ -29227,7 +28284,6 @@ msgstr "<link href=\"text/sbasic/shared/03120000.xhp\" name=\"字符串\">字符
msgctxt ""
"03120000.xhp\n"
"par_id3159176\n"
-"2\n"
"help.text"
msgid "The following functions and statements validate and return strings."
msgstr "以下函数和语句用于验证和返回字符串。"
@@ -29236,7 +28292,6 @@ msgstr "以下函数和语句用于验证和返回字符串。"
msgctxt ""
"03120000.xhp\n"
"par_id3154285\n"
-"3\n"
"help.text"
msgid "You can use strings to edit text within $[officename] Basic programs."
msgstr "您可以使用字符串在 $[officename] Basic 程序中编辑文字。"
@@ -29253,7 +28308,6 @@ msgstr "字符串的 ASCII/ANSI 转换"
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 转换\">字符串的 ASCII/ANSI 转换</link>"
@@ -29262,7 +28316,6 @@ msgstr "<link href=\"text/sbasic/shared/03120100.xhp\" name=\"字符串的 ASCII
msgctxt ""
"03120100.xhp\n"
"par_id3159201\n"
-"2\n"
"help.text"
msgid "The following functions convert strings to and from ASCII or ANSI code."
msgstr "以下函数用于在字符串与 ASCII 代码(或 ANSI 代码)之间相互转换。"
@@ -29735,7 +28788,6 @@ msgstr "<bookmark_value>CByte 函数</bookmark_value>"
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 函数 [运行时]\">CByte 函数 [运行时]</link>"
@@ -29744,7 +28796,6 @@ msgstr "<link href=\"text/sbasic/shared/03120105.xhp\" name=\"CByte 函数 [运
msgctxt ""
"03120105.xhp\n"
"par_id3143267\n"
-"2\n"
"help.text"
msgid "Converts a string or a numeric expression to the type Byte."
msgstr "将字符串或数字表达式转换成 Byte 类型。"
@@ -29753,7 +28804,6 @@ msgstr "将字符串或数字表达式转换成 Byte 类型。"
msgctxt ""
"03120105.xhp\n"
"hd_id3149811\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -29762,7 +28812,6 @@ msgstr "语法:"
msgctxt ""
"03120105.xhp\n"
"par_id3147573\n"
-"4\n"
"help.text"
msgid "Cbyte( expression )"
msgstr "Cbyte( expression )"
@@ -29771,7 +28820,6 @@ msgstr "Cbyte( expression )"
msgctxt ""
"03120105.xhp\n"
"hd_id3145315\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "返回值:"
@@ -29780,7 +28828,6 @@ msgstr "返回值:"
msgctxt ""
"03120105.xhp\n"
"par_id3148473\n"
-"6\n"
"help.text"
msgid "Byte"
msgstr "Byte"
@@ -29789,7 +28836,6 @@ msgstr "Byte"
msgctxt ""
"03120105.xhp\n"
"hd_id3147530\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -29798,7 +28844,6 @@ msgstr "参数:"
msgctxt ""
"03120105.xhp\n"
"par_id3145068\n"
-"8\n"
"help.text"
msgid "<emph>Expression:</emph> A string or a numeric expression."
msgstr "<emph>Expression:</emph>字符串或数字表达式。"
@@ -29815,7 +28860,6 @@ msgstr "重复内容"
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=\"重复内容\">重复内容</link>"
@@ -29824,7 +28868,6 @@ msgstr "<link href=\"text/sbasic/shared/03120200.xhp\" name=\"重复内容\">重
msgctxt ""
"03120200.xhp\n"
"par_id3150178\n"
-"2\n"
"help.text"
msgid "The following functions repeat the contents of strings."
msgstr "以下函数用于重复字符串的内容。"
@@ -30049,7 +29092,6 @@ msgstr "<bookmark_value>StarBasic 中的 & 图标</bookmark_value>"
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=\"编辑字符串内容\">编辑字符串内容</link>"
@@ -30058,7 +29100,6 @@ msgstr "<link href=\"text/sbasic/shared/03120300.xhp\" name=\"编辑字符串内
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 "以下函数用于编辑、格式化和对齐字符串内容。使用 & 运算符连接字符串。"
@@ -31571,7 +30612,6 @@ msgstr "<bookmark_value>ConvertToURL 函数</bookmark_value>"
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 函数 [运行时]\">ConvertToURL 函数 [运行时]</link>"
@@ -31580,7 +30620,6 @@ msgstr "<link href=\"text/sbasic/shared/03120312.xhp\" name=\"ConvertToURL 函
msgctxt ""
"03120312.xhp\n"
"par_id3148538\n"
-"2\n"
"help.text"
msgid "Converts a system file name to a file URL."
msgstr "将系统文件名称转换成文件 URL。"
@@ -31589,7 +30628,6 @@ msgstr "将系统文件名称转换成文件 URL。"
msgctxt ""
"03120312.xhp\n"
"hd_id3150669\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -31598,7 +30636,6 @@ msgstr "语法:"
msgctxt ""
"03120312.xhp\n"
"par_id3154285\n"
-"4\n"
"help.text"
msgid "ConvertToURL(filename)"
msgstr "ConvertToURL(filename)"
@@ -31607,7 +30644,6 @@ msgstr "ConvertToURL(filename)"
msgctxt ""
"03120312.xhp\n"
"hd_id3150984\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "返回值:"
@@ -31616,7 +30652,6 @@ msgstr "返回值:"
msgctxt ""
"03120312.xhp\n"
"par_id3147530\n"
-"6\n"
"help.text"
msgid "String"
msgstr "字符串"
@@ -31625,7 +30660,6 @@ msgstr "字符串"
msgctxt ""
"03120312.xhp\n"
"hd_id3148550\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -31634,7 +30668,6 @@ msgstr "参数:"
msgctxt ""
"03120312.xhp\n"
"par_id3148947\n"
-"8\n"
"help.text"
msgid "<emph>Filename:</emph> A file name as string."
msgstr "<emph>filename:</emph>以字符串形式表示的文件名。"
@@ -31643,7 +30676,6 @@ msgstr "<emph>filename:</emph>以字符串形式表示的文件名。"
msgctxt ""
"03120312.xhp\n"
"hd_id3153361\n"
-"9\n"
"help.text"
msgid "Example:"
msgstr "示例:"
@@ -31652,7 +30684,6 @@ msgstr "示例:"
msgctxt ""
"03120312.xhp\n"
"par_id3150792\n"
-"10\n"
"help.text"
msgid "systemFile$ = \"c:\\folder\\mytext.txt\""
msgstr "systemFile$ = \"c:\\folder\\mytext.txt\""
@@ -31661,7 +30692,6 @@ msgstr "systemFile$ = \"c:\\folder\\mytext.txt\""
msgctxt ""
"03120312.xhp\n"
"par_id3154365\n"
-"11\n"
"help.text"
msgid "url$ = ConvertToURL( systemFile$ )"
msgstr "url$ = ConvertToURL( systemFile$ )"
@@ -31670,7 +30700,6 @@ msgstr "url$ = ConvertToURL( systemFile$ )"
msgctxt ""
"03120312.xhp\n"
"par_id3151042\n"
-"12\n"
"help.text"
msgid "print url$"
msgstr "print url$"
@@ -31679,7 +30708,6 @@ msgstr "print url$"
msgctxt ""
"03120312.xhp\n"
"par_id3154909\n"
-"13\n"
"help.text"
msgid "systemFileAgain$ = ConvertFromURL( url$ )"
msgstr "systemFileAgain$ = ConvertFromURL( url$ )"
@@ -31688,7 +30716,6 @@ msgstr "systemFileAgain$ = ConvertFromURL( url$ )"
msgctxt ""
"03120312.xhp\n"
"par_id3144762\n"
-"14\n"
"help.text"
msgid "print systemFileAgain$"
msgstr "print systemFileAgain$"
@@ -31713,7 +30740,6 @@ msgstr "<bookmark_value>ConvertFromURL 函数</bookmark_value>"
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]\">ConvertFromURL 函数 [运行时]</link>"
@@ -31722,7 +30748,6 @@ msgstr "<link href=\"text/sbasic/shared/03120313.xhp\" name=\"ConvertFromURL Fun
msgctxt ""
"03120313.xhp\n"
"par_id3147226\n"
-"2\n"
"help.text"
msgid "Converts a file URL to a system file name."
msgstr "将文件 URL 转换成系统文件名称。"
@@ -31731,7 +30756,6 @@ msgstr "将文件 URL 转换成系统文件名称。"
msgctxt ""
"03120313.xhp\n"
"hd_id3143267\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -31740,7 +30764,6 @@ msgstr "语法:"
msgctxt ""
"03120313.xhp\n"
"par_id3154142\n"
-"4\n"
"help.text"
msgid "ConvertFromURL(filename)"
msgstr "ConvertFromURL(filename)"
@@ -31749,7 +30772,6 @@ msgstr "ConvertFromURL(filename)"
msgctxt ""
"03120313.xhp\n"
"hd_id3159157\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "返回值:"
@@ -31758,7 +30780,6 @@ msgstr "返回值:"
msgctxt ""
"03120313.xhp\n"
"par_id3150669\n"
-"6\n"
"help.text"
msgid "String"
msgstr "字符串"
@@ -31767,7 +30788,6 @@ msgstr "字符串"
msgctxt ""
"03120313.xhp\n"
"hd_id3143270\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -31776,7 +30796,6 @@ msgstr "参数:"
msgctxt ""
"03120313.xhp\n"
"par_id3156023\n"
-"8\n"
"help.text"
msgid "<emph>Filename:</emph> A file name as a string."
msgstr "<emph>filename:</emph>以字符串形式表示的文件名。"
@@ -31785,7 +30804,6 @@ msgstr "<emph>filename:</emph>以字符串形式表示的文件名。"
msgctxt ""
"03120313.xhp\n"
"hd_id3154760\n"
-"9\n"
"help.text"
msgid "Example:"
msgstr "示例:"
@@ -31794,7 +30812,6 @@ msgstr "示例:"
msgctxt ""
"03120313.xhp\n"
"par_id3148664\n"
-"10\n"
"help.text"
msgid "systemFile$ = \"c:\\folder\\mytext.txt\""
msgstr "systemFile$ = \"c:\\folder\\mytext.txt\""
@@ -31803,7 +30820,6 @@ msgstr "systemFile$ = \"c:\\folder\\mytext.txt\""
msgctxt ""
"03120313.xhp\n"
"par_id3150541\n"
-"11\n"
"help.text"
msgid "url$ = ConvertToURL( systemFile$ )"
msgstr "url$ = ConvertToURL( systemFile$ )"
@@ -31812,7 +30828,6 @@ msgstr "url$ = ConvertToURL( systemFile$ )"
msgctxt ""
"03120313.xhp\n"
"par_id3150792\n"
-"12\n"
"help.text"
msgid "print url$"
msgstr "print url$"
@@ -31821,7 +30836,6 @@ msgstr "print url$"
msgctxt ""
"03120313.xhp\n"
"par_id3154367\n"
-"13\n"
"help.text"
msgid "systemFileAgain$ = ConvertFromURL( url$ )"
msgstr "systemFileAgain$ = ConvertFromURL( url$ )"
@@ -31830,7 +30844,6 @@ msgstr "systemFileAgain$ = ConvertFromURL( url$ )"
msgctxt ""
"03120313.xhp\n"
"par_id3153194\n"
-"14\n"
"help.text"
msgid "print systemFileAgain$"
msgstr "print systemFileAgain$"
@@ -31959,7 +30972,6 @@ msgstr "<bookmark_value>Join 函数</bookmark_value>"
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 函数 [运行时]\">Join 函数 [运行时]</link>"
@@ -31968,7 +30980,6 @@ msgstr "<link href=\"text/sbasic/shared/03120315.xhp\" name=\"Join 函数 [运
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 "将字符串数组中的多个子字符串组合成一个字符串。"
@@ -31977,7 +30988,6 @@ msgstr "将字符串数组中的多个子字符串组合成一个字符串。"
msgctxt ""
"03120315.xhp\n"
"hd_id3159414\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -31986,7 +30996,6 @@ msgstr "语法:"
msgctxt ""
"03120315.xhp\n"
"par_id3156344\n"
-"4\n"
"help.text"
msgid "Join (Text As String Array, delimiter)"
msgstr "Join (Text As String Array, delimiter)"
@@ -31995,7 +31004,6 @@ msgstr "Join (Text As String Array, delimiter)"
msgctxt ""
"03120315.xhp\n"
"hd_id3150400\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "返回值:"
@@ -32004,7 +31012,6 @@ msgstr "返回值:"
msgctxt ""
"03120315.xhp\n"
"par_id3150359\n"
-"6\n"
"help.text"
msgid "String"
msgstr "字符串"
@@ -32013,7 +31020,6 @@ msgstr "字符串"
msgctxt ""
"03120315.xhp\n"
"hd_id3148798\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -32022,7 +31028,6 @@ msgstr "参数:"
msgctxt ""
"03120315.xhp\n"
"par_id3145171\n"
-"8\n"
"help.text"
msgid "<emph>Text:</emph> A string array."
msgstr "<emph>Text:</emph>字符串数组。"
@@ -32031,7 +31036,6 @@ msgstr "<emph>Text:</emph>字符串数组。"
msgctxt ""
"03120315.xhp\n"
"par_id3154908\n"
-"9\n"
"help.text"
msgid "<emph>delimiter (optional):</emph> A string character that is used to separate the substrings in the resulting string. The default delimiter is the space character. If delimiter is a string of length zero \"\", the substrings are joined without separator."
msgstr "<emph>delimiter(可选):</emph>用于分隔返回字符串中的子字符串的字符串字符。默认的分隔字符是空格。如果分隔字符是一个零长度字符串 \"\",子串将紧密相接,相互间无分隔符。"
@@ -32040,7 +31044,6 @@ msgstr "<emph>delimiter(可选):</emph>用于分隔返回字符串中的
msgctxt ""
"03120315.xhp\n"
"hd_id3154218\n"
-"10\n"
"help.text"
msgid "Example:"
msgstr "示例:"
@@ -32057,7 +31060,6 @@ msgstr "编辑字符串长度"
msgctxt ""
"03120400.xhp\n"
"hd_id3155150\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120400.xhp\" name=\"Editing String Length\">Editing String Length</link>"
msgstr "<link href=\"text/sbasic/shared/03120400.xhp\" name=\"编辑字符串长度\">编辑字符串长度</link>"
@@ -32066,7 +31068,6 @@ msgstr "<link href=\"text/sbasic/shared/03120400.xhp\" name=\"编辑字符串长
msgctxt ""
"03120400.xhp\n"
"par_id3159201\n"
-"2\n"
"help.text"
msgid "The following functions determine string lengths and compare strings."
msgstr "以下函数用于确定字符串长度以及比较字符串。"
@@ -32235,7 +31236,6 @@ msgstr "<bookmark_value>Len 函数</bookmark_value>"
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 函数 [运行时]\">Len 函数 [运行时]</link>"
@@ -32244,7 +31244,6 @@ msgstr "<link href=\"text/sbasic/shared/03120402.xhp\" name=\"Len 函数 [运行
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 "返回字符串中的字符数,或存储变量所需的字节数。"
@@ -32253,7 +31252,6 @@ msgstr "返回字符串中的字符数,或存储变量所需的字节数。"
msgctxt ""
"03120402.xhp\n"
"hd_id3159177\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -32262,7 +31260,6 @@ msgstr "语法:"
msgctxt ""
"03120402.xhp\n"
"par_id3150669\n"
-"4\n"
"help.text"
msgid "Len (Text As String)"
msgstr "Len (Text As String)"
@@ -32271,7 +31268,6 @@ msgstr "Len (Text As String)"
msgctxt ""
"03120402.xhp\n"
"hd_id3148473\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "返回值:"
@@ -32280,7 +31276,6 @@ msgstr "返回值:"
msgctxt ""
"03120402.xhp\n"
"par_id3143270\n"
-"6\n"
"help.text"
msgid "Long"
msgstr "Long"
@@ -32289,7 +31284,6 @@ msgstr "Long"
msgctxt ""
"03120402.xhp\n"
"hd_id3147531\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -32298,7 +31292,6 @@ msgstr "参数:"
msgctxt ""
"03120402.xhp\n"
"par_id3147265\n"
-"8\n"
"help.text"
msgid "<emph>Text:</emph> Any string expression or a variable of another type."
msgstr "<emph>Text:</emph>任意字符串表达式或其他类型的变量。"
@@ -32307,7 +31300,6 @@ msgstr "<emph>Text:</emph>任意字符串表达式或其他类型的变量。"
msgctxt ""
"03120402.xhp\n"
"hd_id3153360\n"
-"9\n"
"help.text"
msgid "Example:"
msgstr "示例:"
@@ -32316,7 +31308,6 @@ msgstr "示例:"
msgctxt ""
"03120402.xhp\n"
"par_id3156214\n"
-"13\n"
"help.text"
msgid "MsgBox Len(sText) REM Returns 9"
msgstr "MsgBox Len(sText) REM 返回 9"
@@ -32469,7 +31460,6 @@ msgstr "其他命令"
msgctxt ""
"03130000.xhp\n"
"hd_id3156027\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03130000.xhp\" name=\"Other Commands\">Other Commands</link>"
msgstr "<link href=\"text/sbasic/shared/03130000.xhp\" name=\"其他命令\">其他命令</link>"
@@ -32478,7 +31468,6 @@ msgstr "<link href=\"text/sbasic/shared/03130000.xhp\" name=\"其他命令\">其
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 "下表列出了其他类别中没有介绍的一些函数和语句。"
@@ -32503,7 +31492,6 @@ msgstr "<bookmark_value>Beep 语句</bookmark_value>"
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 语句 [运行时]\">Beep 语句 [运行时]</link>"
@@ -32512,7 +31500,6 @@ msgstr "<link href=\"text/sbasic/shared/03130100.xhp\" name=\"Beep 语句 [运
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 "通过计算机扬声器播放一种声音。对于不同的系统,该声音可能不同,而且您无法修改音量或音调。"
@@ -32521,7 +31508,6 @@ msgstr "通过计算机扬声器播放一种声音。对于不同的系统,该
msgctxt ""
"03130100.xhp\n"
"hd_id3153990\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -32530,7 +31516,6 @@ msgstr "语法:"
msgctxt ""
"03130100.xhp\n"
"par_id3147291\n"
-"4\n"
"help.text"
msgid "Beep"
msgstr "Beep"
@@ -32539,7 +31524,6 @@ msgstr "Beep"
msgctxt ""
"03130100.xhp\n"
"hd_id3148538\n"
-"5\n"
"help.text"
msgid "Example:"
msgstr "示例:"
@@ -32748,7 +31732,6 @@ msgstr "<bookmark_value>Wait 语句</bookmark_value>"
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 语句 [运行时]\">Wait 语句 [运行时]</link>"
@@ -32757,7 +31740,6 @@ msgstr "<link href=\"text/sbasic/shared/03130600.xhp\" name=\"Wait 语句 [运
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 "按照指定使程序停止一段时间(以毫秒为单位)。"
@@ -32766,7 +31748,6 @@ msgstr "按照指定使程序停止一段时间(以毫秒为单位)。"
msgctxt ""
"03130600.xhp\n"
"hd_id3143229\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -32775,7 +31756,6 @@ msgstr "语法:"
msgctxt ""
"03130600.xhp\n"
"par_id3150669\n"
-"4\n"
"help.text"
msgid "Wait millisec"
msgstr "Wait millisec"
@@ -32784,7 +31764,6 @@ msgstr "Wait millisec"
msgctxt ""
"03130600.xhp\n"
"hd_id3148943\n"
-"5\n"
"help.text"
msgid "Parameters:"
msgstr "参数:"
@@ -32793,7 +31772,6 @@ msgstr "参数:"
msgctxt ""
"03130600.xhp\n"
"par_id3154924\n"
-"6\n"
"help.text"
msgid "<emph>millisec:</emph> Numeric expression that contains the amount of time (in milliseconds) to wait before the program is executed."
msgstr "<emph>millisec:</emph>数字表达式,含有程序恢复执行之前需要等待的时间长度 (以毫秒为单位)。"
@@ -32802,7 +31780,6 @@ msgstr "<emph>millisec:</emph>数字表达式,含有程序恢复执行之前
msgctxt ""
"03130600.xhp\n"
"hd_id3150541\n"
-"7\n"
"help.text"
msgid "Example:"
msgstr "示例:"
@@ -32811,7 +31788,6 @@ msgstr "示例:"
msgctxt ""
"03130600.xhp\n"
"par_id3156214\n"
-"13\n"
"help.text"
msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
msgstr "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
@@ -33252,7 +32228,6 @@ msgstr "<bookmark_value>CreateUnoStruct 函数</bookmark_value>"
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 函数 [运行时]\">CreateUnoStruct 函数 [运行时]</link>"
@@ -33261,7 +32236,6 @@ msgstr "<link href=\"text/sbasic/shared/03131500.xhp\" name=\"CreateUnoStruct
msgctxt ""
"03131500.xhp\n"
"par_id3150713\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">Creates an instance of a Uno structure type.</ahelp>"
msgstr "<ahelp hid=\".\">创建一个 Uno 结构类型的实例。</ahelp>"
@@ -33270,7 +32244,6 @@ msgstr "<ahelp hid=\".\">创建一个 Uno 结构类型的实例。</ahelp>"
msgctxt ""
"03131500.xhp\n"
"par_id3147226\n"
-"3\n"
"help.text"
msgid "Use the following structure for your statement:"
msgstr "在语句中使用以下结构:"
@@ -33279,7 +32252,6 @@ msgstr "在语句中使用以下结构:"
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"
@@ -33288,7 +32260,6 @@ msgstr "Dim oStruct as new com.sun.star.beans.Property"
msgctxt ""
"03131500.xhp\n"
"hd_id3156153\n"
-"5\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -33297,7 +32268,6 @@ msgstr "语法:"
msgctxt ""
"03131500.xhp\n"
"par_id3155341\n"
-"6\n"
"help.text"
msgid "oStruct = CreateUnoStruct( Uno type name )"
msgstr "oStruct = CreateUnoStruct( Uno type name )"
@@ -33306,7 +32276,6 @@ msgstr "oStruct = CreateUnoStruct( Uno type name )"
msgctxt ""
"03131500.xhp\n"
"hd_id3145316\n"
-"7\n"
"help.text"
msgid "Example:"
msgstr "示例:"
@@ -33315,7 +32284,6 @@ msgstr "示例:"
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\" )"
@@ -33444,7 +32412,6 @@ msgstr "<bookmark_value>GetProcessServiceManager 函数</bookmark_value><bookmar
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 函数 [运行时]\">GetProcessServiceManager 函数 [运行时]</link>"
@@ -33453,7 +32420,6 @@ msgstr "<link href=\"text/sbasic/shared/03131700.xhp\" name=\"GetProcessServiceM
msgctxt ""
"03131700.xhp\n"
"par_id3156414\n"
-"2\n"
"help.text"
msgid "Returns the ProcessServiceManager (central Uno ServiceManager)."
msgstr "返回 ProcessServiceManager (中央 Uno ServiceManager)。"
@@ -33462,7 +32428,6 @@ msgstr "返回 ProcessServiceManager (中央 Uno ServiceManager)。"
msgctxt ""
"03131700.xhp\n"
"par_id3145136\n"
-"3\n"
"help.text"
msgid "This function is required when you want to instantiate a service using CreateInstanceWithArguments."
msgstr "当希望使用 CreateInstanceWithArguments 来实例化一项服务时,需要使用此函数。"
@@ -33471,7 +32436,6 @@ msgstr "当希望使用 CreateInstanceWithArguments 来实例化一项服务时
msgctxt ""
"03131700.xhp\n"
"hd_id3153681\n"
-"4\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -33480,7 +32444,6 @@ msgstr "语法:"
msgctxt ""
"03131700.xhp\n"
"par_id3151110\n"
-"5\n"
"help.text"
msgid "oServiceManager = GetProcessServiceManager()"
msgstr "oServiceManager = GetProcessServiceManager()"
@@ -33489,7 +32452,6 @@ msgstr "oServiceManager = GetProcessServiceManager()"
msgctxt ""
"03131700.xhp\n"
"hd_id3149516\n"
-"6\n"
"help.text"
msgid "Example:"
msgstr "示例:"
@@ -33498,7 +32460,6 @@ msgstr "示例:"
msgctxt ""
"03131700.xhp\n"
"par_id3143270\n"
-"7\n"
"help.text"
msgid "oServiceManager = GetProcessServiceManager()"
msgstr "oServiceManager = GetProcessServiceManager()"
@@ -33507,7 +32468,6 @@ msgstr "oServiceManager = GetProcessServiceManager()"
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\");"
@@ -33516,7 +32476,6 @@ msgstr "oIntrospection = oServiceManager.createInstance(\"com.sun.star.beans.Int
msgctxt ""
"03131700.xhp\n"
"par_id3148473\n"
-"9\n"
"help.text"
msgid "this is the same as the following statement:"
msgstr "上面的语句等同于以下语句:"
@@ -33525,7 +32484,6 @@ msgstr "上面的语句等同于以下语句:"
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\")"
@@ -33550,7 +32508,6 @@ msgstr "<bookmark_value>CreateUnoDialog 函数</bookmark_value>"
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]\">CreateUnoDialog 函数 [运行时]</link>"
@@ -33559,7 +32516,6 @@ msgstr "<link href=\"text/sbasic/shared/03131800.xhp\" name=\"CreateUnoDialog Fu
msgctxt ""
"03131800.xhp\n"
"par_id3154186\n"
-"2\n"
"help.text"
msgid "Creates a Basic Uno object that represents a Uno dialog control during Basic runtime."
msgstr "在 Basic 运行时建立一个表示 Uno 对话框控制的 Basic Uno 对象。"
@@ -33568,7 +32524,6 @@ msgstr "在 Basic 运行时建立一个表示 Uno 对话框控制的 Basic Uno
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 "对话框是在对话框程序库中进行定义的。要显示对话框,需要从对话框程序库中建立一个“实况”对话框。"
@@ -33577,7 +32532,6 @@ msgstr "对话框是在对话框程序库中进行定义的。要显示对话框
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 "请参阅<link href=\"text/sbasic/guide/sample_code.xhp\" name=\"示例\">示例</link>。"
@@ -33586,7 +32540,6 @@ msgstr "请参阅<link href=\"text/sbasic/guide/sample_code.xhp\" name=\"示例\
msgctxt ""
"03131800.xhp\n"
"hd_id3154286\n"
-"5\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -33595,7 +32548,6 @@ msgstr "语法:"
msgctxt ""
"03131800.xhp\n"
"par_id3159176\n"
-"6\n"
"help.text"
msgid "CreateUnoDialog( oDlgDesc )"
msgstr "CreateUnoDialog( oDlgDesc )"
@@ -33604,7 +32556,6 @@ msgstr "CreateUnoDialog( oDlgDesc )"
msgctxt ""
"03131800.xhp\n"
"hd_id3143270\n"
-"7\n"
"help.text"
msgid "Example:"
msgstr "示例:"
@@ -33613,7 +32564,6 @@ msgstr "示例:"
msgctxt ""
"03131800.xhp\n"
"par_id3159157\n"
-"8\n"
"help.text"
msgid "' Get dialog description from the dialog library"
msgstr "' 从对话框程序库获取对话框说明"
@@ -33622,7 +32572,6 @@ msgstr "' 从对话框程序库获取对话框说明"
msgctxt ""
"03131800.xhp\n"
"par_id3149234\n"
-"9\n"
"help.text"
msgid "oDlgDesc = DialogLibraries.Standard.Dialog1"
msgstr "oDlgDesc = DialogLibraries.Standard.Dialog1"
@@ -33631,7 +32580,6 @@ msgstr "oDlgDesc = DialogLibraries.Standard.Dialog1"
msgctxt ""
"03131800.xhp\n"
"par_id3154923\n"
-"10\n"
"help.text"
msgid "' generate \"live\" dialog"
msgstr "' 生成“实况”对话框"
@@ -33640,7 +32588,6 @@ msgstr "' 生成“实况”对话框"
msgctxt ""
"03131800.xhp\n"
"par_id3149670\n"
-"11\n"
"help.text"
msgid "oDlgControl = CreateUnoDialog( oDlgDesc )"
msgstr "oDlgControl = CreateUnoDialog( oDlgDesc )"
@@ -33649,7 +32596,6 @@ msgstr "oDlgControl = CreateUnoDialog( oDlgDesc )"
msgctxt ""
"03131800.xhp\n"
"par_id3148550\n"
-"12\n"
"help.text"
msgid "' display \"live\" dialog"
msgstr "' 显示“实况”对话框"
@@ -33658,7 +32604,6 @@ msgstr "' 显示“实况”对话框"
msgctxt ""
"03131800.xhp\n"
"par_id3154072\n"
-"13\n"
"help.text"
msgid "oDlgControl.execute"
msgstr "oDlgControl.execute"
@@ -33683,7 +32628,6 @@ msgstr "<bookmark_value>GlobalScope 函数</bookmark_value><bookmark_value>libra
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 [运行时]\">GlobalScope [运行时]</link>"
@@ -33692,7 +32636,6 @@ msgstr "<link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope [运
msgctxt ""
"03131900.xhp\n"
"par_id3153345\n"
-"2\n"
"help.text"
msgid "Basic source code and dialogs are organized in a library system."
msgstr "在程序库系统中管理 Basic 源代码和对话框。"
@@ -33701,7 +32644,6 @@ msgstr "在程序库系统中管理 Basic 源代码和对话框。"
msgctxt ""
"03131900.xhp\n"
"par_id3145315\n"
-"3\n"
"help.text"
msgid "The LibraryContainer contains libraries"
msgstr "LibraryContainer 含有程序库"
@@ -33710,7 +32652,6 @@ msgstr "LibraryContainer 含有程序库"
msgctxt ""
"03131900.xhp\n"
"par_id3149514\n"
-"4\n"
"help.text"
msgid "Libraries can contain modules and dialogs"
msgstr "程序库可以含有模块和对话框"
@@ -33719,7 +32660,6 @@ msgstr "程序库可以含有模块和对话框"
msgctxt ""
"03131900.xhp\n"
"hd_id3143271\n"
-"5\n"
"help.text"
msgid "In Basic:"
msgstr "在 Basic 中:"
@@ -33728,7 +32668,6 @@ msgstr "在 Basic 中:"
msgctxt ""
"03131900.xhp\n"
"par_id3153061\n"
-"6\n"
"help.text"
msgid "The LibraryContainer is called <emph>BasicLibraries</emph>."
msgstr "LibraryContainer 称为 <emph>BasicLibraries</emph>。"
@@ -33737,7 +32676,6 @@ msgstr "LibraryContainer 称为 <emph>BasicLibraries</emph>。"
msgctxt ""
"03131900.xhp\n"
"hd_id3154346\n"
-"7\n"
"help.text"
msgid "In dialogs:"
msgstr "在对话框中:"
@@ -33746,7 +32684,6 @@ msgstr "在对话框中:"
msgctxt ""
"03131900.xhp\n"
"par_id3148663\n"
-"8\n"
"help.text"
msgid "The LibraryContainer is called <emph>DialogLibraries</emph>."
msgstr "LibraryContainer 称为 <emph>DialogLibraries</emph>。"
@@ -33755,7 +32692,6 @@ msgstr "LibraryContainer 称为 <emph>DialogLibraries</emph>。"
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 "两个 LibraryContainer 均适用于应用程序级别并存在于每个文档中。在文档 Basic 中,文档的 LibraryContainer 被自动调用。如果要调用文档中的全局 LibraryContainer,必须使用关键字 <emph>GlobalScope</emph>。"
@@ -33764,7 +32700,6 @@ msgstr "两个 LibraryContainer 均适用于应用程序级别并存在于每个
msgctxt ""
"03131900.xhp\n"
"hd_id3148920\n"
-"10\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -33773,7 +32708,6 @@ msgstr "语法:"
msgctxt ""
"03131900.xhp\n"
"par_id3149203\n"
-"11\n"
"help.text"
msgid "GlobalScope"
msgstr "GlobalScope"
@@ -33782,7 +32716,6 @@ msgstr "GlobalScope"
msgctxt ""
"03131900.xhp\n"
"hd_id3154685\n"
-"12\n"
"help.text"
msgid "Example:"
msgstr "示例:"
@@ -33791,7 +32724,6 @@ msgstr "示例:"
msgctxt ""
"03131900.xhp\n"
"par_id3154124\n"
-"13\n"
"help.text"
msgid "Example in the document Basic"
msgstr "文档 Basic 中的示例"
@@ -33800,7 +32732,6 @@ msgstr "文档 Basic 中的示例"
msgctxt ""
"03131900.xhp\n"
"par_id3158408\n"
-"14\n"
"help.text"
msgid "' calling Dialog1 in the document library Standard"
msgstr "' 调用文档库 Standard 中的 Dialog1"
@@ -33809,7 +32740,6 @@ msgstr "' 调用文档库 Standard 中的 Dialog1"
msgctxt ""
"03131900.xhp\n"
"par_id3125865\n"
-"15\n"
"help.text"
msgid "oDlgDesc = DialogLibraries.Standard.Dialog1"
msgstr "oDlgDesc = DialogLibraries.Standard.Dialog1"
@@ -33818,7 +32748,6 @@ msgstr "oDlgDesc = DialogLibraries.Standard.Dialog1"
msgctxt ""
"03131900.xhp\n"
"par_id3154910\n"
-"16\n"
"help.text"
msgid "' calling Dialog2 in the application library Library1"
msgstr "' 调用应用程序库 Library1 中的 Dialog2"
@@ -33827,7 +32756,6 @@ msgstr "' 调用应用程序库 Library1 中的 Dialog2"
msgctxt ""
"03131900.xhp\n"
"par_id3156424\n"
-"17\n"
"help.text"
msgid "oDlgDesc = GlobalScope.DialogLibraries.Library1.Dialog2"
msgstr "oDlgDesc = GlobalScope.DialogLibraries.Library1.Dialog2"
@@ -34148,7 +33076,6 @@ msgstr "<bookmark_value>GetGuiType 函数</bookmark_value>"
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 函数 [运行时]\">GetGuiType 函数 [运行时]</link>"
@@ -34157,7 +33084,6 @@ msgstr "<link href=\"text/sbasic/shared/03132100.xhp\" name=\"GetGuiType 函数
msgctxt ""
"03132100.xhp\n"
"par_id3152459\n"
-"2\n"
"help.text"
msgid "Returns a numerical value that specifies the graphical user interface."
msgstr "返回一个数字值,用于指定图形用户界面。"
@@ -34166,7 +33092,6 @@ msgstr "返回一个数字值,用于指定图形用户界面。"
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 "提供此运行时函数仅仅是为了向下兼容早期的版本。在客户端/服务器环境下未定义返回值。"
@@ -34175,7 +33100,6 @@ msgstr "提供此运行时函数仅仅是为了向下兼容早期的版本。在
msgctxt ""
"03132100.xhp\n"
"hd_id3154894\n"
-"4\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -34184,7 +33108,6 @@ msgstr "语法:"
msgctxt ""
"03132100.xhp\n"
"par_id3147143\n"
-"5\n"
"help.text"
msgid "GetGUIType()"
msgstr "GetGUIType()"
@@ -34193,7 +33116,6 @@ msgstr "GetGUIType()"
msgctxt ""
"03132100.xhp\n"
"hd_id3149346\n"
-"6\n"
"help.text"
msgid "Return value:"
msgstr "返回值:"
@@ -34202,7 +33124,6 @@ msgstr "返回值:"
msgctxt ""
"03132100.xhp\n"
"par_id3153748\n"
-"7\n"
"help.text"
msgid "Integer"
msgstr "整数"
@@ -34211,7 +33132,6 @@ msgstr "整数"
msgctxt ""
"03132100.xhp\n"
"hd_id3149177\n"
-"8\n"
"help.text"
msgid "Return values:"
msgstr "返回值:"
@@ -34220,7 +33140,6 @@ msgstr "返回值:"
msgctxt ""
"03132100.xhp\n"
"par_id3147242\n"
-"9\n"
"help.text"
msgid "1: Windows"
msgstr "1:Windows"
@@ -34229,7 +33148,6 @@ msgstr "1:Windows"
msgctxt ""
"03132100.xhp\n"
"par_id3156152\n"
-"11\n"
"help.text"
msgid "4: UNIX"
msgstr "4:UNIX"
@@ -34238,7 +33156,6 @@ msgstr "4:UNIX"
msgctxt ""
"03132100.xhp\n"
"hd_id3148685\n"
-"12\n"
"help.text"
msgid "Example:"
msgstr "示例:"
@@ -34343,7 +33260,6 @@ msgstr "<bookmark_value>CreateUnoValue 函数</bookmark_value>"
msgctxt ""
"03132300.xhp\n"
"hd_id3150682\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03132300.xhp\" name=\"CreateUnoValue Function [Runtime]\">CreateUnoValue Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03132300.xhp\" name=\"CreateUnoValue 函数 [运行时]\">CreateUnoValue 函数 [运行时]</link>"
@@ -34352,7 +33268,6 @@ msgstr "<link href=\"text/sbasic/shared/03132300.xhp\" name=\"CreateUnoValue 函
msgctxt ""
"03132300.xhp\n"
"par_id3147291\n"
-"2\n"
"help.text"
msgid "Returns an object that represents a strictly typed value referring to the Uno type system."
msgstr "返回一个对象,该对象表示一个涉及 Uno 类型系统的精确类型值。"
@@ -34361,7 +33276,6 @@ msgstr "返回一个对象,该对象表示一个涉及 Uno 类型系统的精
msgctxt ""
"03132300.xhp\n"
"par_id3143267\n"
-"3\n"
"help.text"
msgid "This object is automatically converted to an Any of the corresponding type when passed to Uno. The type must be specified by its fully qualified Uno type name."
msgstr "该对象被传送到 Uno 时,将自动转换成一种相应的 Any 类型,此类型必须由全限定的 Uno 类型名称来指定。"
@@ -34370,7 +33284,6 @@ msgstr "该对象被传送到 Uno 时,将自动转换成一种相应的 Any
msgctxt ""
"03132300.xhp\n"
"par_id3153626\n"
-"4\n"
"help.text"
msgid "The $[officename] API frequently uses the Any type. It is the counterpart of the Variant type known from other environments. The Any type holds one arbitrary Uno type and is used in generic Uno interfaces."
msgstr "$[officename] API 经常使用 Any 类型。它与其他环境中的 Variant 类型相对应。Any 类型具有一个任意类型的 Uno,可用于一般的 Uno 接口。"
@@ -34379,7 +33292,6 @@ msgstr "$[officename] API 经常使用 Any 类型。它与其他环境中的 Var
msgctxt ""
"03132300.xhp\n"
"hd_id3147560\n"
-"5\n"
"help.text"
msgid "Syntax:"
msgstr "语法:"
@@ -34388,7 +33300,6 @@ msgstr "语法:"
msgctxt ""
"03132300.xhp\n"
"par_id3154760\n"
-"6\n"
"help.text"
msgid "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) to get a byte sequence."
msgstr "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) 以获取字节序列。"
@@ -34397,7 +33308,6 @@ msgstr "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) 以获取字节
msgctxt ""
"03132300.xhp\n"
"par_id3150541\n"
-"7\n"
"help.text"
msgid "If CreateUnoValue cannot be converted to the specified Uno type, and error occurs. For the conversion, the TypeConverter service is used."
msgstr "如果 CreateUnoValue 无法转换成指定的 Uno 类型,将发生错误。转换时使用了 TypeConverter 服务。"
@@ -34406,7 +33316,6 @@ msgstr "如果 CreateUnoValue 无法转换成指定的 Uno 类型,将发生错
msgctxt ""
"03132300.xhp\n"
"par_id3153524\n"
-"8\n"
"help.text"
msgid "This function is intended for use in situations where the default Basic to Uno type converting mechanism is insufficient. This can happen when you try to access generic Any based interfaces, such as XPropertySet::setPropertyValue( Name, Value ) or X???Container::insertBy???( ???, Value ), from $[officename] Basic. The Basic runtime does not recognize these types as they are only defined in the corresponding service."
msgstr "此函数适用于 Basic 到 Uno 类型的默认转换机制效果不佳的场合。试图访问 $[officename] Basic 中基于一般 Any 类型的接口,例如 XPropertySet::setPropertyValue (Name, Value ) 或 X???Container::insertBy??? (???, Value) 时,可能出现这种情况。由于这些类型仅在相应的服务中进行了定义,因此 Basic 运行时不能识别这些类型。"
@@ -34415,7 +33324,6 @@ msgstr "此函数适用于 Basic 到 Uno 类型的默认转换机制效果不佳
msgctxt ""
"03132300.xhp\n"
"par_id3154366\n"
-"9\n"
"help.text"
msgid "In this type of situation, $[officename] Basic chooses the best matching type for the Basic type that you want to convert. However, if the wrong type is selected, an error occurs. You use the CreateUnoValue() function to create a value for the unknown Uno type."
msgstr "在这种情况下,$[officename] Basic 将为要转换的 Basic 类型选择最匹配的类型。但是如果选择了错误的类型,就会发生错误。您可以使用 CreateUnoValue() 函数为未知的 Uno 类型创建一个值。"
@@ -34424,7 +33332,6 @@ msgstr "在这种情况下,$[officename] Basic 将为要转换的 Basic 类型
msgctxt ""
"03132300.xhp\n"
"par_id3150769\n"
-"10\n"
"help.text"
msgid "You can also use this function to pass non-Any values, but this is not recommend. If Basic already knows the target type, using the CreateUnoValue() function will only lead to additional converting operations that slow down the Basic execution."
msgstr "此外,还可以使用此函数来传送非 Any 值,但是建议您不要这样做。如果 Basic 知道目标类型,使用 CreateUnoValue() 函数只会导致额外的转换操作,从而降低 Basic 的执行速度。"
@@ -34553,7 +33460,6 @@ msgstr "<bookmark_value>事件; 链接至对象</bookmark_value>"
msgctxt ""
"05060700.xhp\n"
"hd_id3153894\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"Macro\">Macro</link>"
msgstr "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"宏\">宏</link>"
@@ -34562,7 +33468,6 @@ msgstr "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"宏\">宏</link>"
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=\".\">选择当选定的图形、框架或 OLE 对象被选取时要执行的宏。</ahelp>在<emph>对象</emph>对话框的<emph>宏</emph>选项卡或<emph>指定宏</emph>对话框中提供了此功能(具体取决于所选对象)。"
@@ -34571,7 +33476,6 @@ msgstr "<ahelp hid=\".\">选择当选定的图形、框架或 OLE 对象被选
msgctxt ""
"05060700.xhp\n"
"hd_id3150503\n"
-"3\n"
"help.text"
msgid "Event"
msgstr "事件"
@@ -34580,7 +33484,6 @@ msgstr "事件"
msgctxt ""
"05060700.xhp\n"
"par_id3149763\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/eventassignpage/assignments\">Lists the events that are relevant to the macros that are currently assigned to the selected object.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/eventassignpage/assignments\">列出与当前指定给选定对象的宏相关的事件。</ahelp>"
@@ -34589,7 +33492,6 @@ msgstr "<ahelp hid=\"cui/ui/eventassignpage/assignments\">列出与当前指定
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 "下表列出了可以与文档中的对象相链接的宏和事件。"
@@ -34598,7 +33500,6 @@ msgstr "下表列出了可以与文档中的对象相链接的宏和事件。"
msgctxt ""
"05060700.xhp\n"
"par_id3153360\n"
-"24\n"
"help.text"
msgid "Event"
msgstr "事件"
@@ -34607,7 +33508,6 @@ msgstr "事件"
msgctxt ""
"05060700.xhp\n"
"par_id3154365\n"
-"25\n"
"help.text"
msgid "Event trigger"
msgstr "事件触发"
@@ -34616,7 +33516,6 @@ msgstr "事件触发"
msgctxt ""
"05060700.xhp\n"
"par_id3159149\n"
-"26\n"
"help.text"
msgid "OLE object"
msgstr "OLE 对象"
@@ -34625,7 +33524,6 @@ msgstr "OLE 对象"
msgctxt ""
"05060700.xhp\n"
"par_id3148451\n"
-"27\n"
"help.text"
msgid "Graphics"
msgstr "图形"
@@ -34634,7 +33532,6 @@ msgstr "图形"
msgctxt ""
"05060700.xhp\n"
"par_id3125863\n"
-"28\n"
"help.text"
msgid "Frame"
msgstr "框架"
@@ -34643,7 +33540,6 @@ msgstr "框架"
msgctxt ""
"05060700.xhp\n"
"par_id3154216\n"
-"29\n"
"help.text"
msgid "AutoText"
msgstr "自动图文集"
@@ -34652,7 +33548,6 @@ msgstr "自动图文集"
msgctxt ""
"05060700.xhp\n"
"par_id3145785\n"
-"30\n"
"help.text"
msgid "ImageMap area"
msgstr "图像映射区域"
@@ -34661,7 +33556,6 @@ msgstr "图像映射区域"
msgctxt ""
"05060700.xhp\n"
"par_id3153138\n"
-"31\n"
"help.text"
msgid "Hyperlink"
msgstr "超链接"
@@ -34670,7 +33564,6 @@ msgstr "超链接"
msgctxt ""
"05060700.xhp\n"
"par_id3155306\n"
-"32\n"
"help.text"
msgid "Click object"
msgstr "单击对象"
@@ -34679,7 +33572,6 @@ msgstr "单击对象"
msgctxt ""
"05060700.xhp\n"
"par_id3152460\n"
-"33\n"
"help.text"
msgid "Object is selected."
msgstr "对象被选定。"
@@ -34688,7 +33580,6 @@ msgstr "对象被选定。"
msgctxt ""
"05060700.xhp\n"
"par_id3147348\n"
-"34\n"
"help.text"
msgid "x"
msgstr "x"
@@ -34697,7 +33588,6 @@ msgstr "x"
msgctxt ""
"05060700.xhp\n"
"par_id3147426\n"
-"35\n"
"help.text"
msgid "x"
msgstr "x"
@@ -34706,7 +33596,6 @@ msgstr "x"
msgctxt ""
"05060700.xhp\n"
"par_id3153951\n"
-"36\n"
"help.text"
msgid "x"
msgstr "x"
@@ -34715,7 +33604,6 @@ msgstr "x"
msgctxt ""
"05060700.xhp\n"
"par_id3150116\n"
-"37\n"
"help.text"
msgid "Mouse over object"
msgstr "鼠标在对象之上"
@@ -34724,7 +33612,6 @@ msgstr "鼠标在对象之上"
msgctxt ""
"05060700.xhp\n"
"par_id3145253\n"
-"38\n"
"help.text"
msgid "Mouse moves over the object."
msgstr "鼠标移到对象上。"
@@ -34733,7 +33620,6 @@ msgstr "鼠标移到对象上。"
msgctxt ""
"05060700.xhp\n"
"par_id3144765\n"
-"39\n"
"help.text"
msgid "x"
msgstr "x"
@@ -34742,7 +33628,6 @@ msgstr "x"
msgctxt ""
"05060700.xhp\n"
"par_id3153418\n"
-"40\n"
"help.text"
msgid "x"
msgstr "x"
@@ -34751,7 +33636,6 @@ msgstr "x"
msgctxt ""
"05060700.xhp\n"
"par_id3153948\n"
-"41\n"
"help.text"
msgid "x"
msgstr "x"
@@ -34760,7 +33644,6 @@ msgstr "x"
msgctxt ""
"05060700.xhp\n"
"par_id3145652\n"
-"42\n"
"help.text"
msgid "x"
msgstr "x"
@@ -34769,7 +33652,6 @@ msgstr "x"
msgctxt ""
"05060700.xhp\n"
"par_id3155066\n"
-"43\n"
"help.text"
msgid "x"
msgstr "x"
@@ -34778,7 +33660,6 @@ msgstr "x"
msgctxt ""
"05060700.xhp\n"
"par_id3155446\n"
-"44\n"
"help.text"
msgid "Trigger Hyperlink"
msgstr "触发超链接"
@@ -34787,7 +33668,6 @@ msgstr "触发超链接"
msgctxt ""
"05060700.xhp\n"
"par_id3154756\n"
-"45\n"
"help.text"
msgid "Hyperlink assigned to the object is clicked."
msgstr "单击指定给对象的超链接。"
@@ -34796,7 +33676,6 @@ msgstr "单击指定给对象的超链接。"
msgctxt ""
"05060700.xhp\n"
"par_id3150042\n"
-"46\n"
"help.text"
msgid "x"
msgstr "x"
@@ -34805,7 +33684,6 @@ msgstr "x"
msgctxt ""
"05060700.xhp\n"
"par_id3151252\n"
-"47\n"
"help.text"
msgid "x"
msgstr "x"
@@ -34814,7 +33692,6 @@ msgstr "x"
msgctxt ""
"05060700.xhp\n"
"par_id3147344\n"
-"48\n"
"help.text"
msgid "x"
msgstr "x"
@@ -34823,7 +33700,6 @@ msgstr "x"
msgctxt ""
"05060700.xhp\n"
"par_id3146920\n"
-"49\n"
"help.text"
msgid "x"
msgstr "x"
@@ -34832,7 +33708,6 @@ msgstr "x"
msgctxt ""
"05060700.xhp\n"
"par_id3159333\n"
-"50\n"
"help.text"
msgid "Mouse leaves object"
msgstr "鼠标离开对象"
@@ -34841,7 +33716,6 @@ msgstr "鼠标离开对象"
msgctxt ""
"05060700.xhp\n"
"par_id3147003\n"
-"51\n"
"help.text"
msgid "Mouse moves off of the object."
msgstr "鼠标从对象上移开。"
@@ -34850,7 +33724,6 @@ msgstr "鼠标从对象上移开。"
msgctxt ""
"05060700.xhp\n"
"par_id3151278\n"
-"52\n"
"help.text"
msgid "x"
msgstr "x"
@@ -34859,7 +33732,6 @@ msgstr "x"
msgctxt ""
"05060700.xhp\n"
"par_id3145257\n"
-"53\n"
"help.text"
msgid "x"
msgstr "x"
@@ -34868,7 +33740,6 @@ msgstr "x"
msgctxt ""
"05060700.xhp\n"
"par_id3154122\n"
-"54\n"
"help.text"
msgid "x"
msgstr "x"
@@ -34877,7 +33748,6 @@ msgstr "x"
msgctxt ""
"05060700.xhp\n"
"par_id3156139\n"
-"55\n"
"help.text"
msgid "x"
msgstr "x"
@@ -34886,7 +33756,6 @@ msgstr "x"
msgctxt ""
"05060700.xhp\n"
"par_id3149036\n"
-"56\n"
"help.text"
msgid "x"
msgstr "x"
@@ -34895,7 +33764,6 @@ msgstr "x"
msgctxt ""
"05060700.xhp\n"
"par_id3150785\n"
-"57\n"
"help.text"
msgid "Graphics load successful"
msgstr "图形加载成功"
@@ -34904,7 +33772,6 @@ msgstr "图形加载成功"
msgctxt ""
"05060700.xhp\n"
"par_id3153705\n"
-"58\n"
"help.text"
msgid "Graphics are loaded successfully."
msgstr "图形已成功加载。"
@@ -34913,7 +33780,6 @@ msgstr "图形已成功加载。"
msgctxt ""
"05060700.xhp\n"
"par_id3150343\n"
-"59\n"
"help.text"
msgid "x"
msgstr "x"
@@ -34922,7 +33788,6 @@ msgstr "x"
msgctxt ""
"05060700.xhp\n"
"par_id3150202\n"
-"60\n"
"help.text"
msgid "Graphics load terminated"
msgstr "图形加载已终止"
@@ -34931,7 +33796,6 @@ msgstr "图形加载已终止"
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 "用户停止加载图形(例如在下载页面时)。"
@@ -34940,7 +33804,6 @@ msgstr "用户停止加载图形(例如在下载页面时)。"
msgctxt ""
"05060700.xhp\n"
"par_id3154259\n"
-"62\n"
"help.text"
msgid "x"
msgstr "x"
@@ -34949,7 +33812,6 @@ msgstr "x"
msgctxt ""
"05060700.xhp\n"
"par_id3155089\n"
-"63\n"
"help.text"
msgid "Graphics load faulty"
msgstr "图形加载有错"
@@ -34958,7 +33820,6 @@ msgstr "图形加载有错"
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 "未能成功加载图形,例如找不到图形。"
@@ -34967,7 +33828,6 @@ msgstr "未能成功加载图形,例如找不到图形。"
msgctxt ""
"05060700.xhp\n"
"par_id3148840\n"
-"65\n"
"help.text"
msgid "x"
msgstr "x"
@@ -34976,7 +33836,6 @@ msgstr "x"
msgctxt ""
"05060700.xhp\n"
"par_id3154533\n"
-"66\n"
"help.text"
msgid "Input of alpha characters"
msgstr "输入希腊语字母阿尔法"
@@ -34985,7 +33844,6 @@ msgstr "输入希腊语字母阿尔法"
msgctxt ""
"05060700.xhp\n"
"par_id3155266\n"
-"67\n"
"help.text"
msgid "Text is entered from the keyboard."
msgstr "从键盘输入文字。"
@@ -34994,7 +33852,6 @@ msgstr "从键盘输入文字。"
msgctxt ""
"05060700.xhp\n"
"par_id3144768\n"
-"68\n"
"help.text"
msgid "x"
msgstr "x"
@@ -35003,7 +33860,6 @@ msgstr "x"
msgctxt ""
"05060700.xhp\n"
"par_id3145659\n"
-"69\n"
"help.text"
msgid "Input of non-alpha characters"
msgstr "输入非阿尔法字符"
@@ -35012,7 +33868,6 @@ msgstr "输入非阿尔法字符"
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 "从键盘输入非打印字符,例如制表符和换行符。"
@@ -35021,7 +33876,6 @@ msgstr "从键盘输入非打印字符,例如制表符和换行符。"
msgctxt ""
"05060700.xhp\n"
"par_id3159206\n"
-"71\n"
"help.text"
msgid "x"
msgstr "x"
@@ -35030,7 +33884,6 @@ msgstr "x"
msgctxt ""
"05060700.xhp\n"
"par_id3150405\n"
-"72\n"
"help.text"
msgid "Resize frame"
msgstr "调整框架大小"
@@ -35039,7 +33892,6 @@ msgstr "调整框架大小"
msgctxt ""
"05060700.xhp\n"
"par_id3153972\n"
-"73\n"
"help.text"
msgid "Frame is resized with the mouse."
msgstr "用鼠标调整框架的大小。"
@@ -35048,7 +33900,6 @@ msgstr "用鼠标调整框架的大小。"
msgctxt ""
"05060700.xhp\n"
"par_id3152873\n"
-"74\n"
"help.text"
msgid "x"
msgstr "x"
@@ -35057,7 +33908,6 @@ msgstr "x"
msgctxt ""
"05060700.xhp\n"
"par_id3148900\n"
-"75\n"
"help.text"
msgid "Move frame"
msgstr "移动框架"
@@ -35066,7 +33916,6 @@ msgstr "移动框架"
msgctxt ""
"05060700.xhp\n"
"par_id3154767\n"
-"76\n"
"help.text"
msgid "Frame is moved with the mouse."
msgstr "用鼠标移动框架。"
@@ -35075,7 +33924,6 @@ msgstr "用鼠标移动框架。"
msgctxt ""
"05060700.xhp\n"
"par_id3155914\n"
-"77\n"
"help.text"
msgid "x"
msgstr "x"
@@ -35084,7 +33932,6 @@ msgstr "x"
msgctxt ""
"05060700.xhp\n"
"par_id3153010\n"
-"78\n"
"help.text"
msgid "Before inserting AutoText"
msgstr "插入自动图文集之前"
@@ -35093,7 +33940,6 @@ msgstr "插入自动图文集之前"
msgctxt ""
"05060700.xhp\n"
"par_id3147515\n"
-"79\n"
"help.text"
msgid "Before a text block is inserted."
msgstr "插入文本块之前。"
@@ -35102,7 +33948,6 @@ msgstr "插入文本块之前。"
msgctxt ""
"05060700.xhp\n"
"par_id3151191\n"
-"80\n"
"help.text"
msgid "x"
msgstr "x"
@@ -35111,7 +33956,6 @@ msgstr "x"
msgctxt ""
"05060700.xhp\n"
"par_id3150956\n"
-"81\n"
"help.text"
msgid "After inserting AutoText"
msgstr "在插入自动图文集之后"
@@ -35120,7 +33964,6 @@ msgstr "在插入自动图文集之后"
msgctxt ""
"05060700.xhp\n"
"par_id3147502\n"
-"82\n"
"help.text"
msgid "After a text block is inserted."
msgstr "插入文本块之后。"
@@ -35129,7 +33972,6 @@ msgstr "插入文本块之后。"
msgctxt ""
"05060700.xhp\n"
"par_id3147555\n"
-"83\n"
"help.text"
msgid "x"
msgstr "x"
@@ -35138,7 +33980,6 @@ msgstr "x"
msgctxt ""
"05060700.xhp\n"
"hd_id3153958\n"
-"5\n"
"help.text"
msgid "Macros"
msgstr "宏"
@@ -35147,7 +33988,6 @@ msgstr "宏"
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 "选择要在选定事件发生时执行的宏。"
@@ -35156,7 +33996,6 @@ msgstr "选择要在选定事件发生时执行的宏。"
msgctxt ""
"05060700.xhp\n"
"par_id3147296\n"
-"84\n"
"help.text"
msgid "Frames allow you to link events to a function, so that the function can determine if it processes the event or $[officename] Writer."
msgstr "对于框架,可以将事件和函数连接起来,这样,函数就可以确定是由自己还是由 $[officename] Writer 处理该事件。"
@@ -35165,7 +34004,6 @@ msgstr "对于框架,可以将事件和函数连接起来,这样,函数就
msgctxt ""
"05060700.xhp\n"
"hd_id3155587\n"
-"7\n"
"help.text"
msgid "Category"
msgstr "分类"
@@ -35174,7 +34012,6 @@ msgstr "分类"
msgctxt ""
"05060700.xhp\n"
"par_id3154068\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/eventassignpage/libraries\">Lists the open $[officename] documents and applications. Click the name of the location where you want to save the macros.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/eventassignpage/libraries\">列出打开的 $[officename] 文档和应用程序,从中可以选择用于保存宏的位置。</ahelp>"
@@ -35183,7 +34020,6 @@ msgstr "<ahelp hid=\"cui/ui/eventassignpage/libraries\">列出打开的 $[office
msgctxt ""
"05060700.xhp\n"
"hd_id3149744\n"
-"9\n"
"help.text"
msgid "Macro name"
msgstr "宏名称"
@@ -35192,7 +34028,6 @@ msgstr "宏名称"
msgctxt ""
"05060700.xhp\n"
"par_id3151391\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/eventassignpage/macros\">Lists the available macros. Click the macro that you want to assign to the selected object.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/eventassignpage/macros\">列出可用的宏。单击要指定给选定对象的宏。</ahelp>"
@@ -35201,7 +34036,6 @@ msgstr "<ahelp hid=\"cui/ui/eventassignpage/macros\">列出可用的宏。单击
msgctxt ""
"05060700.xhp\n"
"hd_id3159260\n"
-"11\n"
"help.text"
msgid "Assign"
msgstr "指定"
@@ -35210,7 +34044,6 @@ msgstr "指定"
msgctxt ""
"05060700.xhp\n"
"par_id3147406\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_ASSIGN\">Assigns the selected macro to the specified event.</ahelp> The assigned macro's entries are set after the event."
msgstr "<ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_ASSIGN\">将选定的宏指定给选定的事件。</ahelp>所指定宏的相应条目在事件之后被设置。"
@@ -35219,7 +34052,6 @@ msgstr "<ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_ASSIGN\">将选
msgctxt ""
"05060700.xhp\n"
"hd_id3150533\n"
-"15\n"
"help.text"
msgid "Remove"
msgstr "删除"
@@ -35228,7 +34060,6 @@ msgstr "删除"
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\">取消为选定条目指定的宏。</ahelp></variable>"
@@ -35237,7 +34068,6 @@ msgstr "<variable id=\"aufheb\"><ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASS
msgctxt ""
"05060700.xhp\n"
"hd_id3159126\n"
-"85\n"
"help.text"
msgid "Macro selection"
msgstr "选择宏"
@@ -35246,7 +34076,6 @@ msgstr "选择宏"
msgctxt ""
"05060700.xhp\n"
"par_id3149149\n"
-"86\n"
"help.text"
msgid "<ahelp hid=\"SFX2_LISTBOX_RID_SFX_TP_MACROASSIGN_LB_SCRIPTTYPE\">Select the macro that you want to assign.</ahelp>"
msgstr "<ahelp hid=\"SFX2_LISTBOX_RID_SFX_TP_MACROASSIGN_LB_SCRIPTTYPE\">选择要指定的宏。</ahelp>"
@@ -35279,7 +34108,6 @@ msgstr "<bookmark_value>键盘;在 IDE 中</bookmark_value><bookmark_value>快
msgctxt ""
"keys.xhp\n"
"hd_id3154760\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/keys.xhp\" name=\"Keyboard Shortcuts in the Basic IDE\">Keyboard Shortcuts in the Basic IDE</link>"
msgstr "<link href=\"text/sbasic/shared/keys.xhp\" name=\"Basic IDE 中的快捷键\">Basic IDE 中的快捷键</link>"
@@ -35288,7 +34116,6 @@ msgstr "<link href=\"text/sbasic/shared/keys.xhp\" name=\"Basic IDE 中的快捷
msgctxt ""
"keys.xhp\n"
"par_id3149655\n"
-"2\n"
"help.text"
msgid "In the Basic IDE you can use the following keyboard shortcuts:"
msgstr "在 Basic IDE 中,您可以使用以下快捷键:"
@@ -35297,7 +34124,6 @@ msgstr "在 Basic IDE 中,您可以使用以下快捷键:"
msgctxt ""
"keys.xhp\n"
"par_id3154908\n"
-"3\n"
"help.text"
msgid "Action"
msgstr "操作"
@@ -35306,7 +34132,6 @@ msgstr "操作"
msgctxt ""
"keys.xhp\n"
"par_id3153192\n"
-"4\n"
"help.text"
msgid "Keyboard shortcut"
msgstr "快捷键"
@@ -35315,7 +34140,6 @@ msgstr "快捷键"
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 "从第一行开始执行代码,或从当前的断点开始执行代码(如果程序以前曾在该断点中断过)"
@@ -35324,7 +34148,6 @@ msgstr "从第一行开始执行代码,或从当前的断点开始执行代码
msgctxt ""
"keys.xhp\n"
"par_id3163712\n"
-"6\n"
"help.text"
msgid "F5"
msgstr "F5"
@@ -35333,7 +34156,6 @@ msgstr "F5"
msgctxt ""
"keys.xhp\n"
"par_id3150010\n"
-"7\n"
"help.text"
msgid "Stop"
msgstr "Stop"
@@ -35342,7 +34164,6 @@ msgstr "Stop"
msgctxt ""
"keys.xhp\n"
"par_id3154319\n"
-"8\n"
"help.text"
msgid "Shift+F5"
msgstr "Shift+F5"
@@ -35351,7 +34172,6 @@ msgstr "Shift+F5"
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 "给位于光标位置的变量添加<link href=\"text/sbasic/shared/01050100.xhp\" name=\"监视\">监视</link>"
@@ -35360,7 +34180,6 @@ msgstr "给位于光标位置的变量添加<link href=\"text/sbasic/shared/0105
msgctxt ""
"keys.xhp\n"
"par_id3154731\n"
-"12\n"
"help.text"
msgid "F7"
msgstr "F7"
@@ -35369,7 +34188,6 @@ msgstr "F7"
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 "单步执行每个语句,从第一行或程序执行中断处的语句开始执行。"
@@ -35378,7 +34196,6 @@ msgstr "单步执行每个语句,从第一行或程序执行中断处的语句
msgctxt ""
"keys.xhp\n"
"par_id3150716\n"
-"14\n"
"help.text"
msgid "F8"
msgstr "F8"
@@ -35387,7 +34204,6 @@ msgstr "F8"
msgctxt ""
"keys.xhp\n"
"par_id3156275\n"
-"15\n"
"help.text"
msgid "Single step as with F8, but a function call is considered to be only <emph>one</emph> statement"
msgstr "使用 F8 键进行单步执行,但是函数调用将只作为<emph>一个</emph>语句考虑。"
@@ -35396,7 +34212,6 @@ msgstr "使用 F8 键进行单步执行,但是函数调用将只作为<emph>
msgctxt ""
"keys.xhp\n"
"par_id3153764\n"
-"16\n"
"help.text"
msgid "Shift+F8"
msgstr "Shift+F8"
@@ -35405,7 +34220,6 @@ msgstr "Shift+F8"
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 "设置或删除当前行中的<link href=\"text/sbasic/shared/01030300.xhp\" name=\"断点\">断点</link>或当前选择中的所有中断点。"
@@ -35414,7 +34228,6 @@ msgstr "设置或删除当前行中的<link href=\"text/sbasic/shared/01030300.x
msgctxt ""
"keys.xhp\n"
"par_id3147339\n"
-"18\n"
"help.text"
msgid "F9"
msgstr "F9"
@@ -35423,7 +34236,6 @@ msgstr "F9"
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 "启用/禁用当前行中的断点或当前选择中的所有断点。"
@@ -35432,7 +34244,6 @@ msgstr "启用/禁用当前行中的断点或当前选择中的所有断点。"
msgctxt ""
"keys.xhp\n"
"par_id3155175\n"
-"20\n"
"help.text"
msgid "Shift+F9"
msgstr "Shift+F9"
@@ -35441,7 +34252,6 @@ msgstr "Shift+F9"
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 "您可以通过按 Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q 组合键中断一个正在运行的宏,这也适用于从 Basic IDE 的外部。如果您是在 Basic IDE 内部,并且宏是在一个断点处中断的,请按 Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q 组合键停止执行该宏,但是只有按 F5 键、F8 键、或 Shift+F8 组合键之后才能看到此操作生效。。"
@@ -35466,7 +34276,6 @@ msgstr "<bookmark_value>工具栏; Basic IDE</bookmark_value><bookmark_value>宏
msgctxt ""
"main0211.xhp\n"
"hd_id3150543\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\">Macro Toolbar</link>"
msgstr "<link href=\"text/sbasic/shared/main0211.xhp\" name=\"宏工具栏\">宏工具栏</link>"
@@ -35475,7 +34284,6 @@ msgstr "<link href=\"text/sbasic/shared/main0211.xhp\" name=\"宏工具栏\">宏
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\"><emph>宏工具栏</emph> 包含用于创建、编辑和执行宏的命令。</ahelp>"
@@ -35492,7 +34300,6 @@ msgstr "$[officename] Basic 帮助"
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\">%PRODUCTNAME Basic 帮助</link>"
@@ -35501,7 +34308,6 @@ msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basi
msgctxt ""
"main0601.xhp\n"
"par_id3153894\n"
-"4\n"
"help.text"
msgid "%PRODUCTNAME provides an Application Programming Interface (API) that allows controlling the $[officename] components with different programming languages by using the $[officename] Software Development Kit (SDK). For more information about the $[officename] API and the Software Development Kit, visit <link href=\"http://api.libreoffice.org/\" name=\"http://api.libreoffice.org\">http://api.libreoffice.org</link>"
msgstr "%PRODUCTNAME 提供了一个应用程序接口(API),允许在不同的编程语言中使用 $[officename] 软件开发包(SDK) 对 $[officename] 的各部分进行操作。要了解更多信息,请访问 <link href=\"http://api.libreoffice.org/\" name=\"http://api.libreoffice.org\">http://api.libreoffice.org</link>."
@@ -35510,7 +34316,6 @@ msgstr "%PRODUCTNAME 提供了一个应用程序接口(API),允许在不同的
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 "本段帮助内容讲解了最常用的 %PRODUCTNAME Basic 运行时函数。更深入的信息请参考 Wiki 中的 <link href=\"http://wiki.documentfoundation.org/Documentation/BASIC_Guide\">OpenOffice.org BASIC 编程指南</link>。"
@@ -35519,7 +34324,6 @@ msgstr "本段帮助内容讲解了最常用的 %PRODUCTNAME Basic 运行时函
msgctxt ""
"main0601.xhp\n"
"hd_id3146957\n"
-"9\n"
"help.text"
msgid "Working with %PRODUCTNAME Basic"
msgstr "使用 %PRODUCTNAME Basic"
@@ -35528,7 +34332,6 @@ msgstr "使用 %PRODUCTNAME Basic"
msgctxt ""
"main0601.xhp\n"
"hd_id3148473\n"
-"7\n"
"help.text"
msgid "Help about the Help"
msgstr "帮助向导"
diff --git a/source/zh-CN/helpcontent2/source/text/sbasic/shared/01.po b/source/zh-CN/helpcontent2/source/text/sbasic/shared/01.po
index 606975978a8..d9d8bdcd517 100644
--- a/source/zh-CN/helpcontent2/source/text/sbasic/shared/01.po
+++ b/source/zh-CN/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.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2015-04-22 23:39+0200\n"
+"POT-Creation-Date: 2017-05-09 16:45+0200\n"
"PO-Revision-Date: 2015-06-23 03:34+0000\n"
"Last-Translator: 琨珑 锁 <suokunlong@126.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1435030470.000000\n"
#: 06130000.xhp
@@ -36,7 +36,6 @@ msgstr "<bookmark_value>宏; Basic IDE</bookmark_value><bookmark_value>Basic IDE
msgctxt ""
"06130000.xhp\n"
"hd_id3145786\n"
-"1\n"
"help.text"
msgid "Macro"
msgstr "宏"
@@ -45,7 +44,6 @@ msgstr "宏"
msgctxt ""
"06130000.xhp\n"
"par_id3152886\n"
-"2\n"
"help.text"
msgid "<variable id=\"makro\"><ahelp hid=\".uno:ChooseMacro\">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=\".uno:ChooseMacro\">打开<emph>宏 </emph>对话框,您可以在该对话框中创建、编辑,组织并运行 $[officename] Basic 宏程序</ahelp></variable>"
@@ -54,7 +52,6 @@ msgstr "<variable id=\"makro\"><ahelp hid=\".uno:ChooseMacro\">打开<emph>宏 <
msgctxt ""
"06130000.xhp\n"
"hd_id3154145\n"
-"3\n"
"help.text"
msgid "Macro name"
msgstr "宏名称"
@@ -63,7 +60,6 @@ msgstr "宏名称"
msgctxt ""
"06130000.xhp\n"
"par_id3151116\n"
-"4\n"
"help.text"
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 "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/macronameedit\">显示选中宏的名称。要创建或更改宏名称,请在此输入一个名字。</ahelp>"
@@ -72,7 +68,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/macronameedit\">显示
msgctxt ""
"06130000.xhp\n"
"hd_id3153729\n"
-"7\n"
"help.text"
msgid "Macro from / Save macro in"
msgstr "宏的来源/保存宏"
@@ -81,7 +76,6 @@ msgstr "宏的来源/保存宏"
msgctxt ""
"06130000.xhp\n"
"par_id3153190\n"
-"8\n"
"help.text"
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=\"modules/BasicIDE/ui/basicmacrodialog/libraries\">列出用来打开或保存宏的程序库和模块。要将宏保存特定文档中,请先打开该文档,然后再打开本对话框。</ahelp>"
@@ -90,7 +84,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/libraries\">列出用
msgctxt ""
"06130000.xhp\n"
"hd_id3146975\n"
-"11\n"
"help.text"
msgid "Run / Save"
msgstr "运行/保存"
@@ -99,7 +92,6 @@ msgstr "运行/保存"
msgctxt ""
"06130000.xhp\n"
"par_id3154791\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/run\">Runs or saves the current macro.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/run\">运行或保存当前宏。</ahelp>"
@@ -108,7 +100,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/run\">运行或保存
msgctxt ""
"06130000.xhp\n"
"hd_id3153158\n"
-"15\n"
"help.text"
msgid "Assign"
msgstr "指定"
@@ -117,7 +108,6 @@ msgstr "指定"
msgctxt ""
"06130000.xhp\n"
"par_id3149961\n"
-"16\n"
"help.text"
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 "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/assign\">打开“自定义”对话框,您可以将选中的宏分配给菜单命令、工具栏或事件。</ahelp>"
@@ -126,7 +116,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/assign\">打开“自
msgctxt ""
"06130000.xhp\n"
"hd_id3145799\n"
-"17\n"
"help.text"
msgid "Edit"
msgstr "编辑"
@@ -135,7 +124,6 @@ msgstr "编辑"
msgctxt ""
"06130000.xhp\n"
"par_id3147127\n"
-"18\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/edit\">Starts the $[officename] Basic editor and opens the selected macro for editing.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/edit\">启动 $[officename] Basic 宏编辑器,并打开选定的宏用于编辑。</ahelp>"
@@ -144,7 +132,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/edit\">启动 $[office
msgctxt ""
"06130000.xhp\n"
"hd_id3149400\n"
-"19\n"
"help.text"
msgid "New/Delete"
msgstr "新建/删除"
@@ -153,7 +140,6 @@ msgstr "新建/删除"
msgctxt ""
"06130000.xhp\n"
"par_id3155602\n"
-"61\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/delete\">Creates a new macro, or deletes the selected macro.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/delete\">创建一个新的宏,或删除选中宏。</ahelp>"
@@ -162,7 +148,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/delete\">创建一个
msgctxt ""
"06130000.xhp\n"
"par_id3149124\n"
-"20\n"
"help.text"
msgid "To create a new macro, select the \"Standard\" module in the <emph>Macro from</emph> list, and then click <emph>New</emph>."
msgstr "要创建新的宏,请在<emph>宏的来源</emph>列表中选择“标准”模块,然后单击<emph>新建</emph>。"
@@ -171,7 +156,6 @@ msgstr "要创建新的宏,请在<emph>宏的来源</emph>列表中选择“
msgctxt ""
"06130000.xhp\n"
"par_id3150749\n"
-"21\n"
"help.text"
msgid "To delete a macro, select it, and then click <emph>Delete</emph>."
msgstr "要删除宏,请选择希望删除的宏,然后单击<emph>删除</emph>。"
@@ -180,7 +164,6 @@ msgstr "要删除宏,请选择希望删除的宏,然后单击<emph>删除</e
msgctxt ""
"06130000.xhp\n"
"hd_id3153764\n"
-"22\n"
"help.text"
msgid "Organizer"
msgstr "管理器"
@@ -189,7 +172,6 @@ msgstr "管理器"
msgctxt ""
"06130000.xhp\n"
"par_id3148405\n"
-"23\n"
"help.text"
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=\"modules/BasicIDE/ui/basicmacrodialog/organize\">打开“<emph>宏管理器</emph>”对话框,您可以在其中添加、编辑或删除现有的宏模块、对话框和程序库。</ahelp>"
@@ -198,7 +180,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/organize\">打开“<e
msgctxt ""
"06130000.xhp\n"
"hd_id3166447\n"
-"29\n"
"help.text"
msgid "Module/Dialog"
msgstr "模块/对话框"
@@ -207,7 +188,6 @@ msgstr "模块/对话框"
msgctxt ""
"06130000.xhp\n"
"par_id3155959\n"
-"30\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/modulepage/library\">Lists the existing macros and dialogs.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/modulepage/library\">列出现有的宏和对话框。</ahelp>"
@@ -216,7 +196,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/modulepage/library\">列出现有的宏
msgctxt ""
"06130000.xhp\n"
"par_id3149922\n"
-"31\n"
"help.text"
msgid "You can drag-and-drop a module or a dialog between libraries."
msgstr "您可以在库之间拖放一个模块或对话框."
@@ -225,7 +204,6 @@ msgstr "您可以在库之间拖放一个模块或对话框."
msgctxt ""
"06130000.xhp\n"
"par_id3159333\n"
-"33\n"
"help.text"
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 "要复制对话框或模块,请在拖放时按住 <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> 键。"
@@ -234,7 +212,6 @@ msgstr "要复制对话框或模块,请在拖放时按住 <switchinline select
msgctxt ""
"06130000.xhp\n"
"hd_id3147131\n"
-"34\n"
"help.text"
msgid "Edit"
msgstr "编辑"
@@ -243,7 +220,6 @@ msgstr "编辑"
msgctxt ""
"06130000.xhp\n"
"par_id3149816\n"
-"35\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/modulepage/edit\">Opens the selected macro or dialog for editing.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/modulepage/edit\">打开选定的宏或对话框以进行编辑。</ahelp>"
@@ -252,7 +228,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/modulepage/edit\">打开选定的宏或
msgctxt ""
"06130000.xhp\n"
"hd_id3151214\n"
-"36\n"
"help.text"
msgid "New"
msgstr "新建"
@@ -261,7 +236,6 @@ msgstr "新建"
msgctxt ""
"06130000.xhp\n"
"par_id3154202\n"
-"37\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/modulepage/newmodule\">Creates a new module.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/modulepage/newmodule\">创建新的模块。</ahelp>"
@@ -270,7 +244,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/modulepage/newmodule\">创建新的模
msgctxt ""
"06130000.xhp\n"
"par_id3153269\n"
-"40\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/modulepage/newdialog\">Creates a new dialog.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/modulepage/newdialog\">创建新对话框。</ahelp>"
@@ -279,7 +252,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/modulepage/newdialog\">创建新对话
msgctxt ""
"06130000.xhp\n"
"hd_id3154587\n"
-"42\n"
"help.text"
msgid "Libraries tab page"
msgstr "“程序库”选项卡页面"
@@ -288,7 +260,6 @@ msgstr "“程序库”选项卡页面"
msgctxt ""
"06130000.xhp\n"
"par_id3153705\n"
-"43\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/modulepage/newdialog\">Lets you manage the macro libraries.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/modulepage/newdialog\">让您管理宏程序库。</ahelp>"
@@ -297,7 +268,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/modulepage/newdialog\">让您管理宏
msgctxt ""
"06130000.xhp\n"
"hd_id3145259\n"
-"44\n"
"help.text"
msgid "Location"
msgstr "位置"
@@ -306,7 +276,6 @@ msgstr "位置"
msgctxt ""
"06130000.xhp\n"
"par_id3153234\n"
-"45\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/libpage/location\">Select the location containing the macro libraries that you want to organize.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/location\">选择要管理的宏库所在的位置。</ahelp>"
@@ -315,7 +284,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/location\">选择要管理的
msgctxt ""
"06130000.xhp\n"
"hd_id3148460\n"
-"46\n"
"help.text"
msgid "Library"
msgstr "程序库"
@@ -324,7 +292,6 @@ msgstr "程序库"
msgctxt ""
"06130000.xhp\n"
"par_id3150828\n"
-"47\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/libpage/library\">Lists the macro libraries in the chosen location.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/library\">在选定的位置列出宏库。</ahelp>"
@@ -333,7 +300,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/library\">在选定的位置列
msgctxt ""
"06130000.xhp\n"
"hd_id3145134\n"
-"48\n"
"help.text"
msgid "Edit"
msgstr "编辑"
@@ -342,7 +308,6 @@ msgstr "编辑"
msgctxt ""
"06130000.xhp\n"
"par_id3150518\n"
-"49\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/libpage/edit\">Opens the $[officename] Basic editor so that you can modify the selected library.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/edit\">打开 $[officename] Basic 编辑器,修改选定库。</ahelp>"
@@ -351,7 +316,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/edit\">打开 $[officename] Bas
msgctxt ""
"06130000.xhp\n"
"hd_id3150371\n"
-"50\n"
"help.text"
msgid "Password"
msgstr "密码"
@@ -360,7 +324,6 @@ msgstr "密码"
msgctxt ""
"06130000.xhp\n"
"par_id3166430\n"
-"51\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/libpage/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=\"modules/BasicIDE/ui/libpage/password\">指定或编辑选定库的<link href=\"text/sbasic/shared/01/06130100.xhp\" name=\"password\">密码</link>。“标准”程序库不需密码。</ahelp>"
@@ -369,7 +332,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/password\">指定或编辑选
msgctxt ""
"06130000.xhp\n"
"hd_id3154372\n"
-"52\n"
"help.text"
msgid "New"
msgstr "新建"
@@ -378,7 +340,6 @@ msgstr "新建"
msgctxt ""
"06130000.xhp\n"
"par_id3145387\n"
-"53\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/libpage/new\">Creates a new library.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/new\">创建新库。</ahelp>"
@@ -387,7 +348,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/new\">创建新库。</ahelp>"
msgctxt ""
"06130000.xhp\n"
"hd_id3154259\n"
-"56\n"
"help.text"
msgid "Name"
msgstr "名称"
@@ -396,7 +356,6 @@ msgstr "名称"
msgctxt ""
"06130000.xhp\n"
"par_id3156169\n"
-"57\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/newlibdialog/NewLibDialog\">Enter a name for the new module, dialog, or library.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/newlibdialog/NewLibDialog\">为新的模块、对话框或库输入名称。</ahelp>"
@@ -405,7 +364,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/newlibdialog/NewLibDialog\">为新的
msgctxt ""
"06130000.xhp\n"
"hd_id3151183\n"
-"54\n"
"help.text"
msgid "Append"
msgstr "附加"
@@ -414,7 +372,6 @@ msgstr "附加"
msgctxt ""
"06130000.xhp\n"
"par_id3155126\n"
-"55\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/libpage/import\">Locate that $[officename] Basic library that you want to add to the current list, and then click Open.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/import\">找到要添加到当前列表中的 $[officename] Basic 库,然后单击“打开”。</ahelp>"
@@ -431,7 +388,6 @@ msgstr "修改密码"
msgctxt ""
"06130100.xhp\n"
"hd_id3159399\n"
-"1\n"
"help.text"
msgid "Change Password"
msgstr "修改密码"
@@ -440,7 +396,6 @@ msgstr "修改密码"
msgctxt ""
"06130100.xhp\n"
"par_id3150276\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/passwd/PasswordDialog\">Protects the selected library with a password.</ahelp> You can enter a new password, or change the current password."
msgstr "<ahelp hid=\"svx/ui/passwd/PasswordDialog\">使用密码保护选定的库。</ahelp>您可以输入一个新密码,或者更改当前密码。"
@@ -449,7 +404,6 @@ msgstr "<ahelp hid=\"svx/ui/passwd/PasswordDialog\">使用密码保护选定的
msgctxt ""
"06130100.xhp\n"
"hd_id3154285\n"
-"3\n"
"help.text"
msgid "Old password"
msgstr "旧密码"
@@ -458,7 +412,6 @@ msgstr "旧密码"
msgctxt ""
"06130100.xhp\n"
"hd_id3153665\n"
-"4\n"
"help.text"
msgid "Password"
msgstr "密码"
@@ -467,7 +420,6 @@ msgstr "密码"
msgctxt ""
"06130100.xhp\n"
"par_id3155628\n"
-"5\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/passwd/oldpassEntry\">Enter the current password for the selected library.</ahelp>"
msgstr "<ahelp hid=\"svx/ui/passwd/oldpassEntry\">输入选定库的当前密码。</ahelp>"
@@ -476,7 +428,6 @@ msgstr "<ahelp hid=\"svx/ui/passwd/oldpassEntry\">输入选定库的当前密码
msgctxt ""
"06130100.xhp\n"
"hd_id3153126\n"
-"6\n"
"help.text"
msgid "New password"
msgstr "新密码"
@@ -485,7 +436,6 @@ msgstr "新密码"
msgctxt ""
"06130100.xhp\n"
"hd_id3153628\n"
-"7\n"
"help.text"
msgid "Password"
msgstr "密码"
@@ -494,7 +444,6 @@ msgstr "密码"
msgctxt ""
"06130100.xhp\n"
"par_id3159413\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/passwd/newpassEntry\">Enter a new password for the selected library.</ahelp>"
msgstr "<ahelp hid=\"svx/ui/passwd/newpassEntry\">输入选定库的新密码。</ahelp>"
@@ -503,7 +452,6 @@ msgstr "<ahelp hid=\"svx/ui/passwd/newpassEntry\">输入选定库的新密码。
msgctxt ""
"06130100.xhp\n"
"hd_id3148947\n"
-"9\n"
"help.text"
msgid "Confirm"
msgstr "确认"
@@ -512,7 +460,6 @@ msgstr "确认"
msgctxt ""
"06130100.xhp\n"
"par_id3149457\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/passwd/confirmpassEntry\">Repeat the new password for the selected library.</ahelp>"
msgstr "<ahelp hid=\"svx/ui/passwd/confirmpassEntry\">再次输入选定库的新密码。</ahelp>"
@@ -537,7 +484,6 @@ msgstr "<bookmark_value>库; 添加</bookmark_value><bookmark_value>插入; Basi
msgctxt ""
"06130500.xhp\n"
"hd_id3150502\n"
-"1\n"
"help.text"
msgid "Append libraries"
msgstr "附加程序库"
@@ -546,7 +492,6 @@ msgstr "附加程序库"
msgctxt ""
"06130500.xhp\n"
"par_id3154840\n"
-"2\n"
"help.text"
msgid "Locate that <item type=\"productname\">%PRODUCTNAME</item> Basic library that you want to add to the current list, and then click Open."
msgstr "定位想要加入到当前列表中的 <item type=\"productname\">%PRODUCTNAME</item> Basic 程序库,然后单击“打开”。"
@@ -555,7 +500,6 @@ msgstr "定位想要加入到当前列表中的 <item type=\"productname\">%PROD
msgctxt ""
"06130500.xhp\n"
"hd_id3149119\n"
-"3\n"
"help.text"
msgid "File name:"
msgstr "文件名:"
@@ -564,7 +508,6 @@ msgstr "文件名:"
msgctxt ""
"06130500.xhp\n"
"par_id3147102\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/importlibdialog/ImportLibDialog\">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=\"modules/BasicIDE/ui/importlibdialog/ImportLibDialog\">输入要附加的库的名称或路径。</ahelp>也可以从列表中选择一个库。"
@@ -573,7 +516,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/importlibdialog/ImportLibDialog\">输
msgctxt ""
"06130500.xhp\n"
"hd_id3147291\n"
-"5\n"
"help.text"
msgid "Options"
msgstr "选项"
@@ -582,7 +524,6 @@ msgstr "选项"
msgctxt ""
"06130500.xhp\n"
"hd_id3147226\n"
-"7\n"
"help.text"
msgid "Insert as reference (read-only)"
msgstr "当作引用插入(只读)"
@@ -591,7 +532,6 @@ msgstr "当作引用插入(只读)"
msgctxt ""
"06130500.xhp\n"
"par_id3155892\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/importlibdialog/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=\"modules/BasicIDE/ui/importlibdialog/ref\">以只读文件的方式添加选定的库。每次启动 <item type=\"productname\">%PRODUCTNAME</item> 时,都会重新加载该库。</ahelp>"
@@ -600,7 +540,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/importlibdialog/ref\">以只读文件
msgctxt ""
"06130500.xhp\n"
"hd_id3145071\n"
-"9\n"
"help.text"
msgid "Replace existing libraries"
msgstr "替换现有库"
@@ -609,7 +548,6 @@ msgstr "替换现有库"
msgctxt ""
"06130500.xhp\n"
"par_id3149812\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/importlibdialog/replace\">Replaces a library that has the same name with the current library.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/importlibdialog/replace\">用当前库替换同名库。</ahelp>"
diff --git a/source/zh-CN/helpcontent2/source/text/sbasic/shared/02.po b/source/zh-CN/helpcontent2/source/text/sbasic/shared/02.po
index 719a2a93ab3..47eea9fb7f1 100644
--- a/source/zh-CN/helpcontent2/source/text/sbasic/shared/02.po
+++ b/source/zh-CN/helpcontent2/source/text/sbasic/shared/02.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2014-05-02 00:11+0200\n"
+"POT-Creation-Date: 2017-05-12 14:35+0200\n"
"PO-Revision-Date: 2014-07-01 10:09+0000\n"
-"Last-Translator: 琨珑 <suokunlong@gmail.com>\n"
+"Last-Translator: 琨珑 锁 <suokunlong@126.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1404209389.000000\n"
#: 11010000.xhp
@@ -28,7 +28,6 @@ msgstr "库"
msgctxt ""
"11010000.xhp\n"
"hd_id3151100\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11010000.xhp\" name=\"Library\">Library</link>"
msgstr "<link href=\"text/sbasic/shared/02/11010000.xhp\" name=\"程序库\">程序库</link>"
@@ -37,7 +36,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11010000.xhp\" name=\"程序库\">程
msgctxt ""
"11010000.xhp\n"
"par_id3154136\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:LibSelector\" visibility=\"visible\">Select the library that you want to edit.</ahelp> The first module of the library that you select is displayed in the Basic IDE."
msgstr "<ahelp visibility=\"visible\" hid=\".uno:LibSelector\">选择要编辑的程序库。</ahelp>选定程序库的第一个模块显示在 Basic IDE 中。"
@@ -47,14 +45,13 @@ msgctxt ""
"11010000.xhp\n"
"par_id3149095\n"
"help.text"
-msgid "<image src=\"res/helpimg/feldalle.png\" id=\"img_id3147576\" localize=\"true\"><alt id=\"alt_id3147576\">List box Library</alt></image>"
-msgstr "<image src=\"res/helpimg/feldalle.png\" id=\"img_id3147576\" localize=\"true\"><alt id=\"alt_id3147576\">列表框库</alt></image>"
+msgid "<image src=\"media/helpimg/feldalle.png\" id=\"img_id3147576\" localize=\"true\"><alt id=\"alt_id3147576\">List box Library</alt></image>"
+msgstr "<image src=\"media/helpimg/feldalle.png\" id=\"img_id3147576\" localize=\"true\"><alt id=\"alt_id3147576\">列表框库</alt></image>"
#: 11010000.xhp
msgctxt ""
"11010000.xhp\n"
"par_id3147654\n"
-"3\n"
"help.text"
msgid "Library List Box"
msgstr "“程序库”列表框"
@@ -71,7 +68,6 @@ msgstr "编译"
msgctxt ""
"11020000.xhp\n"
"hd_id3148983\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11020000.xhp\" name=\"Compile\">Compile</link>"
msgstr "<link href=\"text/sbasic/shared/02/11020000.xhp\" name=\"编译\">编译</link>"
@@ -80,7 +76,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11020000.xhp\" name=\"编译\">编译
msgctxt ""
"11020000.xhp\n"
"par_id3159201\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:CompileBasic\" visibility=\"visible\">Compiles the Basic macro.</ahelp> You need to compile a macro after you make changes to it, or if the macro uses single or procedure steps."
msgstr "<ahelp hid=\".uno:CompileBasic\" visibility=\"visible\">编译 Basic 宏。</ahelp>对某个宏进行修改之后,或者如果该宏使用了单个步骤或一系列步骤,就需要编译宏。"
@@ -97,7 +92,6 @@ msgstr "<image src=\"cmd/sc_compilebasic.png\" id=\"img_id3147576\"><alt id=\"al
msgctxt ""
"11020000.xhp\n"
"par_id3149399\n"
-"3\n"
"help.text"
msgid "Compile"
msgstr "编译"
@@ -114,7 +108,6 @@ msgstr "运行"
msgctxt ""
"11030000.xhp\n"
"hd_id3153255\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Run\">Run</link>"
msgstr "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"运行\">运行</link>"
@@ -123,7 +116,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"运行\">运行
msgctxt ""
"11030000.xhp\n"
"par_id3159201\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:RunBasic\">Runs the first macro of the current module.</ahelp>"
msgstr "<ahelp visibility=\"visible\" hid=\".uno:RunBasic\">运行当前模块的第一个宏。</ahelp>"
@@ -140,7 +132,6 @@ msgstr "<image id=\"img_id3153311\" src=\"cmd/sc_runbasic.png\" width=\"0.423cm\
msgctxt ""
"11030000.xhp\n"
"par_id3154750\n"
-"3\n"
"help.text"
msgid "Run"
msgstr "运行"
@@ -165,7 +156,6 @@ msgstr "<bookmark_value>宏; 正在停止</bookmark_value><bookmark_value>程序
msgctxt ""
"11040000.xhp\n"
"hd_id3154863\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11040000.xhp\" name=\"Stop\">Stop</link>"
msgstr "<link href=\"text/sbasic/shared/02/11040000.xhp\" name=\"停止\">停止</link>"
@@ -174,7 +164,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11040000.xhp\" name=\"停止\">停止
msgctxt ""
"11040000.xhp\n"
"par_id3147226\n"
-"2\n"
"help.text"
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\">停止运行当前宏。</ahelp><switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>您也可以按 Shift+Ctrl+Q 组合键。</defaultinline></switchinline>"
@@ -191,7 +180,6 @@ msgstr "<image id=\"img_id3148538\" src=\"cmd/sc_basicstop.png\" width=\"0.222in
msgctxt ""
"11040000.xhp\n"
"par_id3150986\n"
-"3\n"
"help.text"
msgid "Stop"
msgstr "停止"
@@ -208,7 +196,6 @@ msgstr "单步"
msgctxt ""
"11050000.xhp\n"
"hd_id3155934\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Single Step</link>"
msgstr "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"单步\">单步</link>"
@@ -217,7 +204,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"单步\">单步
msgctxt ""
"11050000.xhp\n"
"par_id3146117\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:BasicStepInto\">Runs the macro and stops it after the next command.</ahelp>"
msgstr "<ahelp hid=\".uno:BasicStepInto\">运行宏,并在下一条命令后停止。</ahelp>"
@@ -226,7 +212,6 @@ msgstr "<ahelp hid=\".uno:BasicStepInto\">运行宏,并在下一条命令后
msgctxt ""
"11050000.xhp\n"
"par_id3152801\n"
-"4\n"
"help.text"
msgid "You can use this command in conjunction with the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> command to troubleshoot errors."
msgstr "可以将此命令与 <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> 命令结合使用来排除错误。"
@@ -243,7 +228,6 @@ msgstr "<image id=\"img_id3153345\" src=\"cmd/sc_basicstepinto.png\" width=\"0.2
msgctxt ""
"11050000.xhp\n"
"par_id3147573\n"
-"3\n"
"help.text"
msgid "Single Step"
msgstr "单步"
@@ -252,7 +236,6 @@ msgstr "单步"
msgctxt ""
"11050000.xhp\n"
"par_id3149235\n"
-"6\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Procedure Step function\">Procedure Step function</link>"
msgstr "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"单步处理功能\">单步处理功能</link>"
@@ -269,7 +252,6 @@ msgstr "单步处理"
msgctxt ""
"11060000.xhp\n"
"hd_id3148520\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Procedure Step\">Procedure Step</link>"
msgstr "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"单步处理\">单步处理</link>"
@@ -278,7 +260,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"单步处理\">
msgctxt ""
"11060000.xhp\n"
"par_id3152363\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:BasicStepOver\">Runs the macro and stops it after the next procedure.</ahelp>"
msgstr "<ahelp hid=\".uno:BasicStepOver\">运行宏,并在下一个过程后停止。</ahelp>"
@@ -287,7 +268,6 @@ msgstr "<ahelp hid=\".uno:BasicStepOver\">运行宏,并在下一个过程后
msgctxt ""
"11060000.xhp\n"
"par_id3153394\n"
-"4\n"
"help.text"
msgid "You can use this command in conjunction with the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> command to troubleshoot errors."
msgstr "可以将此命令与 <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> 命令结合使用来排除错误。"
@@ -304,7 +284,6 @@ msgstr "<image id=\"img_id3143267\" src=\"cmd/sc_basicstepover.png\" width=\"0.2
msgctxt ""
"11060000.xhp\n"
"par_id3154307\n"
-"3\n"
"help.text"
msgid "Procedure Step"
msgstr "单步处理"
@@ -313,7 +292,6 @@ msgstr "单步处理"
msgctxt ""
"11060000.xhp\n"
"par_id3153562\n"
-"6\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step function\">Single Step function</link>"
msgstr "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"单步功能\">单步功能</link>"
@@ -330,7 +308,6 @@ msgstr "断点"
msgctxt ""
"11070000.xhp\n"
"hd_id3154863\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11070000.xhp\" name=\"Breakpoint\">Breakpoint</link>"
msgstr "<link href=\"text/sbasic/shared/02/11070000.xhp\" name=\"断点\">断点</link>"
@@ -339,7 +316,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11070000.xhp\" name=\"断点\">断点
msgctxt ""
"11070000.xhp\n"
"par_id3155364\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:ToggleBreakPoint\">Inserts a breakpoint in the program line.</ahelp>"
msgstr "<ahelp hid=\".uno:ToggleBreakPoint\">在程序行中插入断点。</ahelp>"
@@ -348,7 +324,6 @@ msgstr "<ahelp hid=\".uno:ToggleBreakPoint\">在程序行中插入断点。</ahe
msgctxt ""
"11070000.xhp\n"
"par_id3149346\n"
-"4\n"
"help.text"
msgid "The breakpoint is inserted at the cursor position. Use a breakpoint to interrupt a program just before an error occurs. You can then troubleshoot the program by running it in <link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Single Step</link> mode until the error occurs. You can also use the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> icon to check the content of the relevant variables."
msgstr "断点会插入到光标所在的位置。使用断点在错误发生之前中断程序。然后可以在 <link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"单步\">单步</link> 模式下执行程序,直到发生错误,以便确定程序中的问题。也可以使用 <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"监视\">监视</link> 图标检查相关变量的内容。"
@@ -365,7 +340,6 @@ msgstr "<image id=\"img_id3152780\" src=\"cmd/sc_togglebreakpoint.png\" width=\"
msgctxt ""
"11070000.xhp\n"
"par_id3149416\n"
-"3\n"
"help.text"
msgid "Breakpoint"
msgstr "断点"
@@ -382,7 +356,6 @@ msgstr "启用监视"
msgctxt ""
"11080000.xhp\n"
"hd_id3154863\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Enable Watch\">Enable Watch</link>"
msgstr "<link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"启用监视\">启用监视</link>"
@@ -391,7 +364,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"启用监视\">
msgctxt ""
"11080000.xhp\n"
"par_id3093440\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:AddWatch\">Click this icon to view the variables in a macro. The contents of the variable are displayed in a separate window.</ahelp>"
msgstr "<ahelp hid=\".uno:AddWatch\">单击此图标以查看宏中的变量。变量的内容将在一个单独的窗口中显示。</ahelp>"
@@ -400,7 +372,6 @@ msgstr "<ahelp hid=\".uno:AddWatch\">单击此图标以查看宏中的变量。
msgctxt ""
"11080000.xhp\n"
"par_id3147399\n"
-"6\n"
"help.text"
msgid "Click the name of a variable to select it, then click the <emph>Enable Watch</emph> icon. The value that is assigned to the variable is displayed next to its name. This value is constantly updated."
msgstr "单击变量的名称,将其选中,然后单击<emph>启用监视</emph>图标。指定给变量的值显示在变量名称的旁边。此值会不断更新。"
@@ -417,7 +388,6 @@ msgstr "<image id=\"img_id3147209\" src=\"cmd/sc_addwatch.png\" width=\"0.222inc
msgctxt ""
"11080000.xhp\n"
"par_id3150276\n"
-"3\n"
"help.text"
msgid "Enable Watch"
msgstr "启用监视"
@@ -426,7 +396,6 @@ msgstr "启用监视"
msgctxt ""
"11080000.xhp\n"
"par_id3159158\n"
-"4\n"
"help.text"
msgid "To remove the variable watch, select the variable in the Watch window, and then click on the <emph>Remove Watch</emph> icon."
msgstr "要取消变量监视,请在“监视”窗口中选择变量,然后单击<emph>取消监视</emph>图标。"
@@ -443,7 +412,6 @@ msgstr "对象目录"
msgctxt ""
"11090000.xhp\n"
"hd_id3153255\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11090000.xhp\" name=\"Object Catalog\">Object Catalog</link>"
msgstr "<link href=\"text/sbasic/shared/02/11090000.xhp\" name=\"对象类别\">对象类别</link>"
@@ -452,7 +420,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11090000.xhp\" name=\"对象类别\">
msgctxt ""
"11090000.xhp\n"
"par_id3151384\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:ObjectCatalog\">Opens the <emph>Objects</emph> pane, where you can view Basic objects.</ahelp>"
msgstr "<ahelp hid=\".uno:ObjectCatalog\">打开<emph>对象</emph>面板,用于查看Basic对象。</ahelp>"
@@ -461,7 +428,6 @@ msgstr "<ahelp hid=\".uno:ObjectCatalog\">打开<emph>对象</emph>面板,用
msgctxt ""
"11090000.xhp\n"
"par_id3147576\n"
-"15\n"
"help.text"
msgid "Double click the name of a function or sub to load the module that contains that function or sub, and to position the cursor. Double click the name of a module or dialog to load and display that module or dialog."
msgstr "双击函数或sub名称以加载包含该函数或sub的模块,并定位光标。双击模块或对话框的名称以加载该模块或对话框。"
@@ -478,7 +444,6 @@ msgstr "<image id=\"img_id3163803\" src=\"cmd/sc_objectcatalog.png\" width=\"0.1
msgctxt ""
"11090000.xhp\n"
"par_id3154515\n"
-"3\n"
"help.text"
msgid "Object Catalog"
msgstr "对象目录"
@@ -487,7 +452,6 @@ msgstr "对象目录"
msgctxt ""
"11090000.xhp\n"
"hd_id3146794\n"
-"13\n"
"help.text"
msgid "Window Area"
msgstr "窗口区域"
@@ -496,7 +460,6 @@ msgstr "窗口区域"
msgctxt ""
"11090000.xhp\n"
"par_id3149655\n"
-"14\n"
"help.text"
msgid "<ahelp hid=\"HID_BASICIDE_OBJECTCAT\">Displays a hierarchical view of the current $[officename] macro libraries, modules, and dialogs. To display the contents of an item in the window, double click its name.</ahelp>"
msgstr "<ahelp hid=\"HID_BASICIDE_OBJECTCAT\">显示当前 $[officename] macro 程序库、模块和对话框的层级视图。要显示某个项目的内容,请双击其名称。</ahelp>"
@@ -513,7 +476,6 @@ msgstr "宏"
msgctxt ""
"11100000.xhp\n"
"hd_id3156183\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11100000.xhp\" name=\"Macros\">Macros</link>"
msgstr "<link href=\"text/sbasic/shared/02/11100000.xhp\" name=\"宏\">宏</link>"
@@ -522,7 +484,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11100000.xhp\" name=\"宏\">宏</link
msgctxt ""
"11100000.xhp\n"
"par_id3147399\n"
-"2\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\".uno:ChooseMacro\">Opens the <emph>Macro</emph> dialog.</ahelp>"
msgstr "<ahelp visibility=\"visible\" hid=\".uno:ChooseMacro\">打开<emph>宏</emph>对话框。</ahelp>"
@@ -539,7 +500,6 @@ msgstr "<image src=\"cmd/sc_choosemacro.png\" id=\"img_id3153662\"><alt id=\"alt
msgctxt ""
"11100000.xhp\n"
"par_id3153542\n"
-"3\n"
"help.text"
msgid "Macros"
msgstr "宏"
@@ -556,7 +516,6 @@ msgstr "模块"
msgctxt ""
"11110000.xhp\n"
"hd_id3148520\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11110000.xhp\" name=\"Modules\">Modules</link>"
msgstr "<link href=\"text/sbasic/shared/02/11110000.xhp\" name=\"模块\">模块</link>"
@@ -565,7 +524,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11110000.xhp\" name=\"模块\">模块
msgctxt ""
"11110000.xhp\n"
"par_id3156414\n"
-"2\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\".uno:ModuleDialog\">Click here to open the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Macro Organizer</emph></link> dialog.</ahelp>"
msgstr "<ahelp visibility=\"visible\" hid=\".uno:ModuleDialog\">单击此处打开<link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"宏管理器\"><emph>宏管理器</emph></link>对话框。</ahelp>"
@@ -582,7 +540,6 @@ msgstr "<image src=\"cmd/sc_moduledialog.png\" id=\"img_id3155535\"><alt id=\"al
msgctxt ""
"11110000.xhp\n"
"par_id3145383\n"
-"3\n"
"help.text"
msgid "Modules"
msgstr "模块"
@@ -599,7 +556,6 @@ msgstr "查找括号"
msgctxt ""
"11120000.xhp\n"
"hd_id3149497\n"
-"1\n"
"help.text"
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=\"查找括号\">查找括号</link>"
@@ -608,7 +564,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11120000.xhp\" name=\"查找括号\">
msgctxt ""
"11120000.xhp\n"
"par_id3155150\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:MatchGroup\" visibility=\"visible\">Highlights the text that is enclosed by two corresponding brackets. Place the text cursor in front of an opening or closing bracket, and then click this icon.</ahelp>"
msgstr "<ahelp hid=\".uno:MatchGroup\" visibility=\"visible\">突出显示用两个相应括号括起的文字。将文字光标放到左括号或右括号之前,然后单击此图标。</ahelp>"
@@ -625,7 +580,6 @@ msgstr "<image src=\"cmd/sc_matchgroup.png\" id=\"img_id3155892\"><alt id=\"alt_
msgctxt ""
"11120000.xhp\n"
"par_id3147276\n"
-"3\n"
"help.text"
msgid "Find Parentheses"
msgstr "查找括号"
@@ -642,7 +596,6 @@ msgstr "插入源文本"
msgctxt ""
"11140000.xhp\n"
"hd_id3154044\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11140000.xhp\" name=\"Insert Source Text\">Insert Source Text</link>"
msgstr "<link href=\"text/sbasic/shared/02/11140000.xhp\" name=\"插入源文本\">插入源文本</link>"
@@ -651,7 +604,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11140000.xhp\" name=\"插入源文本
msgctxt ""
"11140000.xhp\n"
"par_id3150702\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:LoadBasic\">Opens the Basic source text in the Basic IDE window.</ahelp>"
msgstr "<ahelp hid=\".uno:LoadBasic\">在 Basic IDE 窗口中打开 Basic 源文本。</ahelp>"
@@ -660,7 +612,6 @@ msgstr "<ahelp hid=\".uno:LoadBasic\">在 Basic IDE 窗口中打开 Basic 源文
msgctxt ""
"11140000.xhp\n"
"par_id3150445\n"
-"3\n"
"help.text"
msgid "Place the cursor in the code where you want to insert the source text, and then click the <emph>Insert source text</emph> icon. Locate the file that contains the Basic source text that you want to insert, and then click <emph>Open</emph>."
msgstr "将光标放到代码中要插入源文本的位置,然后单击<emph>插入源文本</emph>图标。找到含有要插入的 Basic 源文本的文件,然后单击<emph>打开</emph>。"
@@ -677,7 +628,6 @@ msgstr "<image id=\"img_id3147571\" src=\"cmd/sc_loadbasic.png\" width=\"0.1665i
msgctxt ""
"11140000.xhp\n"
"par_id3145346\n"
-"4\n"
"help.text"
msgid "Insert source text"
msgstr "插入源文本"
@@ -694,7 +644,6 @@ msgstr "源文本另存为"
msgctxt ""
"11150000.xhp\n"
"hd_id3149497\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11150000.xhp\" name=\"Save Source As\">Save Source As</link>"
msgstr "<link href=\"text/sbasic/shared/02/11150000.xhp\" name=\"源文本另存为\">源文本另存为</link>"
@@ -703,7 +652,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11150000.xhp\" name=\"源文本另存
msgctxt ""
"11150000.xhp\n"
"par_id3147261\n"
-"3\n"
"help.text"
msgid "<ahelp hid=\".uno:SaveBasicAs\">Saves the source code of the selected Basic macro.</ahelp>"
msgstr "<ahelp hid=\".uno:SaveBasicAs\">保存选定 Basic 宏的源代码。</ahelp>"
@@ -720,7 +668,6 @@ msgstr "<image id=\"img_id3149182\" src=\"cmd/sc_savebasicas.png\" width=\"0.222
msgctxt ""
"11150000.xhp\n"
"par_id3151110\n"
-"2\n"
"help.text"
msgid "Save Source As"
msgstr "源文本另存为"
@@ -737,7 +684,6 @@ msgstr "单步退出"
msgctxt ""
"11160000.xhp\n"
"hd_id3148983\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11160000.xhp\" name=\"Step Out\">Step Out</link>"
msgstr "<link href=\"text/sbasic/shared/02/11160000.xhp\" name=\"单步退出\">单步退出</link>"
@@ -746,7 +692,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11160000.xhp\" name=\"单步退出\">
msgctxt ""
"11160000.xhp\n"
"par_id3157898\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:BasicStepOut\" visibility=\"visible\">Jumps back to the previous routine in the current macro.</ahelp>"
msgstr "<ahelp hid=\".uno:BasicStepOut\" visibility=\"visible\">跳回当前宏的前一个例程。</ahelp>"
@@ -763,7 +708,6 @@ msgstr "<image src=\"cmd/sc_basicstepout.png\" id=\"img_id3159233\"><alt id=\"al
msgctxt ""
"11160000.xhp\n"
"par_id3158421\n"
-"3\n"
"help.text"
msgid "Step Out"
msgstr "单步退出"
@@ -780,7 +724,6 @@ msgstr "管理断点"
msgctxt ""
"11170000.xhp\n"
"hd_id3156183\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11170000.xhp\" name=\"Manage Breakpoints\">Manage Breakpoints</link>"
msgstr "<link href=\"text/sbasic/shared/02/11170000.xhp\" name=\"管理断点\">管理断点</link>"
@@ -789,7 +732,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11170000.xhp\" name=\"管理断点\">
msgctxt ""
"11170000.xhp\n"
"par_id3152363\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">Calls a dialog to manage breakpoints.</ahelp>"
msgstr "<ahelp hid=\".\">调用对话框以管理断点。</ahelp>"
@@ -806,7 +748,6 @@ msgstr "<image id=\"img_id3155339\" src=\"cmd/sc_managebreakpoints.png\" width=\
msgctxt ""
"11170000.xhp\n"
"par_id3145383\n"
-"3\n"
"help.text"
msgid "Manage Breakpoints"
msgstr "管理断点"
@@ -815,7 +756,6 @@ msgstr "管理断点"
msgctxt ""
"11170000.xhp\n"
"par_id3154897\n"
-"4\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Manage Breakpoints dialog\"><emph>Manage Breakpoints</emph> dialog</link>"
msgstr "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"“管理断点”对话框\"><emph>管理断点</emph>对话框</link>"
@@ -832,7 +772,6 @@ msgstr "导入对话框"
msgctxt ""
"11180000.xhp\n"
"hd_id3156183\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11180000.xhp\" name=\"Import Dialog\">Import Dialog</link>"
msgstr "<link href=\"text/sbasic/shared/02/11180000.xhp\" name=\"Import Dialog\">导入对话框</link>"
@@ -841,7 +780,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11180000.xhp\" name=\"Import Dialog\"
msgctxt ""
"11180000.xhp\n"
"par_id3152363\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">Calls an \"Open\" dialog to import a BASIC dialog file.</ahelp>"
msgstr "<ahelp hid=\".\">调用“打开”对话框导入一个 BASIC 对话框文件。</ahelp>"
@@ -906,7 +844,6 @@ msgstr "<image id=\"img_id3155339\" src=\"cmd/sc_importdialog.png\" width=\"0.16
msgctxt ""
"11180000.xhp\n"
"par_id3145383\n"
-"3\n"
"help.text"
msgid "Import Dialog"
msgstr "导入对话框"
@@ -923,7 +860,6 @@ msgstr "导出对话框"
msgctxt ""
"11190000.xhp\n"
"hd_id3156183\n"
-"1\n"
"help.text"
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=\"Export Dialog\">导出对话框</link>"
@@ -932,7 +868,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11190000.xhp\" name=\"Export Dialog\"
msgctxt ""
"11190000.xhp\n"
"par_id3152363\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">In the dialog editor, this command calls a \"Save as\" dialog to export the current BASIC dialog.</ahelp>"
msgstr "<ahelp hid=\".\">在对话框编辑器中,该命令调用“另存为”对话框导出当前的 BASIC 对话框。</ahelp>"
@@ -949,7 +884,6 @@ msgstr "<image id=\"img_id3155339\" src=\"cmd/sc_exportdialog.png\" width=\"0.16
msgctxt ""
"11190000.xhp\n"
"par_id3145383\n"
-"3\n"
"help.text"
msgid "Export Dialog"
msgstr "导出对话框"
@@ -974,7 +908,6 @@ msgstr "<bookmark_value>控件; 在对话框编辑器中</bookmark_value><bookma
msgctxt ""
"20000000.xhp\n"
"hd_id3150402\n"
-"1\n"
"help.text"
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=\"插入控件\">插入控件</link>"
@@ -983,7 +916,6 @@ msgstr "<link href=\"text/sbasic/shared/02/20000000.xhp\" name=\"插入控件\">
msgctxt ""
"20000000.xhp\n"
"par_id3147000\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:ChooseControls\">Opens the <emph>Toolbox</emph> bar.</ahelp>"
msgstr "<ahelp hid=\".uno:ChooseControls\">打开<emph>工具箱</emph>栏。</ahelp>"
@@ -1000,7 +932,6 @@ msgstr "<image id=\"img_id3147571\" src=\"cmd/sc_choosecontrols.png\" width=\"0.
msgctxt ""
"20000000.xhp\n"
"par_id3153749\n"
-"3\n"
"help.text"
msgid "Insert Controls"
msgstr "插入控件"
@@ -1009,7 +940,6 @@ msgstr "插入控件"
msgctxt ""
"20000000.xhp\n"
"par_id3157958\n"
-"5\n"
"help.text"
msgid "In edit mode, double-click a control to open the <link href=\"text/sbasic/shared/01170100.xhp\" name=\"properties dialog\">properties dialog</link>."
msgstr "在编辑模式下,双击某个控件可以打开<link href=\"text/sbasic/shared/01170100.xhp\" name=\"属性对话框\">属性对话框</link>。"
@@ -1018,7 +948,6 @@ msgstr "在编辑模式下,双击某个控件可以打开<link href=\"text/sba
msgctxt ""
"20000000.xhp\n"
"par_id3148538\n"
-"6\n"
"help.text"
msgid "In edit mode, you can also right-click a control and choose the cut, copy, and paste command."
msgstr "在编辑模式下,在某个控制上单击鼠标右键可以选择剪切、复制和粘贴命令。"
@@ -1027,7 +956,6 @@ msgstr "在编辑模式下,在某个控制上单击鼠标右键可以选择剪
msgctxt ""
"20000000.xhp\n"
"hd_id3148473\n"
-"7\n"
"help.text"
msgid "Button"
msgstr "按钮"
@@ -1044,7 +972,6 @@ msgstr "<image id=\"img_id3157909\" src=\"cmd/sc_insertpushbutton.png\" width=\"
msgctxt ""
"20000000.xhp\n"
"par_id3147530\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertPushbutton\">Adds a command button.</ahelp> You can use a command button to execute a command for a defined event, such as a mouse click."
msgstr "<ahelp hid=\".uno:InsertPushbutton\">添加命令按钮。</ahelp>命令按钮可用于执行已定义事件的命令,例如鼠标单击。"
@@ -1053,7 +980,6 @@ msgstr "<ahelp hid=\".uno:InsertPushbutton\">添加命令按钮。</ahelp>命令
msgctxt ""
"20000000.xhp\n"
"par_id3154923\n"
-"9\n"
"help.text"
msgid "If you want, you can add text or a graphic to the button."
msgstr "如果需要,可以在该按钮中添加文字或图形。"
@@ -1062,7 +988,6 @@ msgstr "如果需要,可以在该按钮中添加文字或图形。"
msgctxt ""
"20000000.xhp\n"
"hd_id3148550\n"
-"10\n"
"help.text"
msgid "Image Control"
msgstr "图像控件"
@@ -1079,7 +1004,6 @@ msgstr "<image id=\"img_id3144760\" src=\"cmd/sc_objectcatalog.png\" width=\"0.2
msgctxt ""
"20000000.xhp\n"
"par_id3151042\n"
-"11\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertImageControl\">Adds a control that displays a graphic.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertImageControl\">添加图形控制。</ahelp>"
@@ -1088,7 +1012,6 @@ msgstr "<ahelp hid=\".uno:InsertImageControl\">添加图形控制。</ahelp>"
msgctxt ""
"20000000.xhp\n"
"hd_id3150447\n"
-"12\n"
"help.text"
msgid "Check Box"
msgstr "复选框"
@@ -1105,7 +1028,6 @@ msgstr "<image id=\"img_id3150439\" src=\"cmd/sc_checkbox.png\" width=\"0.1665in
msgctxt ""
"20000000.xhp\n"
"par_id3147317\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\".uno:Checkbox\">Adds a check box that you can use to turn a function on or off.</ahelp>"
msgstr "<ahelp hid=\".uno:Checkbox\">添加用于打开或关闭某种功能的复选框。</ahelp>"
@@ -1114,7 +1036,6 @@ msgstr "<ahelp hid=\".uno:Checkbox\">添加用于打开或关闭某种功能的
msgctxt ""
"20000000.xhp\n"
"hd_id3150486\n"
-"14\n"
"help.text"
msgid "Option Button"
msgstr "选项字段"
@@ -1131,7 +1052,6 @@ msgstr "<image id=\"img_id3146921\" src=\"cmd/sc_radiobutton.png\" width=\"0.222
msgctxt ""
"20000000.xhp\n"
"par_id3153575\n"
-"15\n"
"help.text"
msgid "<ahelp hid=\".uno:Radiobutton\">Adds a button that allows a user to select from a number of options.</ahelp> Grouped option buttons must have consecutive tab indices. They are commonly encircled by a group box. If you have two groups of option buttons, you must insert a tab index between the tab indices of the two groups on the group frame."
msgstr "<ahelp hid=\".uno:Radiobutton\">添加用于在多个选项中进行选择的按钮。</ahelp>分组选项字段的选项卡索引必须连续,它们周围通常会有一个组框。如果有两组选项字段,则需要在组框上两个组的选项卡索引之间再插入一个选项卡索引。"
@@ -1140,7 +1060,6 @@ msgstr "<ahelp hid=\".uno:Radiobutton\">添加用于在多个选项中进行选
msgctxt ""
"20000000.xhp\n"
"hd_id3154729\n"
-"16\n"
"help.text"
msgid "Label Field"
msgstr "标签字段"
@@ -1157,7 +1076,6 @@ msgstr "<image id=\"img_id3153415\" src=\"cmd/sc_insertfixedtext.png\" width=\"0
msgctxt ""
"20000000.xhp\n"
"par_id3156181\n"
-"17\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertFixedText\">Adds a field for displaying text labels.</ahelp> These labels are only for displaying predefined text, and not for entering text."
msgstr "<ahelp hid=\".uno:InsertFixedText\">添加用于显示文字标签的字段。</ahelp>这些标签仅用于显示预设文字而不是用于输入文字。"
@@ -1166,7 +1084,6 @@ msgstr "<ahelp hid=\".uno:InsertFixedText\">添加用于显示文字标签的字
msgctxt ""
"20000000.xhp\n"
"hd_id3149123\n"
-"18\n"
"help.text"
msgid "Text Box"
msgstr "文字框"
@@ -1183,7 +1100,6 @@ msgstr "<image id=\"img_id3148996\" src=\"cmd/sc_edit.png\" width=\"0.0874inch\"
msgctxt ""
"20000000.xhp\n"
"par_id3153712\n"
-"19\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertEdit\">Adds an input box where you can enter and edit text.</ahelp>"
msgstr "<ahelp visibility=\"visible\" hid=\".uno:InsertEdit\">添加用于输入和编辑文字的输入框。</ahelp>"
@@ -1192,7 +1108,6 @@ msgstr "<ahelp visibility=\"visible\" hid=\".uno:InsertEdit\">添加用于输入
msgctxt ""
"20000000.xhp\n"
"hd_id3154253\n"
-"20\n"
"help.text"
msgid "List Box"
msgstr "列表框"
@@ -1209,7 +1124,6 @@ msgstr "<image id=\"img_id3163808\" src=\"cmd/sc_listbox.png\" width=\"0.1665inc
msgctxt ""
"20000000.xhp\n"
"par_id3155176\n"
-"21\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertListbox\">Adds a box where you can click an entry on a list.</ahelp>"
msgstr "<ahelp visibility=\"visible\" hid=\".uno:InsertListbox\">添加一个框,从中可以选择列表条目。</ahelp>"
@@ -1218,7 +1132,6 @@ msgstr "<ahelp visibility=\"visible\" hid=\".uno:InsertListbox\">添加一个框
msgctxt ""
"20000000.xhp\n"
"hd_id3150644\n"
-"22\n"
"help.text"
msgid "Combo Box"
msgstr "组合框"
@@ -1235,7 +1148,6 @@ msgstr "<image id=\"img_id3153200\" src=\"cmd/sc_combobox.png\" width=\"0.1665in
msgctxt ""
"20000000.xhp\n"
"par_id3154199\n"
-"23\n"
"help.text"
msgid "<ahelp hid=\".uno:Combobox\">Adds a combo box. A combo box is a one line list box that a user can click, and then choose an entry from the list.</ahelp> If you want, you can make the entries in the combo box \"read only\"."
msgstr "<ahelp hid=\".uno:Combobox\">添加组合框。组合框是一种单行列表框,单击它可以打开一个列表,以供选择列表中的条目。</ahelp>如果需要,可以将组合框中的条目设置为“只读”。"
@@ -1244,7 +1156,6 @@ msgstr "<ahelp hid=\".uno:Combobox\">添加组合框。组合框是一种单行
msgctxt ""
"20000000.xhp\n"
"hd_id3154585\n"
-"24\n"
"help.text"
msgid "Horizontal Scrollbar"
msgstr "水平滚动条"
@@ -1261,7 +1172,6 @@ msgstr "<image id=\"img_id3149530\" src=\"cmd/sc_hscrollbar.png\" width=\"0.222i
msgctxt ""
"20000000.xhp\n"
"par_id3153232\n"
-"25\n"
"help.text"
msgid "<ahelp hid=\".uno:HScrollbar\">Adds a horizontal scrollbar to the dialog.</ahelp>"
msgstr "<ahelp hid=\".uno:HScrollbar\">将水平向滚动栏添加到对话框中。</ahelp>"
@@ -1270,7 +1180,6 @@ msgstr "<ahelp hid=\".uno:HScrollbar\">将水平向滚动栏添加到对话框
msgctxt ""
"20000000.xhp\n"
"hd_id3154119\n"
-"26\n"
"help.text"
msgid "Vertical Scrollbar"
msgstr "垂直滚动栏"
@@ -1287,7 +1196,6 @@ msgstr "<image id=\"img_id3150203\" src=\"cmd/sc_vscrollbar.png\" width=\"0.1665
msgctxt ""
"20000000.xhp\n"
"par_id3155376\n"
-"27\n"
"help.text"
msgid "<ahelp hid=\".uno:VScrollbar\">Adds a vertical scrollbar to the dialog.</ahelp>"
msgstr "<ahelp visibility=\"visible\" hid=\".uno:VScrollbar\">将垂直滚动栏添加到对话框中。</ahelp>"
@@ -1296,7 +1204,6 @@ msgstr "<ahelp visibility=\"visible\" hid=\".uno:VScrollbar\">将垂直滚动栏
msgctxt ""
"20000000.xhp\n"
"hd_id3150313\n"
-"28\n"
"help.text"
msgid "Group Box"
msgstr "组合框"
@@ -1313,7 +1220,6 @@ msgstr "<image id=\"img_id3151335\" src=\"cmd/sc_groupbox.png\" width=\"0.222inc
msgctxt ""
"20000000.xhp\n"
"par_id3159622\n"
-"29\n"
"help.text"
msgid "<ahelp hid=\".uno:Groupbox\">Adds a frame that you can use to visually group similar controls, such as option buttons.</ahelp>"
msgstr "<ahelp hid=\".uno:Groupbox\">添加用于可视化分组类似控件(例如选项字段)的框。</ahelp>"
@@ -1322,7 +1228,6 @@ msgstr "<ahelp hid=\".uno:Groupbox\">添加用于可视化分组类似控件(
msgctxt ""
"20000000.xhp\n"
"par_id3148820\n"
-"30\n"
"help.text"
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 "要定义选项字段的两个不同分组,请先确保组框的选项卡索引位于两个分组的选项卡索引之间。"
@@ -1331,7 +1236,6 @@ msgstr "要定义选项字段的两个不同分组,请先确保组框的选项
msgctxt ""
"20000000.xhp\n"
"hd_id3149330\n"
-"31\n"
"help.text"
msgid "Progress Bar"
msgstr "进度条"
@@ -1348,7 +1252,6 @@ msgstr "<image id=\"img_id3150318\" src=\"cmd/sc_progressbar.png\" width=\"0.222
msgctxt ""
"20000000.xhp\n"
"par_id3157979\n"
-"32\n"
"help.text"
msgid "<ahelp hid=\".uno:ProgressBar\">Adds a progress bar to the dialog.</ahelp>"
msgstr "<ahelp visibility=\"visible\" hid=\".uno:ProgressBar\">将进度条添加到对话框中。</ahelp>"
@@ -1357,7 +1260,6 @@ msgstr "<ahelp visibility=\"visible\" hid=\".uno:ProgressBar\">将进度条添
msgctxt ""
"20000000.xhp\n"
"hd_id3145654\n"
-"33\n"
"help.text"
msgid "Horizontal Line"
msgstr "水平线"
@@ -1374,7 +1276,6 @@ msgstr "<image id=\"img_id3152872\" src=\"cmd/sc_hfixedline.png\" width=\"0.2201
msgctxt ""
"20000000.xhp\n"
"par_id3151000\n"
-"34\n"
"help.text"
msgid "<ahelp hid=\".uno:HFixedLine\">Adds a horizontal line to the dialog.</ahelp>"
msgstr "<ahelp visibility=\"visible\" hid=\".uno:HFixedLine\">将水平线条添加到对话框中。</ahelp>"
@@ -1383,7 +1284,6 @@ msgstr "<ahelp visibility=\"visible\" hid=\".uno:HFixedLine\">将水平线条添
msgctxt ""
"20000000.xhp\n"
"hd_id3155095\n"
-"35\n"
"help.text"
msgid "Vertical Line"
msgstr "垂直线"
@@ -1400,7 +1300,6 @@ msgstr "<image id=\"img_id3153249\" src=\"cmd/sc_vfixedline.png\" width=\"0.222i
msgctxt ""
"20000000.xhp\n"
"par_id3159203\n"
-"36\n"
"help.text"
msgid "<ahelp hid=\".uno:VFixedLine\">Adds a vertical line to the dialog.</ahelp>"
msgstr "<ahelp hid=\".uno:VFixedLine\">将垂直线条添加到对话框中。</ahelp>"
@@ -1409,7 +1308,6 @@ msgstr "<ahelp hid=\".uno:VFixedLine\">将垂直线条添加到对话框中。</
msgctxt ""
"20000000.xhp\n"
"hd_id3154540\n"
-"37\n"
"help.text"
msgid "Date Field"
msgstr "日期字段"
@@ -1426,7 +1324,6 @@ msgstr "<image id=\"img_id3151010\" src=\"cmd/sc_adddatefield.png\" width=\"0.22
msgctxt ""
"20000000.xhp\n"
"par_id3154214\n"
-"38\n"
"help.text"
msgid "<ahelp hid=\".uno:AddDateField\">Adds a date field.</ahelp>"
msgstr "<ahelp hid=\".uno:AddDateField\">添加日期字段。</ahelp>"
@@ -1435,7 +1332,6 @@ msgstr "<ahelp hid=\".uno:AddDateField\">添加日期字段。</ahelp>"
msgctxt ""
"20000000.xhp\n"
"par_id3150046\n"
-"39\n"
"help.text"
msgid "If you assign the \"dropdown\" property to the date field, a user can drop down a calendar to select a date."
msgstr "如果日期字段被指定了“可扩展”属性,则可以显示日历以从中选择日期。"
@@ -1444,7 +1340,6 @@ msgstr "如果日期字段被指定了“可扩展”属性,则可以显示日
msgctxt ""
"20000000.xhp\n"
"hd_id3151126\n"
-"40\n"
"help.text"
msgid "Time Field"
msgstr "时间字段"
@@ -1461,7 +1356,6 @@ msgstr "<image id=\"img_id3147077\" src=\"cmd/sc_timefield.png\" width=\"0.1665i
msgctxt ""
"20000000.xhp\n"
"par_id3151191\n"
-"41\n"
"help.text"
msgid "<ahelp hid=\"SID_INSERT_TIMEFIELD\">Adds a time field.</ahelp>"
msgstr "<ahelp hid=\"SID_INSERT_TIMEFIELD\">添加时间字段。</ahelp>"
@@ -1470,7 +1364,6 @@ msgstr "<ahelp hid=\"SID_INSERT_TIMEFIELD\">添加时间字段。</ahelp>"
msgctxt ""
"20000000.xhp\n"
"hd_id3154733\n"
-"42\n"
"help.text"
msgid "Numeric Field"
msgstr "数字字段"
@@ -1487,7 +1380,6 @@ msgstr "<image id=\"img_id3147499\" src=\"cmd/sc_insertnumericfield.png\" width=
msgctxt ""
"20000000.xhp\n"
"par_id3147244\n"
-"43\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertNumericField\">Adds a numeric field.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertNumericField\">添加数字字段。</ahelp>"
@@ -1496,7 +1388,6 @@ msgstr "<ahelp hid=\".uno:InsertNumericField\">添加数字字段。</ahelp>"
msgctxt ""
"20000000.xhp\n"
"hd_id3149870\n"
-"44\n"
"help.text"
msgid "Currency Field"
msgstr "货币字段"
@@ -1513,7 +1404,6 @@ msgstr "<image id=\"img_id3150435\" src=\"cmd/sc_currencyfield.png\" width=\"0.1
msgctxt ""
"20000000.xhp\n"
"par_id3154064\n"
-"45\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertCurrencyField\">Adds a currency field.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertCurrencyField\">添加货币字段。</ahelp>"
@@ -1522,7 +1412,6 @@ msgstr "<ahelp hid=\".uno:InsertCurrencyField\">添加货币字段。</ahelp>"
msgctxt ""
"20000000.xhp\n"
"hd_id3150117\n"
-"46\n"
"help.text"
msgid "Formatted Field"
msgstr "格式化的字段"
@@ -1539,7 +1428,6 @@ msgstr "<image id=\"img_id3152807\" src=\"cmd/sc_formattedfield.png\" width=\"0.
msgctxt ""
"20000000.xhp\n"
"par_id3146320\n"
-"47\n"
"help.text"
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\">添加一个文字框,用于定义输入、输出文本和所有限定值的格式。</ahelp>"
@@ -1548,7 +1436,6 @@ msgstr "<ahelp visibility=\"visible\" hid=\".uno:InsertFormattedField\">添加
msgctxt ""
"20000000.xhp\n"
"hd_id3156160\n"
-"48\n"
"help.text"
msgid "Pattern Field"
msgstr "掩码字段"
@@ -1565,7 +1452,6 @@ msgstr "<image id=\"img_id3150032\" src=\"cmd/sc_insertpatternfield.png\" width=
msgctxt ""
"20000000.xhp\n"
"par_id3147382\n"
-"49\n"
"help.text"
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\">添加掩码字段。</ahelp>掩码字段由输入掩码和字符掩码组成。输入掩码用于确定可以输入的用户数据。字符掩码用于确定掩码字段在加载窗体时的状态。"
@@ -1574,7 +1460,6 @@ msgstr "<ahelp hid=\".uno:InsertPatternField\">添加掩码字段。</ahelp>掩
msgctxt ""
"20000000.xhp\n"
"hd_id3146815\n"
-"50\n"
"help.text"
msgid "File Selection"
msgstr "选择文件"
@@ -1591,7 +1476,6 @@ msgstr "<image id=\"img_id3149101\" src=\"cmd/sc_filecontrol.png\" width=\"0.222
msgctxt ""
"20000000.xhp\n"
"par_id3145632\n"
-"51\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertFileControl\">Adds a button that opens a file selection dialog.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertFileControl\">添加用于打开文件选择对话框的按钮。</ahelp>"
@@ -1600,7 +1484,6 @@ msgstr "<ahelp hid=\".uno:InsertFileControl\">添加用于打开文件选择对
msgctxt ""
"20000000.xhp\n"
"hd_id3155912\n"
-"52\n"
"help.text"
msgid "Select"
msgstr "选择"
@@ -1617,7 +1500,6 @@ msgstr "<image id=\"img_id3150653\" src=\"cmd/sc_drawselect.png\" width=\"0.222i
msgctxt ""
"20000000.xhp\n"
"par_id3148465\n"
-"53\n"
"help.text"
msgid "<ahelp hid=\".\">Activates or deactivates the Selection mode. In this mode, you can select the controls in a dialog so that you can edit them.</ahelp>"
msgstr "<ahelp hid=\".\">激活或停用选择模式。在此模式下,可以在对话框中选择控件以便进行编辑。</ahelp>"
@@ -1626,7 +1508,6 @@ msgstr "<ahelp hid=\".\">激活或停用选择模式。在此模式下,可以
msgctxt ""
"20000000.xhp\n"
"hd_id3154055\n"
-"54\n"
"help.text"
msgid "Properties"
msgstr "属性"
@@ -1643,7 +1524,6 @@ msgstr "<image id=\"img_id3146874\" src=\"cmd/sc_controlproperties.png\" width=\
msgctxt ""
"20000000.xhp\n"
"par_id3151105\n"
-"55\n"
"help.text"
msgid "<ahelp hid=\".uno:ShowPropBrowser\">Opens a dialog where you can edit the <link href=\"text/sbasic/shared/01170100.xhp\" name=\"properties\">properties</link> of the selected control.</ahelp>"
msgstr "<ahelp hid=\".uno:ShowPropBrowser\">打开用于编辑选定控件的<link href=\"text/sbasic/shared/01170100.xhp\" name=\"属性\">属性</link>对话框。</ahelp>"
@@ -1652,7 +1532,6 @@ msgstr "<ahelp hid=\".uno:ShowPropBrowser\">打开用于编辑选定控件的<li
msgctxt ""
"20000000.xhp\n"
"hd_id3153746\n"
-"56\n"
"help.text"
msgid "Activate Test Mode"
msgstr "激活测试模式"
@@ -1669,7 +1548,6 @@ msgstr "<image id=\"img_id3148883\" src=\"cmd/sc_testmode.png\" width=\"0.222inc
msgctxt ""
"20000000.xhp\n"
"par_id3150699\n"
-"57\n"
"help.text"
msgid "<ahelp hid=\".uno:TestMode\">Starts test mode. Click the dialog closer icon to end test mode.</ahelp>"
msgstr "<ahelp hid=\".uno:TestMode\">启动测试模式。单击对话框关闭图标来结束测试模式。</ahelp>"
diff --git a/source/zh-CN/helpcontent2/source/text/scalc.po b/source/zh-CN/helpcontent2/source/text/scalc.po
index 5b3de94c43f..243c1048b1f 100644
--- a/source/zh-CN/helpcontent2/source/text/scalc.po
+++ b/source/zh-CN/helpcontent2/source/text/scalc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-04-16 21:40+0200\n"
+"POT-Creation-Date: 2017-05-09 16:45+0200\n"
"PO-Revision-Date: 2017-01-02 11:35+0000\n"
"Last-Translator: 锁琨珑 <suokunlong@126.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483356956.000000\n"
#: main0000.xhp
@@ -28,7 +28,6 @@ msgstr "欢迎使用 $[officename] Calc 帮助"
msgctxt ""
"main0000.xhp\n"
"hd_id3147338\n"
-"1\n"
"help.text"
msgid "Welcome to the $[officename] Calc Help"
msgstr "欢迎使用 $[officename] Calc 帮助"
@@ -37,7 +36,6 @@ msgstr "欢迎使用 $[officename] Calc 帮助"
msgctxt ""
"main0000.xhp\n"
"hd_id3153965\n"
-"3\n"
"help.text"
msgid "How to Work With $[officename] Calc"
msgstr "如何使用 $[officename] Calc"
@@ -46,7 +44,6 @@ msgstr "如何使用 $[officename] Calc"
msgctxt ""
"main0000.xhp\n"
"par_id3147004\n"
-"5\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Functions by Category\">List of Functions by Category</link>"
msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Functions by Category\">函数清单(按类别)</link>"
@@ -55,7 +52,6 @@ msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Functions by Ca
msgctxt ""
"main0000.xhp\n"
"hd_id3154659\n"
-"6\n"
"help.text"
msgid "$[officename] Calc Menus, Toolbars, and Keys"
msgstr "$[officename] Calc 中的菜单、工具栏和按键"
@@ -64,7 +60,6 @@ msgstr "$[officename] Calc 中的菜单、工具栏和按键"
msgctxt ""
"main0000.xhp\n"
"hd_id3150883\n"
-"4\n"
"help.text"
msgid "Help about the Help"
msgstr "使用帮助界面"
@@ -81,7 +76,6 @@ msgstr "菜单"
msgctxt ""
"main0100.xhp\n"
"hd_id3156023\n"
-"1\n"
"help.text"
msgid "<variable id=\"main0100\"><link href=\"text/scalc/main0100.xhp\" name=\"Menus\">Menus</link></variable>"
msgstr "<variable id=\"main0100\"><link href=\"text/scalc/main0100.xhp\" name=\"菜单\">菜单</link></variable>"
@@ -90,7 +84,6 @@ msgstr "<variable id=\"main0100\"><link href=\"text/scalc/main0100.xhp\" name=\"
msgctxt ""
"main0100.xhp\n"
"par_id3154760\n"
-"2\n"
"help.text"
msgid "The following menu commands are available for spreadsheets."
msgstr "您可以在电子表格中使用下列菜单命令。"
@@ -234,10 +227,26 @@ msgstr "切换当前工作表的网格线的显示"
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
+"hd_id033020170228348624\n"
+"help.text"
+msgid "Show Formula"
+msgstr ""
+
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id03302017024610704\n"
+"help.text"
+msgid "Display the cell formula expression instead of the calculated result."
+msgstr ""
+
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
"hd_id102720150908397549\n"
"help.text"
-msgid "<link href=\"text/shared/01/gallery.xhp\">Clip Art Gallery</link>"
-msgstr "<link href=\"text/shared/01/gallery.xhp\">剪贴画库</link>"
+msgid "<link href=\"text/shared/01/gallery.xhp\">Gallery</link>"
+msgstr ""
#: main0103.xhp
msgctxt ""
@@ -443,7 +452,6 @@ msgstr "工具"
msgctxt ""
"main0106.xhp\n"
"hd_id3150769\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/main0106.xhp\" name=\"Tools\">Tools</link>"
msgstr "<link href=\"text/scalc/main0106.xhp\" name=\"工具\">工具</link>"
@@ -452,7 +460,6 @@ msgstr "<link href=\"text/scalc/main0106.xhp\" name=\"工具\">工具</link>"
msgctxt ""
"main0106.xhp\n"
"par_id3150440\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">The <emph>Tools </emph>menu contains commands to check spelling, to trace sheet references, to find mistakes and to define scenarios.</ahelp>"
msgstr "<ahelp hid=\".\">该<emph>工具</emph>菜单包含用于检查拼写、跟踪工作表引用、发现错误和定义方案的命令。</ahelp>"
@@ -461,7 +468,6 @@ msgstr "<ahelp hid=\".\">该<emph>工具</emph>菜单包含用于检查拼写、
msgctxt ""
"main0106.xhp\n"
"par_id3152576\n"
-"10\n"
"help.text"
msgid "You can also create and assign macros and configure the look and feel of toolbars, menus, keyboard, and set the default options for $[officename] applications."
msgstr "可以建立和指定宏,调整工具栏、菜单和键盘的外观,还可以设定 $[officename] 应用程序的默认选项。"
@@ -469,8 +475,15 @@ msgstr "可以建立和指定宏,调整工具栏、菜单和键盘的外观,
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
+"hd_id3154015\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">自动更正选项</link>"
+
+#: main0106.xhp
+msgctxt ""
+"main0106.xhp\n"
"hd_id3149122\n"
-"12\n"
"help.text"
msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
msgstr "<link href=\"text/scalc/01/06040000.xhp\" name=\"单变量求解\">单变量求解</link>"
@@ -479,7 +492,6 @@ msgstr "<link href=\"text/scalc/01/06040000.xhp\" name=\"单变量求解\">单
msgctxt ""
"main0106.xhp\n"
"hd_id3155768\n"
-"6\n"
"help.text"
msgid "<link href=\"text/scalc/01/06050000.xhp\" name=\"Scenarios\">Scenarios</link>"
msgstr "<link href=\"text/scalc/01/06050000.xhp\" name=\"方案\">方案</link>"
@@ -487,17 +499,7 @@ msgstr "<link href=\"text/scalc/01/06050000.xhp\" name=\"方案\">方案</link>"
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
-"hd_id3154015\n"
-"9\n"
-"help.text"
-msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
-msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">自动更正选项</link>"
-
-#: main0106.xhp
-msgctxt ""
-"main0106.xhp\n"
"hd_id3150086\n"
-"8\n"
"help.text"
msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">自定义</link>"
@@ -538,7 +540,6 @@ msgstr "数据"
msgctxt ""
"main0112.xhp\n"
"hd_id3153254\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/main0112.xhp\" name=\"Data\">Data</link>"
msgstr "<link href=\"text/scalc/main0112.xhp\" name=\"数据\">数据</link>"
@@ -547,7 +548,6 @@ msgstr "<link href=\"text/scalc/main0112.xhp\" name=\"数据\">数据</link>"
msgctxt ""
"main0112.xhp\n"
"par_id3147264\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">Use the <emph>Data</emph> menu commands to edit the data in the current sheet. You can define ranges, sort and filter the data, calculate results, outline data, and create a pivot table.</ahelp>"
msgstr "<ahelp hid=\".\">使用<emph>数据</emph>菜单命令编辑当前工作表中的数据。您可以定义区域、排序和筛选数据、计算结果、进行数据分组和创建透视表。</ahelp>"
@@ -556,7 +556,6 @@ msgstr "<ahelp hid=\".\">使用<emph>数据</emph>菜单命令编辑当前工作
msgctxt ""
"main0112.xhp\n"
"hd_id3150400\n"
-"3\n"
"help.text"
msgid "<link href=\"text/scalc/01/12010000.xhp\" name=\"Define Range\">Define Range</link>"
msgstr "<link href=\"text/scalc/01/12010000.xhp\" name=\"定义区域\">定义区域</link>"
@@ -565,7 +564,6 @@ msgstr "<link href=\"text/scalc/01/12010000.xhp\" name=\"定义区域\">定义
msgctxt ""
"main0112.xhp\n"
"hd_id3125863\n"
-"4\n"
"help.text"
msgid "<link href=\"text/scalc/01/12020000.xhp\" name=\"Select Range\">Select Range</link>"
msgstr "<link href=\"text/scalc/01/12020000.xhp\" name=\"选择区域\">选择区域</link>"
@@ -574,7 +572,6 @@ msgstr "<link href=\"text/scalc/01/12020000.xhp\" name=\"选择区域\">选择
msgctxt ""
"main0112.xhp\n"
"hd_id3153726\n"
-"5\n"
"help.text"
msgid "<link href=\"text/scalc/01/12030000.xhp\" name=\"Sort\">Sort</link>"
msgstr "<link href=\"text/scalc/01/12030000.xhp\" name=\"排序\">排序</link>"
@@ -583,7 +580,6 @@ msgstr "<link href=\"text/scalc/01/12030000.xhp\" name=\"排序\">排序</link>"
msgctxt ""
"main0112.xhp\n"
"hd_id3153142\n"
-"6\n"
"help.text"
msgid "<link href=\"text/scalc/01/12050000.xhp\" name=\"Subtotals\">Subtotals</link>"
msgstr "<link href=\"text/scalc/01/12050000.xhp\" name=\"分类汇总\">分类汇总</link>"
@@ -592,7 +588,6 @@ msgstr "<link href=\"text/scalc/01/12050000.xhp\" name=\"分类汇总\">分类
msgctxt ""
"main0112.xhp\n"
"hd_id3151073\n"
-"10\n"
"help.text"
msgid "<link href=\"text/scalc/01/12120000.xhp\" name=\"Validity\">Validity</link>"
msgstr "<link href=\"text/scalc/01/12120000.xhp\" name=\"有效性\">有效性</link>"
@@ -601,7 +596,6 @@ msgstr "<link href=\"text/scalc/01/12120000.xhp\" name=\"有效性\">有效性</
msgctxt ""
"main0112.xhp\n"
"hd_id3145254\n"
-"7\n"
"help.text"
msgid "<link href=\"text/scalc/01/12060000.xhp\" name=\"Multiple Operations\">Multiple Operations</link>"
msgstr "<link href=\"text/scalc/01/12060000.xhp\" name=\"多重计算\">多重计算</link>"
@@ -618,7 +612,6 @@ msgstr "<link href=\"text/scalc/01/text2columns.xhp\">文字分列</link>"
msgctxt ""
"main0112.xhp\n"
"hd_id3150717\n"
-"8\n"
"help.text"
msgid "<link href=\"text/scalc/01/12070000.xhp\" name=\"Consolidate\">Consolidate</link>"
msgstr "<link href=\"text/scalc/01/12070000.xhp\" name=\"合并计算\">合并计算</link>"
@@ -627,7 +620,6 @@ msgstr "<link href=\"text/scalc/01/12070000.xhp\" name=\"合并计算\">合并
msgctxt ""
"main0112.xhp\n"
"hd_id3154754\n"
-"9\n"
"help.text"
msgid "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Refresh Range</link>"
msgstr "<link href=\"text/scalc/01/12100000.xhp\" name=\"更新区域\">更新区域</link>"
@@ -724,7 +716,6 @@ msgstr "工具栏"
msgctxt ""
"main0200.xhp\n"
"hd_id3154758\n"
-"1\n"
"help.text"
msgid "<variable id=\"main0200\"><link href=\"text/scalc/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
msgstr "<variable id=\"main0200\"><link href=\"text/scalc/main0200.xhp\" name=\"Toolbars\">工具栏</link></variable>"
@@ -733,7 +724,6 @@ msgstr "<variable id=\"main0200\"><link href=\"text/scalc/main0200.xhp\" name=\"
msgctxt ""
"main0200.xhp\n"
"par_id3148798\n"
-"2\n"
"help.text"
msgid "This submenu lists the toolbars that are available in spreadsheets.<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
msgstr "该子菜单列出了电子表格中可用的工具栏。<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
@@ -750,7 +740,6 @@ msgstr "“格式”工具栏"
msgctxt ""
"main0202.xhp\n"
"hd_id3150448\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/main0202.xhp\" name=\"Formatting Bar\">Formatting Bar</link>"
msgstr "<link href=\"text/scalc/main0202.xhp\" name=\"Formatting Bar\">“格式”工具栏</link>"
@@ -759,7 +748,6 @@ msgstr "<link href=\"text/scalc/main0202.xhp\" name=\"Formatting Bar\">“格式
msgctxt ""
"main0202.xhp\n"
"par_id3153897\n"
-"2\n"
"help.text"
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\"><emph>格式</emph>工具栏包含了应用手动格式的基本命令。</ahelp>"
@@ -768,7 +756,6 @@ msgstr "<ahelp hid=\"HID_SC_TOOLBOX_TABLE\"><emph>格式</emph>工具栏包含
msgctxt ""
"main0202.xhp\n"
"hd_id3153160\n"
-"8\n"
"help.text"
msgid "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Font Color</link>"
msgstr "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">字体颜色</link>"
@@ -777,7 +764,6 @@ msgstr "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">字体颜
msgctxt ""
"main0202.xhp\n"
"hd_id3150715\n"
-"9\n"
"help.text"
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\">左对齐</link>"
@@ -786,7 +772,6 @@ msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Left\">左对齐
msgctxt ""
"main0202.xhp\n"
"hd_id3155064\n"
-"10\n"
"help.text"
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\">水平居中对齐</link>"
@@ -795,7 +780,6 @@ msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Center Horizonta
msgctxt ""
"main0202.xhp\n"
"hd_id3150042\n"
-"11\n"
"help.text"
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\">右对齐</link>"
@@ -804,7 +788,6 @@ msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Right\">右对
msgctxt ""
"main0202.xhp\n"
"hd_id3154703\n"
-"12\n"
"help.text"
msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Justify\">Justify</link>"
msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Justify\">两端对齐</link>"
@@ -813,7 +796,6 @@ msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Justify\">两端对齐
msgctxt ""
"main0202.xhp\n"
"hd_id3152986\n"
-"13\n"
"help.text"
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\">顶端对齐</link>"
@@ -822,7 +804,6 @@ msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Top\">顶端对
msgctxt ""
"main0202.xhp\n"
"hd_id3153306\n"
-"14\n"
"help.text"
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\">垂直居中对齐</link>"
@@ -831,7 +812,6 @@ msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Center Verticall
msgctxt ""
"main0202.xhp\n"
"hd_id3151240\n"
-"15\n"
"help.text"
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\">底端对齐</link>"
@@ -976,7 +956,6 @@ msgstr "绘图对象属性栏"
msgctxt ""
"main0203.xhp\n"
"hd_id3154346\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/main0203.xhp\" name=\"Drawing Object Properties Bar\">Drawing Object Properties Bar</link>"
msgstr "<link href=\"text/scalc/main0203.xhp\" name=\"绘图对象属性栏\">绘图对象属性栏</link>"
@@ -985,7 +964,6 @@ msgstr "<link href=\"text/scalc/main0203.xhp\" name=\"绘图对象属性栏\">
msgctxt ""
"main0203.xhp\n"
"par_id3149656\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"HID_SC_TOOLBOX_DRAW\">The <emph>Drawing Object Properties</emph> Bar for objects that you select in the sheet contains formatting and alignment commands.</ahelp>"
msgstr "<ahelp hid=\"HID_SC_TOOLBOX_DRAW\">在工作表中选定对象时,这些对象的<emph>绘图对象属性</emph>栏提供了格式和对齐命令。</ahelp>"
@@ -994,7 +972,6 @@ msgstr "<ahelp hid=\"HID_SC_TOOLBOX_DRAW\">在工作表中选定对象时,这
msgctxt ""
"main0203.xhp\n"
"hd_id3145748\n"
-"3\n"
"help.text"
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Line Style</link>"
msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"线条样式\">线条样式</link>"
@@ -1003,7 +980,6 @@ msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"线条样式\">线条
msgctxt ""
"main0203.xhp\n"
"hd_id3151073\n"
-"4\n"
"help.text"
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Line Width</link>"
msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"线粗\">线粗</link>"
@@ -1012,7 +988,6 @@ msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"线粗\">线粗</link>
msgctxt ""
"main0203.xhp\n"
"hd_id3153417\n"
-"5\n"
"help.text"
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Line Color</link>"
msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"线条颜色\">线条颜色</link>"
@@ -1021,7 +996,6 @@ msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"线条颜色\">线条
msgctxt ""
"main0203.xhp\n"
"hd_id3147338\n"
-"6\n"
"help.text"
msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Background Color\">Background Color</link>"
msgstr "<link href=\"text/shared/01/05210100.xhp\" name=\"背景颜色\">背景颜色</link>"
@@ -1038,7 +1012,6 @@ msgstr "文字格式栏"
msgctxt ""
"main0205.xhp\n"
"hd_id3156330\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/main0205.xhp\" name=\"Text Formatting Bar\">Text Formatting Bar</link>"
msgstr "<link href=\"text/scalc/main0205.xhp\" name=\"Text Formatting Bar\">“文字格式”工具栏</link>"
@@ -1047,7 +1020,6 @@ msgstr "<link href=\"text/scalc/main0205.xhp\" name=\"Text Formatting Bar\">“
msgctxt ""
"main0205.xhp\n"
"par_id3151112\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"HID_SC_TOOLBOX_DRTEXT\">The <emph>Text Formatting</emph> Bar that is displayed when the cursor is in a text object, such as a text frame or a drawing object, contains formatting and alignment commands.</ahelp>"
msgstr "<ahelp hid=\"HID_SC_TOOLBOX_DRTEXT\"><emph>文字格式</emph>工具栏包含了格式化和对齐相关的命令。将光标定位到文本对象(比如,文本框、绘图对象)时会显示该工具栏。</ahelp>"
@@ -1056,7 +1028,6 @@ msgstr "<ahelp hid=\"HID_SC_TOOLBOX_DRTEXT\"><emph>文字格式</emph>工具栏
msgctxt ""
"main0205.xhp\n"
"hd_id3148575\n"
-"7\n"
"help.text"
msgid "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Font Color</link>"
msgstr "<link href=\"text/shared/01/05020200.xhp\" name=\"字体颜色\">字体颜色</link>"
@@ -1065,7 +1036,6 @@ msgstr "<link href=\"text/shared/01/05020200.xhp\" name=\"字体颜色\">字体
msgctxt ""
"main0205.xhp\n"
"hd_id3154944\n"
-"8\n"
"help.text"
msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1\">Line Spacing: 1</link>"
msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"行距:1\">行距:1</link>"
@@ -1074,7 +1044,6 @@ msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"行距:1\">行距:
msgctxt ""
"main0205.xhp\n"
"hd_id3146969\n"
-"9\n"
"help.text"
msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1.5\">Line Spacing: 1.5</link>"
msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"行距:1.5\">行距:1.5</link>"
@@ -1083,7 +1052,6 @@ msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"行距:1.5\">行距
msgctxt ""
"main0205.xhp\n"
"hd_id3153711\n"
-"10\n"
"help.text"
msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 2\">Line Spacing: 2</link>"
msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"行距:2\">行距:2</link>"
@@ -1092,7 +1060,6 @@ msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"行距:2\">行距:
msgctxt ""
"main0205.xhp\n"
"hd_id3147345\n"
-"11\n"
"help.text"
msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Left\">Align Left</link>"
msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"左对齐\">左对齐</link>"
@@ -1101,7 +1068,6 @@ msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"左对齐\">左对齐<
msgctxt ""
"main0205.xhp\n"
"hd_id3155337\n"
-"12\n"
"help.text"
msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Centered\">Centered</link>"
msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"居中\">居中</link>"
@@ -1110,7 +1076,6 @@ msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"居中\">居中</link>
msgctxt ""
"main0205.xhp\n"
"hd_id3147001\n"
-"13\n"
"help.text"
msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Right\">Align Right</link>"
msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"右对齐\">右对齐</link>"
@@ -1119,7 +1084,6 @@ msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"右对齐\">右对齐<
msgctxt ""
"main0205.xhp\n"
"hd_id3155115\n"
-"14\n"
"help.text"
msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Justify\">Justify</link>"
msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Justify\">两端对齐</link>"
@@ -1128,7 +1092,6 @@ msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Justify\">两端对齐
msgctxt ""
"main0205.xhp\n"
"hd_id3150202\n"
-"15\n"
"help.text"
msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Superscript\">Superscript</link>"
msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"上标\">上标</link>"
@@ -1137,7 +1100,6 @@ msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"上标\">上标</link>
msgctxt ""
"main0205.xhp\n"
"hd_id3155531\n"
-"16\n"
"help.text"
msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Subscript\">Subscript</link>"
msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"下标\">下标</link>"
@@ -1146,7 +1108,6 @@ msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"下标\">下标</link>
msgctxt ""
"main0205.xhp\n"
"hd_id3145387\n"
-"17\n"
"help.text"
msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"字符\">字符</link>"
@@ -1155,7 +1116,6 @@ msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"字符\">字符</link>
msgctxt ""
"main0205.xhp\n"
"hd_id3153067\n"
-"18\n"
"help.text"
msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"段落\">段落</link>"
@@ -1172,7 +1132,6 @@ msgstr "公式栏"
msgctxt ""
"main0206.xhp\n"
"hd_id3147264\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/main0206.xhp\" name=\"Formula Bar\">Formula Bar</link>"
msgstr "<link href=\"text/scalc/main0206.xhp\" name=\"Formula Bar\">“公式”工具栏</link>"
@@ -1181,7 +1140,6 @@ msgstr "<link href=\"text/scalc/main0206.xhp\" name=\"Formula Bar\">“公式”
msgctxt ""
"main0206.xhp\n"
"par_id3150400\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"HID_SC_INPUTWIN\">Use this bar to enter formulas.</ahelp>"
msgstr "<ahelp hid=\"HID_SC_INPUTWIN\">使用该工具栏以数据公式。</ahelp>"
@@ -1198,7 +1156,6 @@ msgstr "状态栏"
msgctxt ""
"main0208.xhp\n"
"hd_id3151385\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/main0208.xhp\" name=\"Status Bar\">Status Bar</link>"
msgstr "<link href=\"text/scalc/main0208.xhp\" name=\"状态栏\">状态栏</link>"
@@ -1207,7 +1164,6 @@ msgstr "<link href=\"text/scalc/main0208.xhp\" name=\"状态栏\">状态栏</lin
msgctxt ""
"main0208.xhp\n"
"par_id3149669\n"
-"2\n"
"help.text"
msgid "The <emph>Status Bar</emph> displays information about the current sheet."
msgstr "<emph>状态栏</emph>显示有关当前工作表的信息。"
@@ -1240,7 +1196,6 @@ msgstr "“打印预览”工具栏"
msgctxt ""
"main0210.xhp\n"
"hd_id3156023\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/main0210.xhp\" name=\"Print Preview Bar\">Print Preview Bar</link>"
msgstr "<link href=\"text/scalc/main0210.xhp\" name=\"Print Preview Bar\">“打印预览”工具栏</link>"
@@ -1249,7 +1204,6 @@ msgstr "<link href=\"text/scalc/main0210.xhp\" name=\"Print Preview Bar\">“
msgctxt ""
"main0210.xhp\n"
"par_id3148663\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"HID_SC_WIN_PREVIEW\">The <emph>Print Preview</emph> Bar is displayed when you choose <emph>File - Print Preview</emph>.</ahelp>"
msgstr "<ahelp hid=\"HID_SC_WIN_PREVIEW\">当您点击<emph>文件 - 打印 - 打印预览</emph>菜单后,<emph>打印预览</emph> 工具栏</ahelp>将会显示。"
@@ -1258,7 +1212,6 @@ msgstr "<ahelp hid=\"HID_SC_WIN_PREVIEW\">当您点击<emph>文件 - 打印 -
msgctxt ""
"main0210.xhp\n"
"hd_id3147393\n"
-"3\n"
"help.text"
msgid "Full Screen"
msgstr "全屏"
@@ -1275,7 +1228,6 @@ msgstr "隐藏菜单与工具栏。要退出全屏模式,请点击 <emph>全
msgctxt ""
"main0210.xhp\n"
"hd_id3147394\n"
-"3\n"
"help.text"
msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format Page\">Format Page</link>"
msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format Page\">页面格式化</link>"
@@ -1284,7 +1236,6 @@ msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format Page\">页面格
msgctxt ""
"main0210.xhp\n"
"hd_id3147494\n"
-"3\n"
"help.text"
msgid "Margins"
msgstr "边距"
@@ -1301,7 +1252,6 @@ msgstr "显示或隐藏页面边距。边距可通过鼠标拖动,也可以在
msgctxt ""
"main0210.xhp\n"
"hd_id3245494\n"
-"3\n"
"help.text"
msgid "Scaling Factor"
msgstr "缩放系数"
@@ -1318,7 +1268,6 @@ msgstr "该滑动条可设置打印出来的电子表格的页面缩放比例。
msgctxt ""
"main0210.xhp\n"
"hd_id3147395\n"
-"3\n"
"help.text"
msgid "Close Preview"
msgstr "关闭预览"
@@ -1343,7 +1292,6 @@ msgstr "图像工具栏"
msgctxt ""
"main0214.xhp\n"
"hd_id3153088\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/main0214.xhp\" name=\"Image Bar\">Image Bar</link>"
msgstr "<link href=\"text/scalc/main0214.xhp\" name=\"Image Bar\">图像工具栏</link>"
@@ -1352,7 +1300,6 @@ msgstr "<link href=\"text/scalc/main0214.xhp\" name=\"Image Bar\">图像工具
msgctxt ""
"main0214.xhp\n"
"par_id3153896\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">The <emph>Image</emph> bar is displayed when you insert or select an image in a sheet.</ahelp>"
msgstr "当您在工作表中插入或选择图像时,会显示<ahelp hid=\".\"><emph>图像</emph>工具栏。</ahelp>"
@@ -1369,7 +1316,6 @@ msgstr "工具栏"
msgctxt ""
"main0218.xhp\n"
"hd_id3143268\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/main0218.xhp\" name=\"Tools Bar\">Tools Bar</link>"
msgstr "<link href=\"text/scalc/main0218.xhp\" name=\"Tools Bar\">“工具”工具栏</link>"
@@ -1378,7 +1324,6 @@ msgstr "<link href=\"text/scalc/main0218.xhp\" name=\"Tools Bar\">“工具”
msgctxt ""
"main0218.xhp\n"
"par_id3151112\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"HID_SC_TOOLBOX_TOOLS\">Use the Tools bar to access commonly used commands.</ahelp>"
msgstr "<ahelp hid=\"HID_SC_TOOLBOX_TOOLS\">使用“工具”工具栏可以访问常用的命令。</ahelp>"
@@ -1395,7 +1340,6 @@ msgstr "<link href=\"text/shared/02/01170000.xhp\" name=\"Controls\">控件</lin
msgctxt ""
"main0218.xhp\n"
"hd_id3154730\n"
-"6\n"
"help.text"
msgid "<link href=\"text/scalc/02/06080000.xhp\" name=\"Choose Themes\">Choose Themes</link>"
msgstr "<link href=\"text/scalc/02/06080000.xhp\" name=\"Choose Themes\">选择主题</link>"
@@ -1452,7 +1396,6 @@ msgstr "$[officename] Calc 电子表格的功能"
msgctxt ""
"main0503.xhp\n"
"hd_id3154758\n"
-"1\n"
"help.text"
msgid "<variable id=\"main0503\"><link href=\"text/scalc/main0503.xhp\" name=\"$[officename] Calc Features\">$[officename] Calc Features</link></variable>"
msgstr "<variable id=\"main0503\"><link href=\"text/scalc/main0503.xhp\" name=\"$[officename] Calc Features\">$[officename] Calc 电子表格的功能</link></variable>"
@@ -1461,7 +1404,6 @@ msgstr "<variable id=\"main0503\"><link href=\"text/scalc/main0503.xhp\" name=\"
msgctxt ""
"main0503.xhp\n"
"par_id3149457\n"
-"2\n"
"help.text"
msgid "$[officename] Calc is a spreadsheet application that you can use to calculate, analyze, and manage your data. You can also import and modify Microsoft Excel spreadsheets."
msgstr "$[officename] Calc 是一个电子表格应用程序,可用于计算、分析和管理数据,也可用于导入和编辑 Microsoft Excel 电子表格。"
@@ -1470,7 +1412,6 @@ msgstr "$[officename] Calc 是一个电子表格应用程序,可用于计算
msgctxt ""
"main0503.xhp\n"
"hd_id3148797\n"
-"4\n"
"help.text"
msgid "Calculations"
msgstr "计算"
@@ -1479,7 +1420,6 @@ msgstr "计算"
msgctxt ""
"main0503.xhp\n"
"par_id3145172\n"
-"5\n"
"help.text"
msgid "$[officename] Calc provides you with <link href=\"text/scalc/01/04060100.xhp\" name=\"functions\">functions</link>, including statistical and banking functions, that you can use to create formulas to perform complex calculations on your data."
msgstr "$[officename] Calc 为您提供了众多的<link href=\"text/scalc/01/04060100.xhp\" name=\"functions\">函数</link>,包括统计和财务函数,使用这些函数您可以创建公式来对数据进行复杂的计算。"
@@ -1488,7 +1428,6 @@ msgstr "$[officename] Calc 为您提供了众多的<link href=\"text/scalc/01/04
msgctxt ""
"main0503.xhp\n"
"par_id3145271\n"
-"6\n"
"help.text"
msgid "You can also use the <link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilots\">Function Wizard</link> to help you create your formulas."
msgstr "您也可以使用<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilots\">函数向导</link>来协助您创建公式。"
@@ -1497,7 +1436,6 @@ msgstr "您也可以使用<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoP
msgctxt ""
"main0503.xhp\n"
"hd_id3152596\n"
-"13\n"
"help.text"
msgid "What-If Calculations"
msgstr "假设分析 (What-If) 计算"
@@ -1506,7 +1444,6 @@ msgstr "假设分析 (What-If) 计算"
msgctxt ""
"main0503.xhp\n"
"par_id3156444\n"
-"14\n"
"help.text"
msgid "An interesting feature is to be able to immediately view the results of changes made to one factor of calculations that are composed of several factors. For instance, you can see how changing the time period in a loan calculation affects the interest rates or repayment amounts. Furthermore, you can manage larger tables by using different predefined scenarios."
msgstr "其中有一个有趣的功能,对于由几个因素组成的计算,修改其中的一个因素之后立即可以看新的计算结果。例如,可以看到贷款计算中对贷款期间的更改将如何影响利息率或还款金额。另外,也可以通过使用不同的预定义方案来管理较大的表格。"
@@ -1515,7 +1452,6 @@ msgstr "其中有一个有趣的功能,对于由几个因素组成的计算,
msgctxt ""
"main0503.xhp\n"
"hd_id3148576\n"
-"7\n"
"help.text"
msgid "Database Functions"
msgstr "数据库函数"
@@ -1524,7 +1460,6 @@ msgstr "数据库函数"
msgctxt ""
"main0503.xhp\n"
"par_id3154011\n"
-"8\n"
"help.text"
msgid "Use spreadsheets to arrange, store, and filter your data."
msgstr "使用电子表格对数据进行排列、存储和筛选。"
@@ -1533,7 +1468,6 @@ msgstr "使用电子表格对数据进行排列、存储和筛选。"
msgctxt ""
"main0503.xhp\n"
"par_id3154942\n"
-"25\n"
"help.text"
msgid "$[officename] Calc lets you drag-and-drop tables from databases, or lets you use a spreadsheet as a data source for creating form letters in $[officename] Writer."
msgstr "在 $[officename] Calc 中,您可以从数据库中拖放表格。您也可以将电子表格作为在 $[officename] Writer 中创建格式信函的数据源。"
@@ -1542,7 +1476,6 @@ msgstr "在 $[officename] Calc 中,您可以从数据库中拖放表格。您
msgctxt ""
"main0503.xhp\n"
"hd_id3145800\n"
-"9\n"
"help.text"
msgid "Arranging Data"
msgstr "排列数据"
@@ -1551,7 +1484,6 @@ msgstr "排列数据"
msgctxt ""
"main0503.xhp\n"
"par_id3154490\n"
-"10\n"
"help.text"
msgid "With a few mouse-clicks, you can reorganize your spreadsheet to show or hide certain data ranges, or to format ranges according to special conditions, or to quickly calculate subtotals and totals."
msgstr "您只需点几下鼠标,就可以轻松地重新组织您的电子表格,比如显示或隐藏特定的数据区域、根据特定的条件格式化数据区域,或者快速计算分类汇总或者求和。"
@@ -1560,7 +1492,6 @@ msgstr "您只需点几下鼠标,就可以轻松地重新组织您的电子表
msgctxt ""
"main0503.xhp\n"
"hd_id3155601\n"
-"16\n"
"help.text"
msgid "Dynamic Charts"
msgstr "动态图表"
@@ -1569,7 +1500,6 @@ msgstr "动态图表"
msgctxt ""
"main0503.xhp\n"
"par_id3149121\n"
-"17\n"
"help.text"
msgid "$[officename] Calc lets you present spreadsheet data in dynamic charts that update automatically when the data changes."
msgstr "使用 $[officename] Calc,您可以制作动态图表,在源数据改变时图表将会自动更新。"
@@ -1578,7 +1508,6 @@ msgstr "使用 $[officename] Calc,您可以制作动态图表,在源数据
msgctxt ""
"main0503.xhp\n"
"hd_id3153707\n"
-"18\n"
"help.text"
msgid "Opening and Saving Microsoft Files"
msgstr "打开和保存 Microsoft 文件"
@@ -1587,7 +1516,6 @@ msgstr "打开和保存 Microsoft 文件"
msgctxt ""
"main0503.xhp\n"
"par_id3157867\n"
-"19\n"
"help.text"
msgid "Use the $[officename] filters to convert Excel files, or to open and save in a variety of other <link href=\"text/shared/00/00000020.xhp\" name=\"formats\">formats</link>."
msgstr "使用 $[officename] 筛选器来转换 Excel 文件,或者打开并将其保存为众多其它的<link href=\"text/shared/00/00000020.xhp\" name=\"formats\">文件格式</link>。"
diff --git a/source/zh-CN/helpcontent2/source/text/scalc/00.po b/source/zh-CN/helpcontent2/source/text/scalc/00.po
index b0653e5f577..0fd0ed098e3 100644
--- a/source/zh-CN/helpcontent2/source/text/scalc/00.po
+++ b/source/zh-CN/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-05-09 16:45+0200\n"
"PO-Revision-Date: 2017-02-20 02:39+0000\n"
"Last-Translator: 锁琨珑 <suokunlong@126.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487558357.000000\n"
#: 00000004.xhp
@@ -28,7 +28,6 @@ msgstr "要访问该函数..."
msgctxt ""
"00000004.xhp\n"
"hd_id3155535\n"
-"1\n"
"help.text"
msgid "<variable id=\"wie\">To access this function... </variable>"
msgstr "<variable id=\"wie\">要访问该函数...</variable>"
@@ -261,7 +260,6 @@ msgstr "插入菜单"
msgctxt ""
"00000404.xhp\n"
"hd_id3149346\n"
-"1\n"
"help.text"
msgid "Insert Menu"
msgstr "插入菜单"
@@ -270,7 +268,6 @@ msgstr "插入菜单"
msgctxt ""
"00000404.xhp\n"
"par_id3149784\n"
-"4\n"
"help.text"
msgid "Choose <emph>Insert - Cells</emph>"
msgstr "选择<emph>插入 - 单元格</emph>"
@@ -279,7 +276,6 @@ msgstr "选择<emph>插入 - 单元格</emph>"
msgctxt ""
"00000404.xhp\n"
"par_id3154514\n"
-"5\n"
"help.text"
msgid "Open <emph>Insert Cells</emph> toolbar from Tools bar:"
msgstr "从“工具”栏打开<emph>插入单元格</emph>工具栏:"
@@ -296,7 +292,6 @@ msgstr "<image id=\"img_id3154365\" src=\"cmd/sc_inscellsctrl.png\" width=\"0.22
msgctxt ""
"00000404.xhp\n"
"par_id3151041\n"
-"6\n"
"help.text"
msgid "Insert Cells"
msgstr "插入单元格"
@@ -313,7 +308,6 @@ msgstr "<image id=\"img_id3145364\" src=\"cmd/sc_insertcellsdown.png\" width=\"0
msgctxt ""
"00000404.xhp\n"
"par_id3146985\n"
-"7\n"
"help.text"
msgid "Insert Cells Down"
msgstr "向下插入单元格"
@@ -330,7 +324,6 @@ msgstr "<image id=\"img_id3154942\" src=\"cmd/sc_insertcellsright.png\" width=\"
msgctxt ""
"00000404.xhp\n"
"par_id3145646\n"
-"8\n"
"help.text"
msgid "Insert Cells Right"
msgstr "向右插入单元格"
@@ -347,7 +340,6 @@ msgstr "<image id=\"img_id3153710\" src=\"cmd/sc_insertrows.png\" width=\"0.222i
msgctxt ""
"00000404.xhp\n"
"par_id3150324\n"
-"9\n"
"help.text"
msgid "Insert Rows"
msgstr "插入行"
@@ -364,7 +356,6 @@ msgstr "<image id=\"img_id3145232\" src=\"cmd/sc_insertcolumns.png\" width=\"0.2
msgctxt ""
"00000404.xhp\n"
"par_id3155334\n"
-"10\n"
"help.text"
msgid "Insert Columns"
msgstr "插入列"
@@ -373,24 +364,22 @@ msgstr "插入列"
msgctxt ""
"00000404.xhp\n"
"par_id3149033\n"
-"13\n"
"help.text"
-msgid "<variable id=\"eitab\">Choose <emph>Insert - Sheet</emph></variable>"
-msgstr "<variable id=\"eitab\">选择<emph>插入 - 工作表</emph></variable>"
+msgid "<variable id=\"eitab\">Choose <emph>Sheet - Insert Sheet</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_idN1082F\n"
"help.text"
-msgid "<variable id=\"eitabfile\">Choose <emph>Insert - Sheet from file</emph></variable>"
-msgstr "<variable id=\"eitabfile\">选择<emph>插入 - 从文件插入工作表</emph></variable>"
+msgid "<variable id=\"eitabfile\">Choose <emph>Sheet - Insert Sheet from File</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3155115\n"
-"14\n"
"help.text"
msgid "Choose <emph>Insert - Function</emph>"
msgstr "选择<emph>插入 - 函数</emph>"
@@ -399,7 +388,6 @@ msgstr "选择<emph>插入 - 函数</emph>"
msgctxt ""
"00000404.xhp\n"
"par_id3152582\n"
-"34\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2 组合键"
@@ -408,7 +396,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinl
msgctxt ""
"00000404.xhp\n"
"par_id3153269\n"
-"15\n"
"help.text"
msgid "On <emph>Formula Bar</emph>, click"
msgstr "在<emph>公式栏</emph>中,单击"
@@ -418,14 +405,13 @@ msgctxt ""
"00000404.xhp\n"
"par_id3150515\n"
"help.text"
-msgid "<image id=\"img_id3150884\" src=\"sw/imglst/sc20556.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150884\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150884\" src=\"sw/imglst/sc20556.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150884\">图标</alt></image>"
+msgid "<image id=\"img_id3150884\" src=\"sw/res/sc20556.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150884\">Icon</alt></image>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3154370\n"
-"16\n"
"help.text"
msgid "Function Wizard"
msgstr "函数向导"
@@ -434,7 +420,6 @@ msgstr "函数向导"
msgctxt ""
"00000404.xhp\n"
"par_id3156288\n"
-"17\n"
"help.text"
msgid "<variable id=\"eikada\"><emph>Insert - Function</emph> - Category <emph>Database</emph></variable>"
msgstr "<variable id=\"eikada\"><emph>插入 - 函数</emph> - 类别 <emph>数据库</emph></variable>"
@@ -443,7 +428,6 @@ msgstr "<variable id=\"eikada\"><emph>插入 - 函数</emph> - 类别 <emph>数
msgctxt ""
"00000404.xhp\n"
"par_id3155809\n"
-"18\n"
"help.text"
msgid "<variable id=\"eikadaze\"><emph>Insert - Function</emph> - Category <emph>Date&Time</emph></variable>"
msgstr "<variable id=\"eikadaze\"><emph>插入 - 函数</emph> - 类别 <emph>日期和时间</emph></variable>"
@@ -452,7 +436,6 @@ msgstr "<variable id=\"eikadaze\"><emph>插入 - 函数</emph> - 类别 <emph>
msgctxt ""
"00000404.xhp\n"
"par_id3151334\n"
-"19\n"
"help.text"
msgid "<variable id=\"eikafi\"><emph>Insert - Function</emph> - Category <emph>Financial</emph></variable>"
msgstr "<variable id=\"eikafi\"><emph>插入 - 函数</emph> - 类别 <emph>财务</emph></variable>"
@@ -461,7 +444,6 @@ msgstr "<variable id=\"eikafi\"><emph>插入 - 函数</emph> - 类别 <emph>财
msgctxt ""
"00000404.xhp\n"
"par_id3159222\n"
-"20\n"
"help.text"
msgid "<variable id=\"eikain\"><emph>Insert - Function</emph> - Category <emph>Information</emph></variable>"
msgstr "<variable id=\"eikain\"><emph>插入 - 函数</emph> - 类别 <emph>信息</emph></variable>"
@@ -470,7 +452,6 @@ msgstr "<variable id=\"eikain\"><emph>插入 - 函数</emph> - 类别 <emph>信
msgctxt ""
"00000404.xhp\n"
"par_id3159173\n"
-"21\n"
"help.text"
msgid "<variable id=\"eikalo\"><emph>Insert - Function</emph> - Category <emph>Logical</emph></variable>"
msgstr "<variable id=\"eikalo\"><emph>插入 - 函数</emph> - 类别 <emph>逻辑</emph></variable>"
@@ -479,7 +460,6 @@ msgstr "<variable id=\"eikalo\"><emph>插入 - 函数</emph> - 类别 <emph>逻
msgctxt ""
"00000404.xhp\n"
"par_id3153914\n"
-"22\n"
"help.text"
msgid "<variable id=\"eikama\"><emph>Insert - Function</emph> - Category <emph>Mathematical</emph></variable>"
msgstr "<variable id=\"eikama\"><emph>插入 - 函数</emph> - 类别 <emph>数学</emph></variable>"
@@ -488,7 +468,6 @@ msgstr "<variable id=\"eikama\"><emph>插入 - 函数</emph> - 类别 <emph>数
msgctxt ""
"00000404.xhp\n"
"par_id3150109\n"
-"23\n"
"help.text"
msgid "<variable id=\"eikamatrix\"><emph>Insert - Function</emph> - Category <emph>Array</emph></variable>"
msgstr "<variable id=\"eikamatrix\"><emph>插入 - 函数</emph> - 类别 <emph>数组</emph></variable>"
@@ -497,7 +476,6 @@ msgstr "<variable id=\"eikamatrix\"><emph>插入 - 函数</emph> - 类别 <emph>
msgctxt ""
"00000404.xhp\n"
"par_id3157978\n"
-"24\n"
"help.text"
msgid "<variable id=\"eikasta\"><emph>Insert - Function</emph> - Category <emph>Statistical</emph></variable>"
msgstr "<variable id=\"eikasta\"><emph>插入 - 函数</emph> - 类别 <emph>统计</emph></variable>"
@@ -506,7 +484,6 @@ msgstr "<variable id=\"eikasta\"><emph>插入 - 函数</emph> - 类别 <emph>统
msgctxt ""
"00000404.xhp\n"
"par_id3156016\n"
-"25\n"
"help.text"
msgid "<variable id=\"eikatext\"><emph>Insert - Function</emph> - Category <emph>Text</emph></variable>"
msgstr "<variable id=\"eikatext\"><emph>插入 - 函数</emph> - 类别 <emph>文字</emph></variable>"
@@ -515,7 +492,6 @@ msgstr "<variable id=\"eikatext\"><emph>插入 - 函数</emph> - 类别 <emph>
msgctxt ""
"00000404.xhp\n"
"par_id3147075\n"
-"26\n"
"help.text"
msgid "<variable id=\"efefft\"><emph>Insert - Function</emph> - Category <emph>Spreadsheet</emph></variable>"
msgstr "<variable id=\"efefft\"><emph>插入 - 函数</emph> - 类别 <emph>电子表格</emph></variable>"
@@ -524,7 +500,6 @@ msgstr "<variable id=\"efefft\"><emph>插入 - 函数</emph> - 类别 <emph>电
msgctxt ""
"00000404.xhp\n"
"par_id3154618\n"
-"27\n"
"help.text"
msgid "<variable id=\"addin\"><emph>Insert - Function</emph> - Category <emph>Add-In</emph></variable>"
msgstr "<variable id=\"addin\"><emph>插入 - 函数</emph> - 类别 <emph>加载宏</emph></variable>"
@@ -533,7 +508,6 @@ msgstr "<variable id=\"addin\"><emph>插入 - 函数</emph> - 类别 <emph>加
msgctxt ""
"00000404.xhp\n"
"par_id3154059\n"
-"38\n"
"help.text"
msgid "<variable id=\"addinana\"><emph>Insert - Function</emph> - Category <emph>Add-In</emph></variable>"
msgstr "<variable id=\"addinana\"><emph>插入 - 函数</emph> - 类别 <emph>加载宏</emph></variable>"
@@ -542,7 +516,6 @@ msgstr "<variable id=\"addinana\"><emph>插入 - 函数</emph> - 类别 <emph>
msgctxt ""
"00000404.xhp\n"
"par_id3155383\n"
-"33\n"
"help.text"
msgid "<variable id=\"funktionsliste\">Choose <emph>Insert - Function List</emph></variable>"
msgstr "<variable id=\"funktionsliste\">选择<emph>插入 - 函数列表</emph></variable>"
@@ -551,7 +524,6 @@ msgstr "<variable id=\"funktionsliste\">选择<emph>插入 - 函数列表</emph>
msgctxt ""
"00000404.xhp\n"
"par_id3153250\n"
-"28\n"
"help.text"
msgid "<variable id=\"einamen\">Choose <emph>Insert - Named Ranges and Expressions</emph></variable>"
msgstr "<variable id=\"einamen\">选择 <emph>插入 - 命名区域和表达式</emph></variable>"
@@ -560,16 +532,14 @@ msgstr "<variable id=\"einamen\">选择 <emph>插入 - 命名区域和表达式<
msgctxt ""
"00000404.xhp\n"
"par_id3146776\n"
-"37\n"
"help.text"
-msgid "<variable id=\"eiextdata\">Choose <emph>Sheet - Link to External Data</emph></variable>"
-msgstr "<variable id=\"eiextdata\">选择 <emph>工作表 - 链接到外部数据</emph></variable>"
+msgid "<variable id=\"eiextdata\">Choose <emph>Sheet - Link to External data</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3143222\n"
-"29\n"
"help.text"
msgid "Choose <emph>Sheet - Named Ranges and Expressions - Define</emph>"
msgstr "选择 <emph>工作表 - 命名区域和表达式 - 定义</emph>"
@@ -578,7 +548,6 @@ msgstr "选择 <emph>工作表 - 命名区域和表达式 - 定义</emph>"
msgctxt ""
"00000404.xhp\n"
"par_id3149385\n"
-"35\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3 组合键"
@@ -587,7 +556,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinl
msgctxt ""
"00000404.xhp\n"
"par_id3145214\n"
-"30\n"
"help.text"
msgid "<variable id=\"einaei\">Choose <emph>Sheet - Named Ranges and Expressions - Insert</emph></variable>"
msgstr "<variable id=\"einaei\">选择 <emph>工作表 - 命名区域和表达式 - 插入</emph></variable>"
@@ -596,7 +564,6 @@ msgstr "<variable id=\"einaei\">选择 <emph>工作表 - 命名区域和表达
msgctxt ""
"00000404.xhp\n"
"par_id3153558\n"
-"31\n"
"help.text"
msgid "<variable id=\"einaueb\">Choose <emph>Sheet - Named Ranges and Expressions - Create</emph></variable>"
msgstr "<variable id=\"einaueb\">选择 <emph>工作表 - 命名区域和表达式 - 创建</emph></variable>"
@@ -605,7 +572,6 @@ msgstr "<variable id=\"einaueb\">选择 <emph>工作表 - 命名区域和表达
msgctxt ""
"00000404.xhp\n"
"par_id3153483\n"
-"32\n"
"help.text"
msgid "<variable id=\"einabesch\">Choose <emph>Sheet - Named Ranges and Expressions - Labels</emph></variable>"
msgstr "<variable id=\"einabesch\">选择 <emph>工作表 - 命名区域和表达式 - 标签</emph></variable>"
@@ -622,7 +588,6 @@ msgstr "格式菜单"
msgctxt ""
"00000405.xhp\n"
"hd_id3150769\n"
-"1\n"
"help.text"
msgid "Format Menu"
msgstr "格式菜单"
@@ -631,7 +596,6 @@ msgstr "格式菜单"
msgctxt ""
"00000405.xhp\n"
"par_id3154685\n"
-"2\n"
"help.text"
msgid "<variable id=\"fozelle\">Choose <emph>Format - Cells</emph></variable>"
msgstr "<variable id=\"fozelle\">选择<emph>格式 - 单元格</emph> </variable>"
@@ -640,7 +604,6 @@ msgstr "<variable id=\"fozelle\">选择<emph>格式 - 单元格</emph> </variabl
msgctxt ""
"00000405.xhp\n"
"par_id3153194\n"
-"3\n"
"help.text"
msgid "<variable id=\"fozelstz\">Choose <emph>Format - Cells - Cell Protection</emph> tab </variable>"
msgstr "<variable id=\"fozelstz\">选择<emph>格式 - 单元格 - 单元格保护</emph>选项卡</variable>"
@@ -649,7 +612,6 @@ msgstr "<variable id=\"fozelstz\">选择<emph>格式 - 单元格 - 单元格保
msgctxt ""
"00000405.xhp\n"
"par_id3155854\n"
-"4\n"
"help.text"
msgid "<variable id=\"fozei\">Choose <emph>Format - Row</emph></variable>"
msgstr "<variable id=\"fozei\">选择<emph>格式 - 行</emph> </variable>"
@@ -658,7 +620,6 @@ msgstr "<variable id=\"fozei\">选择<emph>格式 - 行</emph> </variable>"
msgctxt ""
"00000405.xhp\n"
"par_id3150012\n"
-"5\n"
"help.text"
msgid "<variable id=\"fozeiophoe\">Choose <emph>Format - Row - Optimal Height</emph></variable>"
msgstr "<variable id=\"fozeiophoe\">选择<emph>格式 - 行 - 最佳高度</emph> </variable>"
@@ -667,7 +628,6 @@ msgstr "<variable id=\"fozeiophoe\">选择<emph>格式 - 行 - 最佳高度</emp
msgctxt ""
"00000405.xhp\n"
"par_id3148645\n"
-"6\n"
"help.text"
msgid "Choose <emph>Format - Row - Hide</emph>"
msgstr "选择<emph>格式 - 行 - 隐藏</emph>"
@@ -676,7 +636,6 @@ msgstr "选择<emph>格式 - 行 - 隐藏</emph>"
msgctxt ""
"00000405.xhp\n"
"par_id3153728\n"
-"7\n"
"help.text"
msgid "Choose <emph>Format - Column - Hide</emph>"
msgstr "选择<emph>格式 - 列 - 隐藏</emph>"
@@ -685,7 +644,6 @@ msgstr "选择<emph>格式 - 列 - 隐藏</emph>"
msgctxt ""
"00000405.xhp\n"
"par_id3151114\n"
-"8\n"
"help.text"
msgid "Choose <emph>Format - Sheet - Hide</emph>"
msgstr "选择<emph>格式 - 工作表 - 隐藏</emph>"
@@ -694,7 +652,6 @@ msgstr "选择<emph>格式 - 工作表 - 隐藏</emph>"
msgctxt ""
"00000405.xhp\n"
"par_id3148576\n"
-"9\n"
"help.text"
msgid "Choose <emph>Format - Row - Show</emph>"
msgstr "选择<emph>格式 - 行 - 显示</emph>"
@@ -703,7 +660,6 @@ msgstr "选择<emph>格式 - 行 - 显示</emph>"
msgctxt ""
"00000405.xhp\n"
"par_id3156286\n"
-"10\n"
"help.text"
msgid "Choose <emph>Format - Column - Show</emph>"
msgstr "选择<emph>格式 - 列 - 显示</emph>"
@@ -712,7 +668,6 @@ msgstr "选择<emph>格式 - 列 - 显示</emph>"
msgctxt ""
"00000405.xhp\n"
"par_id3145645\n"
-"11\n"
"help.text"
msgid "<variable id=\"fospa\">Choose <emph>Format - Column</emph></variable>"
msgstr "<variable id=\"fospa\">选择<emph>格式 - 列</emph> </variable>"
@@ -721,7 +676,6 @@ msgstr "<variable id=\"fospa\">选择<emph>格式 - 列</emph> </variable>"
msgctxt ""
"00000405.xhp\n"
"par_id3145252\n"
-"12\n"
"help.text"
msgid "Choose <emph>Format - Column - Optimal Width</emph>"
msgstr "选择<emph>格式 - 列 - 最佳宽度</emph>"
@@ -730,7 +684,6 @@ msgstr "选择<emph>格式 - 列 - 最佳宽度</emph>"
msgctxt ""
"00000405.xhp\n"
"par_id3146971\n"
-"36\n"
"help.text"
msgid "Double-click right column separator in column headers"
msgstr "双击列标题右边线"
@@ -739,7 +692,6 @@ msgstr "双击列标题右边线"
msgctxt ""
"00000405.xhp\n"
"par_id3147362\n"
-"15\n"
"help.text"
msgid "<variable id=\"fot\">Choose <emph>Format - Sheet</emph></variable>"
msgstr "<variable id=\"fot\">选择<emph>格式 - 工作表</emph> </variable>"
@@ -748,7 +700,6 @@ msgstr "<variable id=\"fot\">选择<emph>格式 - 工作表</emph> </variable>"
msgctxt ""
"00000405.xhp\n"
"par_id3163805\n"
-"16\n"
"help.text"
msgid "<variable id=\"fotu\">Choose <emph>Format - Sheet - Rename</emph></variable>"
msgstr "<variable id=\"fotu\">选择<emph>格式 - 工作表 - 重命名</emph> </variable>"
@@ -757,7 +708,6 @@ msgstr "<variable id=\"fotu\">选择<emph>格式 - 工作表 - 重命名</emph>
msgctxt ""
"00000405.xhp\n"
"par_id3155333\n"
-"17\n"
"help.text"
msgid "<variable id=\"fotenb\">Choose <emph>Format - Sheet - Show</emph></variable>"
msgstr "<variable id=\"fotenb\">选择<emph>格式 - 工作表 - 显示</emph> </variable>"
@@ -774,7 +724,6 @@ msgstr "<variable id=\"foste\">选择<emph>格式 - 页面</emph></variable>"
msgctxt ""
"00000405.xhp\n"
"par_id3155508\n"
-"25\n"
"help.text"
msgid "<variable id=\"fostel\">Choose <emph>Format - Page - Sheet</emph> tab </variable>"
msgstr "<variable id=\"fostel\">选择<emph>格式 - 页面 - 工作表</emph>选项卡 </variable>"
@@ -783,7 +732,6 @@ msgstr "<variable id=\"fostel\">选择<emph>格式 - 页面 - 工作表</emph>
msgctxt ""
"00000405.xhp\n"
"par_id3150883\n"
-"26\n"
"help.text"
msgid "<variable id=\"fodrbe\">Choose <emph>Format - Print Ranges</emph></variable>"
msgstr "<variable id=\"fodrbe\">选择<emph>格式 - 打印区域</emph></variable>。"
@@ -792,7 +740,6 @@ msgstr "<variable id=\"fodrbe\">选择<emph>格式 - 打印区域</emph></variab
msgctxt ""
"00000405.xhp\n"
"par_id3156448\n"
-"27\n"
"help.text"
msgid "<variable id=\"fodrfe\">Choose <emph>Format - Print Ranges - Define</emph></variable>"
msgstr "<variable id=\"fodrfe\">选择<emph>格式 - 打印区域 - 定义</emph></variable>"
@@ -801,7 +748,6 @@ msgstr "<variable id=\"fodrfe\">选择<emph>格式 - 打印区域 - 定义</emph
msgctxt ""
"00000405.xhp\n"
"par_id3156290\n"
-"35\n"
"help.text"
msgid "<variable id=\"fodrhin\">Choose <emph>Format - Print Ranges - Add</emph></variable>"
msgstr "<variable id=\"fodrhin\">选择<emph>格式 - 打印区域 - 添加</emph></variable>"
@@ -810,7 +756,6 @@ msgstr "<variable id=\"fodrhin\">选择<emph>格式 - 打印区域 - 添加</emp
msgctxt ""
"00000405.xhp\n"
"par_id3155812\n"
-"28\n"
"help.text"
msgid "<variable id=\"fodbah\">Choose <emph>Format - Print Ranges - Clear</emph></variable>"
msgstr "<variable id=\"fodbah\">选择 <emph>格式 - 打印区域 - 清除</emph></variable>"
@@ -819,7 +764,6 @@ msgstr "<variable id=\"fodbah\">选择 <emph>格式 - 打印区域 - 清除</emp
msgctxt ""
"00000405.xhp\n"
"par_id3153307\n"
-"29\n"
"help.text"
msgid "<variable id=\"fodbbe\">Choose <emph>Format - Print Ranges - Edit</emph></variable>"
msgstr "<variable id=\"fodbbe\">选择<emph>格式 - 打印区域 - 编辑</emph></variable>"
@@ -828,7 +772,6 @@ msgstr "<variable id=\"fodbbe\">选择<emph>格式 - 打印区域 - 编辑</emph
msgctxt ""
"00000405.xhp\n"
"par_id3153916\n"
-"31\n"
"help.text"
msgid "Choose <emph>Format - AutoFormat</emph>"
msgstr "选择<emph>格式 - 自动格式</emph>"
@@ -837,7 +780,6 @@ msgstr "选择<emph>格式 - 自动格式</emph>"
msgctxt ""
"00000405.xhp\n"
"par_id3154532\n"
-"32\n"
"help.text"
msgid "On the Tools bar, click"
msgstr "在“工具”栏上,单击"
@@ -854,7 +796,6 @@ msgstr "<image id=\"img_id3156020\" src=\"cmd/sc_autoformat.png\" width=\"0.222i
msgctxt ""
"00000405.xhp\n"
"par_id3154060\n"
-"33\n"
"help.text"
msgid "AutoFormat"
msgstr "自动格式"
@@ -863,7 +804,6 @@ msgstr "自动格式"
msgctxt ""
"00000405.xhp\n"
"par_id3154618\n"
-"34\n"
"help.text"
msgid "<variable id=\"bedingte\">Choose <emph>Format - Conditional Formatting</emph></variable>"
msgstr "<variable id=\"bedingte\">选择<emph>格式 - 有条件的格式</emph> </variable>"
@@ -880,7 +820,6 @@ msgstr "工具菜单"
msgctxt ""
"00000406.xhp\n"
"hd_id3147264\n"
-"1\n"
"help.text"
msgid "Tools Menu"
msgstr "工具菜单"
@@ -889,16 +828,14 @@ msgstr "工具菜单"
msgctxt ""
"00000406.xhp\n"
"par_id3150541\n"
-"2\n"
"help.text"
-msgid "<variable id=\"exdektv\">Choose <emph>Tools - Detective</emph></variable>"
-msgstr "<variable id=\"exdektv\">选择<emph>工具 - 侦探</emph> </variable>"
+msgid "<variable id=\"exdektv\">Choose <emph>Tools - Detective</emph> </variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153194\n"
-"3\n"
"help.text"
msgid "Choose <emph>Tools - Detective - Trace Precedents</emph>"
msgstr "选择<emph>工具 - 侦探 - 向前的追踪箭头</emph>"
@@ -907,7 +844,6 @@ msgstr "选择<emph>工具 - 侦探 - 向前的追踪箭头</emph>"
msgctxt ""
"00000406.xhp\n"
"par_id3150447\n"
-"29\n"
"help.text"
msgid "Shift+F7"
msgstr "Shift+F7"
@@ -916,25 +852,22 @@ msgstr "Shift+F7"
msgctxt ""
"00000406.xhp\n"
"par_id3154123\n"
-"33\n"
"help.text"
-msgid "<variable id=\"silbentrennungc\">Menu <emph>Tools - Language - Hyphenation</emph></variable>"
-msgstr "<variable id=\"silbentrennungc\">菜单<emph>工具 - 语言 - 连字符</emph></variable>"
+msgid "<variable id=\"silbentrennungc\">Menu <emph>Tools - Language - Hyphenation</emph> </variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3145785\n"
-"4\n"
"help.text"
-msgid "<variable id=\"exdvore\">Choose <emph>Tools - Detective - Remove Precedents</emph></variable>"
-msgstr "<variable id=\"exdvore\">选择<emph>工具 - 侦探 - 删除向前的追踪箭头</emph> </variable>"
+msgid "<variable id=\"exdvore\">Choose <emph>Tools - Detective - Remove Precedents</emph> </variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3155411\n"
-"5\n"
"help.text"
msgid "Choose <emph>Tools - Detective - Trace Dependents</emph>"
msgstr "选择<emph>工具 - 侦探 - 向后的追踪箭头</emph>"
@@ -943,7 +876,6 @@ msgstr "选择<emph>工具 - 侦探 - 向后的追踪箭头</emph>"
msgctxt ""
"00000406.xhp\n"
"par_id3153363\n"
-"30\n"
"help.text"
msgid "Shift+F5"
msgstr "组合键(Shift)(F5)"
@@ -952,98 +884,89 @@ msgstr "组合键(Shift)(F5)"
msgctxt ""
"00000406.xhp\n"
"par_id3146984\n"
-"6\n"
"help.text"
-msgid "<variable id=\"exdszne\">Choose <emph>Tools - Detective - Remove Dependents</emph></variable>"
-msgstr "<variable id=\"exdszne\">选择<emph>工具 - 侦探 - 删除向后的追踪箭头</emph> </variable>"
+msgid "<variable id=\"exdszne\">Choose <emph>Tools - Detective - Remove Dependents</emph> </variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3154014\n"
-"7\n"
"help.text"
-msgid "<variable id=\"exdase\">Choose <emph>Tools - Detective - Remove All Traces</emph></variable>"
-msgstr "<variable id=\"exdase\">选择<emph>工具 - 侦探 - 删除全部的追踪箭头</emph> </variable>"
+msgid "<variable id=\"exdase\">Choose <emph>Tools - Detective - Remove All Traces</emph> </variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153188\n"
-"8\n"
"help.text"
-msgid "<variable id=\"exdszfe\">Choose <emph>Tools - Detective - Trace Error</emph></variable>"
-msgstr "<variable id=\"exdszfe\">选择<emph>工具 - 侦探 - 追踪错误</emph> </variable>"
+msgid "<variable id=\"exdszfe\">Choose <emph>Tools - Detective - Trace Error</emph> </variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3149410\n"
-"9\n"
"help.text"
-msgid "<variable id=\"fuellmodus\">Choose <emph>Tools - Detective - Fill Mode</emph></variable>"
-msgstr "<variable id=\"fuellmodus\">选择<emph>工具 - 侦探 - 填充模式</emph> </variable>"
+msgid "<variable id=\"fuellmodus\">Choose <emph>Tools - Detective - Fill Mode</emph> </variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3156284\n"
-"10\n"
"help.text"
-msgid "<variable id=\"dateneinkreisen\">Choose <emph>Tools - Detective - Mark Invalid Data</emph></variable>"
-msgstr "<variable id=\"dateneinkreisen\">选择<emph>工具 - 侦探 - 标记无效的数据</emph> </variable>"
+msgid "<variable id=\"dateneinkreisen\">Choose <emph>Tools - Detective - Mark Invalid Data</emph> </variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153159\n"
-"11\n"
"help.text"
-msgid "<variable id=\"spurenaktualisieren\">Choose <emph>Tools - Detective - Refresh Traces</emph></variable>"
-msgstr "<variable id=\"spurenaktualisieren\">选择<emph>工具 - 侦探 - 更新追踪箭头</emph> </variable>"
+msgid "<variable id=\"spurenaktualisieren\">Choose <emph>Tools - Detective - Refresh Traces</emph> </variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3147397\n"
-"32\n"
"help.text"
-msgid "<variable id=\"automatisch\">Choose <emph>Tools - Detective - AutoRefresh</emph></variable>"
-msgstr "<variable id=\"automatisch\">选择<emph>工具 - 侦探 - 自动更新</emph> </variable>"
+msgid "<variable id=\"automatisch\">Choose <emph>Tools - Detective - AutoRefresh</emph> </variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3154018\n"
-"12\n"
"help.text"
-msgid "<variable id=\"exzws\">Choose <emph>Tools - Goal Seek</emph></variable>"
-msgstr "<variable id=\"exzws\">选择<emph>工具 - 单变量求解</emph> </variable>"
+msgid "<variable id=\"exzws\">Choose <emph>Tools - Goal Seek</emph> </variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3269142\n"
"help.text"
-msgid "<variable id=\"solver\">Choose Tools - Solver</variable>"
-msgstr "<variable id=\"solver\">选择“工具” - \"Solver\"</variable>"
+msgid "<variable id=\"solver\">Choose <emph>Tools - Solver</emph> </variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id8554338\n"
"help.text"
-msgid "<variable id=\"solver_options\">Choose Tools - Solver, Options button</variable>"
-msgstr "<variable id=\"solver_options\">选择“工具” - \"Solver\",“选项”按钮</variable>"
+msgid "<variable id=\"solver_options\">Choose <emph>Tools - Solver</emph>, <emph>Options</emph> button </variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3156277\n"
-"13\n"
"help.text"
-msgid "<variable id=\"exsze\">Choose <emph>Tools - Scenarios</emph></variable>"
-msgstr "<variable id=\"exsze\">选择<emph>工具 - 方案</emph> </variable>"
+msgid "<variable id=\"exsze\">Choose <emph>Tools - Scenarios</emph> </variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
@@ -1064,26 +987,15 @@ msgstr "<variable id=\"protect_spreadsheet\">选择 <emph>工具 - 保护工作
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_id3147363\n"
-"17\n"
-"help.text"
-msgid "<variable id=\"zellinhalte\">Choose <emph>Tools - Cell Contents</emph></variable>"
-msgstr "<variable id=\"zellinhalte\">选择<emph>工具 - 单元格内容</emph> </variable>"
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_id3146919\n"
-"18\n"
"help.text"
-msgid "Choose <emph>Tools - Cell Contents - Recalculate</emph>"
-msgstr "选择<emph>工具 - 单元格内容 - 重新计算</emph>"
+msgid "Choose <emph>Data - </emph><emph>C</emph><emph>alculate</emph><emph> - Recalculate</emph>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3149257\n"
-"31\n"
"help.text"
msgid "F9"
msgstr "键(F9)"
@@ -1093,17 +1005,16 @@ msgctxt ""
"00000406.xhp\n"
"par_id3150941\n"
"help.text"
-msgid "<variable id=\"exatmb\">Choose <emph>Data - Calculate - AutoCalculate</emph></variable>"
-msgstr "<variable id=\"exatmb\">选择 <emph>数据 - 计算 - 自动计算</emph></variable>"
+msgid "<variable id=\"exatmb\">Choose <emph>Data - Calculate - AutoCalculate</emph> </variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151276\n"
-"20\n"
"help.text"
-msgid "<variable id=\"autoeingabe\">Choose <emph>Tools - Cell Contents - AutoInput</emph></variable>"
-msgstr "<variable id=\"autoeingabe\">选择<emph>工具 - 单元格内容 - 自动输入</emph> </variable>"
+msgid "<variable id=\"autoeingabe\">Choose <emph>Tools - AutoInput</emph> </variable>"
+msgstr ""
#: 00000407.xhp
msgctxt ""
@@ -1149,7 +1060,6 @@ msgstr "数据菜单"
msgctxt ""
"00000412.xhp\n"
"hd_id3145136\n"
-"1\n"
"help.text"
msgid "Data Menu"
msgstr "数据菜单"
@@ -1166,7 +1076,6 @@ msgstr "<variable id=\"text2columns\">选择<emph>数据 - 文字分列</emph></
msgctxt ""
"00000412.xhp\n"
"par_id3147399\n"
-"3\n"
"help.text"
msgid "<variable id=\"dbrbf\">Choose <emph>Data - Define Range</emph></variable>"
msgstr "<variable id=\"dbrbf\">选择<emph>数据 - 定义区域</emph></variable>"
@@ -1175,7 +1084,6 @@ msgstr "<variable id=\"dbrbf\">选择<emph>数据 - 定义区域</emph></variabl
msgctxt ""
"00000412.xhp\n"
"par_id3145345\n"
-"4\n"
"help.text"
msgid "<variable id=\"dbrba\">Choose <emph>Data - Select Range</emph></variable>"
msgstr "<variable id=\"dbrba\">选择<emph>数据 - 选择区域</emph></variable>"
@@ -1192,7 +1100,6 @@ msgstr "<variable id=\"dnsrt\">选择 <emph>数据 - 排序...</emph></variable>
msgctxt ""
"00000412.xhp\n"
"par_id3148491\n"
-"6\n"
"help.text"
msgid "Choose <emph>Data - Sort - Sort Criteria</emph> tab"
msgstr "选择<emph>数据 - 排序 - 排序标准</emph>选项卡"
@@ -1201,7 +1108,6 @@ msgstr "选择<emph>数据 - 排序 - 排序标准</emph>选项卡"
msgctxt ""
"00000412.xhp\n"
"par_id3154516\n"
-"7\n"
"help.text"
msgid "On Standard bar, click"
msgstr "在“标准”栏中,单击"
@@ -1218,7 +1124,6 @@ msgstr "<image id=\"img_id3150543\" src=\"cmd/sc_sortup.png\" width=\"0.1665inch
msgctxt ""
"00000412.xhp\n"
"par_id3150767\n"
-"8\n"
"help.text"
msgid "Sort Ascending"
msgstr "向上排序"
@@ -1235,7 +1140,6 @@ msgstr "<image id=\"img_id3125863\" src=\"cmd/sc_sortdown.png\" width=\"0.1701in
msgctxt ""
"00000412.xhp\n"
"par_id3145364\n"
-"9\n"
"help.text"
msgid "Sort Descending"
msgstr "向下排序"
@@ -1244,7 +1148,6 @@ msgstr "向下排序"
msgctxt ""
"00000412.xhp\n"
"par_id3146984\n"
-"10\n"
"help.text"
msgid "<variable id=\"dnstot\">Choose <emph>Data - Sort - Options</emph> tab</variable>"
msgstr "<variable id=\"dnstot\">选择 <emph>数据 - 排序 - 选项</emph>选项卡</variable>"
@@ -1253,7 +1156,6 @@ msgstr "<variable id=\"dnstot\">选择 <emph>数据 - 排序 - 选项</emph>选
msgctxt ""
"00000412.xhp\n"
"par_id3155308\n"
-"11\n"
"help.text"
msgid "<variable id=\"dnftr\">Choose <emph>Data - Filter</emph></variable>"
msgstr "<variable id=\"dnftr\">选择<emph>数据 - 筛选</emph> </variable>"
@@ -1270,7 +1172,6 @@ msgstr "选择 <emph>数据 - 自动筛选</emph>"
msgctxt ""
"00000412.xhp\n"
"par_id3151113\n"
-"13\n"
"help.text"
msgid "On Tools bar or Table Data bar, click"
msgstr "在“工具”栏或“表格数据”栏中,单击"
@@ -1287,7 +1188,6 @@ msgstr "<image id=\"img_id3149413\" src=\"cmd/sc_datafilterautofilter.png\" widt
msgctxt ""
"00000412.xhp\n"
"par_id3149401\n"
-"14\n"
"help.text"
msgid "AutoFilter"
msgstr "自动筛选"
@@ -1328,7 +1228,6 @@ msgstr "选择 <emph>数据 - 更多筛选 - 重置筛选</emph>"
msgctxt ""
"00000412.xhp\n"
"par_id3155961\n"
-"48\n"
"help.text"
msgid "On Table Data bar, click <emph>Reset Filter/Sort</emph>"
msgstr "在表格数据栏,单击<emph>重置筛选/排序</emph>"
@@ -1345,7 +1244,6 @@ msgstr "<image id=\"img_id3145792\" src=\"cmd/sc_removefilter.png\" width=\"0.22
msgctxt ""
"00000412.xhp\n"
"par_id3149207\n"
-"49\n"
"help.text"
msgid "Reset Filter/Sort"
msgstr "重置筛选/排序"
@@ -1362,7 +1260,6 @@ msgstr "<variable id=\"dnaftas\">选择 <emph>数据 - 更多筛选 - 隐藏自
msgctxt ""
"00000412.xhp\n"
"par_id3166424\n"
-"22\n"
"help.text"
msgid "<variable id=\"dntegs\">Choose <emph>Data - Subtotals</emph></variable>"
msgstr "<variable id=\"dntegs\">选择 <emph>数据 - 分类汇总</emph></variable>"
@@ -1371,7 +1268,6 @@ msgstr "<variable id=\"dntegs\">选择 <emph>数据 - 分类汇总</emph></varia
msgctxt ""
"00000412.xhp\n"
"par_id3154574\n"
-"23\n"
"help.text"
msgid "<variable id=\"dntezd\">Choose <emph>Data - Subtotals - 1st, 2nd, 3rd Group</emph> tabs</variable>"
msgstr "<variable id=\"dntezd\">选择 <emph>数据 - 分类汇总 - 第 1 组、第 2 组、第 3 组</emph> 选项卡</variable>"
@@ -1380,7 +1276,6 @@ msgstr "<variable id=\"dntezd\">选择 <emph>数据 - 分类汇总 - 第 1 组
msgctxt ""
"00000412.xhp\n"
"par_id3151277\n"
-"24\n"
"help.text"
msgid "<variable id=\"dntopi\">Choose <emph>Data - Subtotals - Options</emph> tab</variable>"
msgstr "<variable id=\"dntopi\">选择 <emph>数据 - 分类汇总 - 选项</emph> 选项卡</variable>"
@@ -1389,7 +1284,6 @@ msgstr "<variable id=\"dntopi\">选择 <emph>数据 - 分类汇总 - 选项</emp
msgctxt ""
"00000412.xhp\n"
"par_id3145133\n"
-"25\n"
"help.text"
msgid "<variable id=\"datengueltig\">Choose <emph>Data - Validity</emph></variable>"
msgstr "<variable id=\"datengueltig\">选择<emph>数据 - 有效性</emph></variable>"
@@ -1398,7 +1292,6 @@ msgstr "<variable id=\"datengueltig\">选择<emph>数据 - 有效性</emph></var
msgctxt ""
"00000412.xhp\n"
"par_id3152992\n"
-"26\n"
"help.text"
msgid "<variable id=\"datengueltigwerte\">Menu <emph>Data - Validity - Criteria</emph> tab</variable>"
msgstr "<variable id=\"datengueltigwerte\"><emph>数据菜单 - 有效性 - 条件</emph> 选项卡</variable>"
@@ -1407,7 +1300,6 @@ msgstr "<variable id=\"datengueltigwerte\"><emph>数据菜单 - 有效性 - 条
msgctxt ""
"00000412.xhp\n"
"par_id3150367\n"
-"27\n"
"help.text"
msgid "<variable id=\"datengueltigeingabe\">Choose <emph>Data - Validity - Input Help</emph> tab</variable>"
msgstr "<variable id=\"datengueltigeingabe\">选择 <emph>数据 - 有效性 - 输入帮助</emph>选项卡</variable>"
@@ -1416,7 +1308,6 @@ msgstr "<variable id=\"datengueltigeingabe\">选择 <emph>数据 - 有效性 -
msgctxt ""
"00000412.xhp\n"
"par_id3154486\n"
-"28\n"
"help.text"
msgid "<variable id=\"datengueltigfehler\">Choose <emph>Data - Validity - Error Alert</emph> tab</variable>"
msgstr "<variable id=\"datengueltigfehler\">选择 <emph>数据 - 有效性 - 错误报告</emph> 选项卡</variable>"
@@ -1425,7 +1316,6 @@ msgstr "<variable id=\"datengueltigfehler\">选择 <emph>数据 - 有效性 -
msgctxt ""
"00000412.xhp\n"
"par_id3146978\n"
-"29\n"
"help.text"
msgid "<variable id=\"dnmfo\">Choose <emph>Data - Multiple Operations</emph></variable>"
msgstr "<variable id=\"dnmfo\">选择<emph>数据 - 多重计算</emph> </variable>"
@@ -1434,7 +1324,6 @@ msgstr "<variable id=\"dnmfo\">选择<emph>数据 - 多重计算</emph> </variab
msgctxt ""
"00000412.xhp\n"
"par_id3155809\n"
-"30\n"
"help.text"
msgid "<variable id=\"dnksd\">Choose <emph>Data - Consolidate</emph></variable>"
msgstr "<variable id=\"dnksd\">选择<emph>数据 - 合并计算</emph> </variable>"
@@ -1443,7 +1332,6 @@ msgstr "<variable id=\"dnksd\">选择<emph>数据 - 合并计算</emph> </variab
msgctxt ""
"00000412.xhp\n"
"par_id3148701\n"
-"31\n"
"help.text"
msgid "<variable id=\"dngld\">Choose <emph>Data - Group and Outline</emph></variable>"
msgstr "<variable id=\"dngld\">选择<emph>数据 - 组合及分级显示</emph></variable>"
@@ -1452,7 +1340,6 @@ msgstr "<variable id=\"dngld\">选择<emph>数据 - 组合及分级显示</emph>
msgctxt ""
"00000412.xhp\n"
"par_id3153815\n"
-"32\n"
"help.text"
msgid "<variable id=\"dngda\">Choose <emph>Data - Group and Outline - Hide Details</emph></variable>"
msgstr "<variable id=\"dngda\">选择<emph>数据 - 组合及分级显示 - 隐藏细节</emph></variable>"
@@ -1461,7 +1348,6 @@ msgstr "<variable id=\"dngda\">选择<emph>数据 - 组合及分级显示 - 隐
msgctxt ""
"00000412.xhp\n"
"par_id3159223\n"
-"33\n"
"help.text"
msgid "<variable id=\"dngde\">Choose <emph>Data - Group and Outline - Show Details</emph></variable>"
msgstr "<variable id=\"dngde\">选择<emph>数据 - 组合及分级显示 - 显示细节</emph></variable>"
@@ -1470,7 +1356,6 @@ msgstr "<variable id=\"dngde\">选择<emph>数据 - 组合及分级显示 - 显
msgctxt ""
"00000412.xhp\n"
"par_id3146870\n"
-"34\n"
"help.text"
msgid "Choose <emph>Data - Group and Outline - Group</emph>"
msgstr "选择 <emph>数据 - 组合及分级显示 - 组合</emph>"
@@ -1479,7 +1364,6 @@ msgstr "选择 <emph>数据 - 组合及分级显示 - 组合</emph>"
msgctxt ""
"00000412.xhp\n"
"par_id3144507\n"
-"51\n"
"help.text"
msgid "F12"
msgstr "键(F12)"
@@ -1488,7 +1372,6 @@ msgstr "键(F12)"
msgctxt ""
"00000412.xhp\n"
"par_id3144772\n"
-"35\n"
"help.text"
msgid "On <emph>Tools</emph> bar, click"
msgstr "在<emph>工具</emph>栏上,单击"
@@ -1505,7 +1388,6 @@ msgstr "<image id=\"img_id3153287\" src=\"cmd/sc_group.png\" width=\"0.222inch\"
msgctxt ""
"00000412.xhp\n"
"par_id3150214\n"
-"36\n"
"help.text"
msgid "Group"
msgstr "组合"
@@ -1514,7 +1396,6 @@ msgstr "组合"
msgctxt ""
"00000412.xhp\n"
"par_id3146781\n"
-"37\n"
"help.text"
msgid "Choose <emph>Data - Group and Outline - Ungroup</emph>"
msgstr "选择<emph>数据 - 组合及分级显示 - 取消组合</emph>"
@@ -1523,7 +1404,6 @@ msgstr "选择<emph>数据 - 组合及分级显示 - 取消组合</emph>"
msgctxt ""
"00000412.xhp\n"
"par_id3150892\n"
-"52\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12 组合键"
@@ -1532,7 +1412,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinl
msgctxt ""
"00000412.xhp\n"
"par_id3155097\n"
-"38\n"
"help.text"
msgid "On <emph>Tools</emph> bar, click"
msgstr "在<emph>工具</emph>栏上,单击"
@@ -1549,7 +1428,6 @@ msgstr "<image id=\"img_id3155914\" src=\"cmd/sc_ungroup.png\" width=\"0.222inch
msgctxt ""
"00000412.xhp\n"
"par_id3153555\n"
-"39\n"
"help.text"
msgid "Ungroup"
msgstr "取消组合"
@@ -1558,7 +1436,6 @@ msgstr "取消组合"
msgctxt ""
"00000412.xhp\n"
"par_id3153008\n"
-"40\n"
"help.text"
msgid "<variable id=\"dnglagl\">Choose <emph>Data - Group and Outline - AutoOutline</emph></variable>"
msgstr "<variable id=\"dnglagl\">选择<emph>数据 - 组合及分级显示 - 自动建立分级显示</emph></variable>"
@@ -1567,7 +1444,6 @@ msgstr "<variable id=\"dnglagl\">选择<emph>数据 - 组合及分级显示 -
msgctxt ""
"00000412.xhp\n"
"par_id3154709\n"
-"41\n"
"help.text"
msgid "<variable id=\"dnglef\">Choose <emph>Data - Group and Outline - Remove</emph></variable>"
msgstr "<variable id=\"dnglef\">选择<emph>数据 - 组合及分级显示 - 清除分级显示</emph></variable>"
@@ -1584,7 +1460,6 @@ msgstr "<variable id=\"dngdrill\">选择 <emph>数据 - 组合及分级显示 -
msgctxt ""
"00000412.xhp\n"
"par_id3155759\n"
-"42\n"
"help.text"
msgid "<variable id=\"dndtpt\">Choose <emph>Data - Pivot Table</emph></variable>"
msgstr "<variable id=\"dndtpt\">选择 <emph>数据 - 透视表</emph></variable>"
@@ -1593,7 +1468,6 @@ msgstr "<variable id=\"dndtpt\">选择 <emph>数据 - 透视表</emph></variable
msgctxt ""
"00000412.xhp\n"
"par_id3154625\n"
-"43\n"
"help.text"
msgid "<variable id=\"dndpa\">Choose <emph>Insert - Pivot Table</emph></variable>"
msgstr "<variable id=\"dndpa\">选择 <emph>插入 - 数据透视表</emph></variable>"
@@ -1602,7 +1476,6 @@ msgstr "<variable id=\"dndpa\">选择 <emph>插入 - 数据透视表</emph></var
msgctxt ""
"00000412.xhp\n"
"par_id3147558\n"
-"53\n"
"help.text"
msgid "<variable id=\"dndq\">Choose <emph>Insert - Pivot Table</emph>, in the Select Source dialog choose the option <emph>Data source registered in $[officename]</emph>.</variable>"
msgstr "<variable id=\"dndq\">选择 <emph>插入 - 数据透视表</emph>,在“选择数据来源”对话框中选择选项 <emph>在 $[officename] 中注册的数据源</emph>。</variable>"
@@ -1611,7 +1484,6 @@ msgstr "<variable id=\"dndq\">选择 <emph>插入 - 数据透视表</emph>,在
msgctxt ""
"00000412.xhp\n"
"par_id3153297\n"
-"50\n"
"help.text"
msgid "Choose <emph>Insert - Pivot Table</emph>, in the Select Source dialog choose the option <emph>Current selection</emph>."
msgstr "选择 <emph>插入 - 数据透视表</emph>在“选择数据来源”对话框中选择选项 <emph>当前选中的区域</emph>。"
@@ -1620,7 +1492,6 @@ msgstr "选择 <emph>插入 - 数据透视表</emph>在“选择数据来源”
msgctxt ""
"00000412.xhp\n"
"par_id3145118\n"
-"54\n"
"help.text"
msgid "Choose <emph>Insert - Pivot Table</emph>, in the Select Source dialog choose the option <emph>Data source registered in $[officename]</emph>, click <emph>OK</emph> to see <emph>Select Data Source</emph> dialog."
msgstr "选择 <emph>插入 - 数据透视表</emph>在“选择数据来源”对话框中选择选项 <emph>在$[officename]中注册的数据源</emph>,单击<emph>确定</emph>,此时会打开<emph>选择数据源</emph>对话框。"
@@ -1629,7 +1500,6 @@ msgstr "选择 <emph>插入 - 数据透视表</emph>在“选择数据来源”
msgctxt ""
"00000412.xhp\n"
"par_id3153294\n"
-"44\n"
"help.text"
msgid "<variable id=\"dndpak\">Choose <emph>Data - Pivot Table - Refresh</emph></variable>"
msgstr "<variable id=\"dndpak\">选择 <emph>数据 - 透视表 - 刷新</emph></variable>"
@@ -1638,7 +1508,6 @@ msgstr "<variable id=\"dndpak\">选择 <emph>数据 - 透视表 - 刷新</emph><
msgctxt ""
"00000412.xhp\n"
"par_id3151344\n"
-"45\n"
"help.text"
msgid "<variable id=\"dndploe\">Choose <emph>Data - Pivot Table - Delete</emph></variable>"
msgstr "<variable id=\"dndploe\">选择 <emph>数据 - 透视表 - 删除</emph></variable>"
@@ -1647,7 +1516,6 @@ msgstr "<variable id=\"dndploe\">选择 <emph>数据 - 透视表 - 删除</emph>
msgctxt ""
"00000412.xhp\n"
"par_id3150397\n"
-"46\n"
"help.text"
msgid "<variable id=\"dndakt\">Choose <emph>Data - Refresh Range</emph></variable>"
msgstr "<variable id=\"dndakt\">选择<emph>数据 - 更新区域</emph> </variable>"
diff --git a/source/zh-CN/helpcontent2/source/text/scalc/01.po b/source/zh-CN/helpcontent2/source/text/scalc/01.po
index 75f26c0e3b1..537a0119078 100644
--- a/source/zh-CN/helpcontent2/source/text/scalc/01.po
+++ b/source/zh-CN/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: libreoffice help\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-05-12 14:35+0200\n"
"PO-Revision-Date: 2017-03-16 15:46+0000\n"
"Last-Translator: Reri <riwu@hotmail.co.uk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1489679168.000000\n"
#: 01120000.xhp
@@ -100,7 +100,6 @@ msgstr "<bookmark_value>导航;用于工作表</bookmark_value><bookmark_value>
msgctxt ""
"02110000.xhp\n"
"hd_id3150791\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>"
msgstr "<link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">导航</link>"
@@ -109,7 +108,6 @@ msgstr "<link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">导航</lin
msgctxt ""
"02110000.xhp\n"
"par_id3156422\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:Navigator\">Activates and deactivates the Navigator.</ahelp> The Navigator is a <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link>."
msgstr "<ahelp hid=\".uno:Navigator\">激活或隐藏导航窗口。</ahelp>导航窗口是<link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">可停靠的窗口</link>."
@@ -118,7 +116,6 @@ msgstr "<ahelp hid=\".uno:Navigator\">激活或隐藏导航窗口。</ahelp>导
msgctxt ""
"02110000.xhp\n"
"par_id3145271\n"
-"40\n"
"help.text"
msgid "Choose <emph>View - Navigator</emph> to display the Navigator."
msgstr "选择<emph>视图 - 导航</emph>以显示“导航”窗口。"
@@ -127,7 +124,6 @@ msgstr "选择<emph>视图 - 导航</emph>以显示“导航”窗口。"
msgctxt ""
"02110000.xhp\n"
"hd_id3159155\n"
-"4\n"
"help.text"
msgid "Column"
msgstr "列"
@@ -136,7 +132,6 @@ msgstr "列"
msgctxt ""
"02110000.xhp\n"
"par_id3146984\n"
-"5\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/column\">Enter the column letter. Press Enter to reposition the cell cursor to the specified column in the same row.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/navigatorpanel/column\">输入工作表的列对应的字母。按下回车键从而将光标定位在同一行上指定的列。</ahelp>"
@@ -145,7 +140,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/navigatorpanel/column\">输入工作表的
msgctxt ""
"02110000.xhp\n"
"hd_id3147126\n"
-"6\n"
"help.text"
msgid "Row"
msgstr "行"
@@ -154,7 +148,6 @@ msgstr "行"
msgctxt ""
"02110000.xhp\n"
"par_id3149958\n"
-"7\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/row\">Enter a row number. Press Enter to reposition the cell cursor to the specified row in the same column.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/navigatorpanel/row\">输入工作表的行对应的数字。按下回车键从而将光标定位在同一列上指定的行。</ahelp>"
@@ -163,7 +156,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/navigatorpanel/row\">输入工作表的行
msgctxt ""
"02110000.xhp\n"
"hd_id3150717\n"
-"8\n"
"help.text"
msgid "Data Range"
msgstr "数据区域"
@@ -172,7 +164,6 @@ msgstr "数据区域"
msgctxt ""
"02110000.xhp\n"
"par_id3150752\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/datarange\">Specifies the current data range denoted by the position of the cell cursor.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/navigatorpanel/datarange\">根据单元格光标所在的位置来指定当前数据区域。</ahelp>"
@@ -189,7 +180,6 @@ msgstr "<image id=\"img_id3147338\" src=\"cmd/sc_grid.png\" width=\"0.2228in\" h
msgctxt ""
"02110000.xhp\n"
"par_id3146919\n"
-"9\n"
"help.text"
msgid "Data Range"
msgstr "数据区域"
@@ -198,7 +188,6 @@ msgstr "数据区域"
msgctxt ""
"02110000.xhp\n"
"hd_id3148488\n"
-"14\n"
"help.text"
msgid "Start"
msgstr "开始"
@@ -207,7 +196,6 @@ msgstr "开始"
msgctxt ""
"02110000.xhp\n"
"par_id3150086\n"
-"16\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/start\">Moves to the cell at the beginning of the current data range, which you can highlight using the <emph>Data Range</emph> button.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/navigatorpanel/start\">将光标移动到当前数据区域的起始单元格。您可以使用<emph>数据区域</emph>按钮定位当前的数据区域。</ahelp>"
@@ -217,14 +205,13 @@ msgctxt ""
"02110000.xhp\n"
"par_id3152994\n"
"help.text"
-msgid "<image id=\"img_id3150515\" src=\"sw/imglst/sc20186.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150515\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150515\" src=\"sw/imglst/sc20186.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150515\">图标</alt></image>"
+msgid "<image id=\"img_id3150515\" src=\"sw/res/sc20186.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150515\">Icon</alt></image>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154372\n"
-"15\n"
"help.text"
msgid "Start"
msgstr "开始"
@@ -233,7 +220,6 @@ msgstr "开始"
msgctxt ""
"02110000.xhp\n"
"hd_id3146982\n"
-"17\n"
"help.text"
msgid "End"
msgstr "结束"
@@ -242,7 +228,6 @@ msgstr "结束"
msgctxt ""
"02110000.xhp\n"
"par_id3152985\n"
-"19\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/end\">Moves to the cell at the end of the current data range, which you can highlight using the <emph>Data Range</emph> button.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/navigatorpanel/end\">将光标移动到当前数据区域的结束单元格。您可以使用<emph>数据区域</emph>按钮定位当前的数据区域。</ahelp>"
@@ -252,14 +237,13 @@ msgctxt ""
"02110000.xhp\n"
"par_id3159170\n"
"help.text"
-msgid "<image id=\"img_id3148871\" src=\"sw/imglst/sc20175.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148871\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148871\" src=\"sw/imglst/sc20175.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148871\">图标</alt></image>"
+msgid "<image id=\"img_id3148871\" src=\"sw/res/sc20175.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148871\">Icon</alt></image>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3147072\n"
-"18\n"
"help.text"
msgid "End"
msgstr "结束"
@@ -268,7 +252,6 @@ msgstr "结束"
msgctxt ""
"02110000.xhp\n"
"hd_id3150107\n"
-"20\n"
"help.text"
msgid "Toggle"
msgstr "切换"
@@ -277,7 +260,6 @@ msgstr "切换"
msgctxt ""
"02110000.xhp\n"
"par_id3159098\n"
-"22\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/datarange\">Toggles the content view. Only the selected Navigator element and its subelements are displayed.</ahelp> Click the icon again to restore all elements for viewing."
msgstr "<ahelp hid=\"modules/scalc/ui/navigatorpanel/datarange\">内容视图切换。单击则只显示当前所选的导航元素。</ahelp>再次单击该图标可还原显示所有的导航视图元素。"
@@ -287,14 +269,13 @@ msgctxt ""
"02110000.xhp\n"
"par_id3152869\n"
"help.text"
-msgid "<image id=\"img_id3149126\" src=\"sw/imglst/sc20244.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149126\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149126\" src=\"sw/imglst/sc20244.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149126\">图标</alt></image>"
+msgid "<image id=\"img_id3149126\" src=\"sw/res/sc20244.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149126\">Icon</alt></image>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3159229\n"
-"21\n"
"help.text"
msgid "Toggle"
msgstr "切换"
@@ -303,7 +284,6 @@ msgstr "切换"
msgctxt ""
"02110000.xhp\n"
"hd_id3149381\n"
-"11\n"
"help.text"
msgid "Contents"
msgstr "内容"
@@ -312,7 +292,6 @@ msgstr "内容"
msgctxt ""
"02110000.xhp\n"
"par_id3150051\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/toggle\">Allows you to hide/show the contents.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/navigatorpanel/toggle\">用于隐藏和显示内容。</ahelp>"
@@ -322,14 +301,13 @@ msgctxt ""
"02110000.xhp\n"
"par_id3155597\n"
"help.text"
-msgid "<image id=\"img_id3154738\" src=\"sw/imglst/sc20233.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154738\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154738\" src=\"sw/imglst/sc20233.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154738\">图标</alt></image>"
+msgid "<image id=\"img_id3154738\" src=\"sw/res/sc20233.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154738\">Icon</alt></image>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150955\n"
-"12\n"
"help.text"
msgid "Contents"
msgstr "内容"
@@ -338,7 +316,6 @@ msgstr "内容"
msgctxt ""
"02110000.xhp\n"
"hd_id3147244\n"
-"23\n"
"help.text"
msgid "Scenarios"
msgstr "方案"
@@ -347,7 +324,6 @@ msgstr "方案"
msgctxt ""
"02110000.xhp\n"
"par_id3153955\n"
-"25\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/scenarios\">Displays all available scenarios. Double-click a name to apply that scenario.</ahelp> The result is shown in the sheet. For more information, choose <link href=\"text/scalc/01/06050000.xhp\" name=\"Tools - Scenarios\"><emph>Tools - Scenarios</emph></link>."
msgstr "<ahelp hid=\"modules/scalc/ui/navigatorpanel/scenarios\">显示所有可用的方案。双击名称以应用该方案。</ahelp>结果将在工作表中显示。更多信息,请选择 <link href=\"text/scalc/01/06050000.xhp\" name=\"Tools - Scenarios\"><emph>工具 - 方案</emph></link>。"
@@ -357,14 +333,13 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148745\n"
"help.text"
-msgid "<image id=\"img_id3159256\" src=\"sc/imglst/na07.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159256\">Icon</alt></image>"
-msgstr "<image id=\"img_id3159256\" src=\"sc/imglst/na07.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159256\">图标</alt></image>"
+msgid "<image id=\"img_id3159256\" src=\"sc/res/na07.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159256\">Icon</alt></image>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3166466\n"
-"24\n"
"help.text"
msgid "Scenarios"
msgstr "方案"
@@ -390,8 +365,8 @@ msgctxt ""
"02110000.xhp\n"
"par_idN10A7B\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_SCENARIO_DELETE\">Deletes the selected scenario.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_SCENARIO_DELETE\">删除选定的方案。</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/scenariomenu/delete\">Deletes the selected scenario.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -406,14 +381,13 @@ msgctxt ""
"02110000.xhp\n"
"par_idN10A96\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_SCENARIO_EDIT\">Opens the <link href=\"text/scalc/01/06050000.xhp\">Edit scenario</link> dialog, where you can edit the scenario properties.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_SCENARIO_EDIT\">打开<link href=\"text/scalc/01/06050000.xhp\">编辑方案</link>对话框,在其中可以编辑方案属性。</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/scenariomenu/edit\">Opens the <link href=\"text/scalc/01/06050000.xhp\">Edit scenario</link> dialog, where you can edit the scenario properties.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3150037\n"
-"26\n"
"help.text"
msgid "Drag Mode"
msgstr "拖拽模式"
@@ -422,7 +396,6 @@ msgstr "拖拽模式"
msgctxt ""
"02110000.xhp\n"
"par_id3157876\n"
-"28\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/dragmode\">Opens a submenu for selecting the drag mode. You decide which action is performed when dragging and dropping an object from the Navigator into a document. Depending on the mode you select, the icon indicates whether a hyperlink, link or a copy is created.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/navigatorpanel/dragmode\">会打开一个子菜单,在子菜单中您可以选择拖拽模式。在此处您可以决定当用鼠标将对象从导航窗口拖动到文档中时将要执行的动作:是作为超链接插入,作为链接插入,还是创建副本。</ahelp>"
@@ -439,7 +412,6 @@ msgstr "<image id=\"img_id3159119\" src=\"cmd/sc_chainframes.png\" width=\"0.222
msgctxt ""
"02110000.xhp\n"
"par_id3150656\n"
-"27\n"
"help.text"
msgid "Drag Mode"
msgstr "拖拽模式"
@@ -448,7 +420,6 @@ msgstr "拖拽模式"
msgctxt ""
"02110000.xhp\n"
"hd_id3149009\n"
-"29\n"
"help.text"
msgid "Insert as Hyperlink"
msgstr "当作超链接插入"
@@ -457,10 +428,9 @@ msgstr "当作超链接插入"
msgctxt ""
"02110000.xhp\n"
"par_id3146938\n"
-"30\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_DROPMODE_URL\">Inserts a hyperlink when you drag-and-drop an object from the Navigator into a document.</ahelp> You can later click the created hyperlink to set the cursor and the view to the respective object."
-msgstr "<ahelp hid=\"HID_SC_DROPMODE_URL\">将对象从“导航”中拖放到文档中时插入一个超链接。</ahelp>接下来您就可以单击这个创建好的超链接来设置相应对象的光标和视图。"
+msgid "<ahelp hid=\"modules/scalc/ui/dropmenu/hyperlink\">Inserts a hyperlink when you drag-and-drop an object from the Navigator into a document.</ahelp> You can later click the created hyperlink to set the cursor and the view to the respective object."
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -474,7 +444,6 @@ msgstr "如果插入一个链接到打开的文档的超连接,在使用此超
msgctxt ""
"02110000.xhp\n"
"hd_id3154682\n"
-"31\n"
"help.text"
msgid "Insert as Link"
msgstr "当作链接插入"
@@ -483,16 +452,14 @@ msgstr "当作链接插入"
msgctxt ""
"02110000.xhp\n"
"par_id3150746\n"
-"32\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_DROPMODE_LINK\">Creates a link when you drag-and-drop an object from the Navigator into a document.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_DROPMODE_LINK\">将对象从“导航”中拖放到文档中时创建一个链接。</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/dropmenu/link\">Creates a link when you drag-and-drop an object from the Navigator into a document.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3145824\n"
-"33\n"
"help.text"
msgid "Insert as Copy"
msgstr "当作副本插入"
@@ -501,16 +468,14 @@ msgstr "当作副本插入"
msgctxt ""
"02110000.xhp\n"
"par_id3147471\n"
-"34\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_DROPMODE_COPY\">Generates a copy when you drag-and-drop an object from the Navigator into a document.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_DROPMODE_COPY\">将对象从“导航”中拖放到文档中时生成一个副本。</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/dropmenu/copy\">Generates a copy when you drag-and-drop an object from the Navigator into a document.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3147423\n"
-"38\n"
"help.text"
msgid "Objects"
msgstr "对象"
@@ -519,7 +484,6 @@ msgstr "对象"
msgctxt ""
"02110000.xhp\n"
"par_id3150700\n"
-"39\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/contentbox\">Displays all objects in your document.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/navigatorpanel/contentbox\">此处会显示文档中的所有对象。</ahelp>"
@@ -528,7 +492,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/navigatorpanel/contentbox\">此处会显
msgctxt ""
"02110000.xhp\n"
"hd_id3150860\n"
-"35\n"
"help.text"
msgid "Documents"
msgstr "文档"
@@ -537,7 +500,6 @@ msgstr "文档"
msgctxt ""
"02110000.xhp\n"
"par_id3153929\n"
-"36\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/documents\">Displays the names of all open documents.</ahelp> To switch to another open document in the Navigator, click the document name. The status (active, inactive) of the document is shown in brackets after the name. You can switch the active document in the <emph>Window</emph> menu."
msgstr "<ahelp hid=\"modules/scalc/ui/navigatorpanel/documents\">此处会显示所有已打开的文档的名称。</ahelp>要在导航窗口中切换到另外一个已打开的文档,请单击该文档的名称。文档的状态(活动的还是非活动的)显示在文档名称后面的方括号中。您可以在 <emph>窗口</emph> 菜单中进行活动窗口切换。"
@@ -594,7 +556,6 @@ msgstr "<bookmark_value>页面样式; 页眉</bookmark_value><bookmark_value>页
msgctxt ""
"02120100.xhp\n"
"hd_id3153360\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/02120100.xhp\" name=\"Header/Footer\">Header/Footer</link>"
msgstr "<link href=\"text/scalc/01/02120100.xhp\" name=\"Header/Footer\">页眉/页脚</link>"
@@ -603,7 +564,6 @@ msgstr "<link href=\"text/scalc/01/02120100.xhp\" name=\"Header/Footer\">页眉/
msgctxt ""
"02120100.xhp\n"
"par_id3150768\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/HeaderFooterContent\">Defines or formats a header or footer for a Page Style.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/HeaderFooterContent\">定义或格式化某个页面样式的页眉和页脚。</ahelp>"
@@ -612,7 +572,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/HeaderFooterContent\">
msgctxt ""
"02120100.xhp\n"
"hd_id3145748\n"
-"3\n"
"help.text"
msgid "Left Area"
msgstr "左侧区域"
@@ -621,7 +580,6 @@ msgstr "左侧区域"
msgctxt ""
"02120100.xhp\n"
"par_id3147434\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/textviewWND_LEFT\">Enter the text to be displayed at the left side of the header or footer.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/textviewWND_LEFT\">输入要显示在页眉或页脚左侧的文本。</ahelp>"
@@ -630,7 +588,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/textviewWND_LEFT\">输
msgctxt ""
"02120100.xhp\n"
"hd_id3148648\n"
-"5\n"
"help.text"
msgid "Center Area"
msgstr "中间区域"
@@ -639,7 +596,6 @@ msgstr "中间区域"
msgctxt ""
"02120100.xhp\n"
"par_id3163710\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the text to be displayed at the center of the header or footer.</ahelp>"
msgstr "<ahelp hid=\".\">输入要显示在页眉或页脚中央的文字。</ahelp>"
@@ -648,7 +604,6 @@ msgstr "<ahelp hid=\".\">输入要显示在页眉或页脚中央的文字。</ah
msgctxt ""
"02120100.xhp\n"
"hd_id3154942\n"
-"7\n"
"help.text"
msgid "Right Area"
msgstr "右侧区域"
@@ -657,7 +612,6 @@ msgstr "右侧区域"
msgctxt ""
"02120100.xhp\n"
"par_id3147126\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/textviewWND_RIGHT\">Enter the text to be displayed at the right side of the header or footer.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/textviewWND_RIGHT\">输入要显示在页眉或页脚右侧的文本。</ahelp>"
@@ -682,7 +636,6 @@ msgstr "<ahelp hid=\".\">从列表中选择预定义的页眉或页脚。</ahelp
msgctxt ""
"02120100.xhp\n"
"hd_id3154729\n"
-"9\n"
"help.text"
msgid "Text attributes"
msgstr "文字属性"
@@ -691,7 +644,6 @@ msgstr "文字属性"
msgctxt ""
"02120100.xhp\n"
"par_id3150717\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_TEXT\">Opens a dialog to assign formats to new or selected text.</ahelp> The <emph>Text Attributes </emph>dialog contains the tab pages <link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>, <link href=\"text/shared/01/05020200.xhp\" name=\"Font Effects\">Font Effects</link> and <link href=\"text/shared/01/05020500.xhp\" name=\"Font Position\">Font Position</link>."
msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_TEXT\">打开一个对话框,用于为新文字或选定文字指定格式。</ahelp> <emph>文本属性</emph>对话框包含选项卡页面<link href=\"text/shared/01/05020100.xhp\" name=\"字体\">字体</link>, <link href=\"text/shared/01/05020200.xhp\" name=\"字体效果\">字体效果</link> 与<link href=\"text/shared/01/05020500.xhp\" name=\"字体位置\">字体位置</link>。"
@@ -708,7 +660,6 @@ msgstr "<image id=\"img_id3156386\" src=\"sc/res/text.png\" width=\"0.1874in\" h
msgctxt ""
"02120100.xhp\n"
"par_id3155336\n"
-"25\n"
"help.text"
msgid "Text Attributes"
msgstr "文字属性"
@@ -717,7 +668,6 @@ msgstr "文字属性"
msgctxt ""
"02120100.xhp\n"
"hd_id3145792\n"
-"11\n"
"help.text"
msgid "File Name"
msgstr "文件名"
@@ -726,7 +676,6 @@ msgstr "文件名"
msgctxt ""
"02120100.xhp\n"
"par_id3150206\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_FILE\">Inserts a file name placeholder in the selected area.</ahelp> Click to insert the title. Long-click to select either title, file name or path/file name from the submenu. If a title has not be assigned (see <emph>File - Properties</emph>), the file name will be inserted instead."
msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_FILE\">在选定区域插入文件名占位符。</ahelp> 单击以插入标题。缓慢单击,从子菜单中选择标题、文件名或路径/文件名。如果没有指定标题(请参阅<emph>文件 - 属性</emph>),将插入文件名。"
@@ -743,7 +692,6 @@ msgstr "<image id=\"img_id3150518\" src=\"res/folderop.png\" width=\"0.1665in\"
msgctxt ""
"02120100.xhp\n"
"par_id3154487\n"
-"26\n"
"help.text"
msgid "File Name"
msgstr "文件名"
@@ -752,7 +700,6 @@ msgstr "文件名"
msgctxt ""
"02120100.xhp\n"
"hd_id3155812\n"
-"13\n"
"help.text"
msgid "Sheet Name"
msgstr "表格名称"
@@ -761,7 +708,6 @@ msgstr "表格名称"
msgctxt ""
"02120100.xhp\n"
"par_id3148842\n"
-"14\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_TABLE\">Inserts a placeholder in the selected header/footer area, which is replaced by the sheet name in the header/footer of the actual document.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_TABLE\">在选定的页眉/页脚区域中插入占位符,此占位符在实际文档的页眉/页脚中将由工作表名称替换。</ahelp>"
@@ -778,7 +724,6 @@ msgstr "<image id=\"img_id3148870\" src=\"sc/res/table.png\" width=\"0.2228in\"
msgctxt ""
"02120100.xhp\n"
"par_id3147071\n"
-"27\n"
"help.text"
msgid "Sheet Name"
msgstr "表格名称"
@@ -787,7 +732,6 @@ msgstr "表格名称"
msgctxt ""
"02120100.xhp\n"
"hd_id3144768\n"
-"15\n"
"help.text"
msgid "Page"
msgstr "页码"
@@ -796,7 +740,6 @@ msgstr "页码"
msgctxt ""
"02120100.xhp\n"
"par_id3154960\n"
-"16\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_PAGE\">Inserts a placeholder in the selected header/footer area, which is replaced by page numbering. This allows continuous page numbering in a document.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_PAGE\">在选定的页眉/页脚区域中插入占位符,此占位符将由页码代替。这样,就可以保证文档页码编号的连续性。</ahelp>"
@@ -813,7 +756,6 @@ msgstr "<image id=\"img_id3155386\" src=\"sc/res/page.png\" width=\"0.2228in\" h
msgctxt ""
"02120100.xhp\n"
"par_id3150048\n"
-"28\n"
"help.text"
msgid "Page"
msgstr "页码"
@@ -822,7 +764,6 @@ msgstr "页码"
msgctxt ""
"02120100.xhp\n"
"hd_id3146962\n"
-"17\n"
"help.text"
msgid "Pages"
msgstr "页数"
@@ -831,7 +772,6 @@ msgstr "页数"
msgctxt ""
"02120100.xhp\n"
"par_id3153812\n"
-"18\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_PAGES\">Inserts a placeholder in the selected header/footer area, which is replaced by the total number of pages in the document.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_PAGES\">在选定的页眉/页脚区域中插入占位符,此占位符将由文档的总页数代替。</ahelp>"
@@ -848,7 +788,6 @@ msgstr "<image id=\"img_id3155757\" src=\"sc/res/pages.png\" width=\"0.2228in\"
msgctxt ""
"02120100.xhp\n"
"par_id3147499\n"
-"29\n"
"help.text"
msgid "Pages"
msgstr "页数"
@@ -857,7 +796,6 @@ msgstr "页数"
msgctxt ""
"02120100.xhp\n"
"hd_id3149050\n"
-"19\n"
"help.text"
msgid "Date"
msgstr "日期"
@@ -866,7 +804,6 @@ msgstr "日期"
msgctxt ""
"02120100.xhp\n"
"par_id3153960\n"
-"20\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_DATE\">Inserts a placeholder in the selected header/footer area, which is replaced by the current date which will be repeated in the header/footer on each page of the document.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_DATE\">在选定的页眉/页脚区域中插入占位符,此占位符将由当前日期代替,并且在文档中每一页的页眉/页脚中重复出现。</ahelp>"
@@ -883,7 +820,6 @@ msgstr "<image id=\"img_id3150394\" src=\"sc/res/date.png\" width=\"0.2228in\" h
msgctxt ""
"02120100.xhp\n"
"par_id3150540\n"
-"30\n"
"help.text"
msgid "Date"
msgstr "日期"
@@ -892,7 +828,6 @@ msgstr "日期"
msgctxt ""
"02120100.xhp\n"
"hd_id3147610\n"
-"21\n"
"help.text"
msgid "Time"
msgstr "时间"
@@ -901,7 +836,6 @@ msgstr "时间"
msgctxt ""
"02120100.xhp\n"
"par_id3145638\n"
-"22\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_TIME\">Inserts a placeholder in the selected header/footer area, which is replaced by the current time in the header/footer on each page of the document.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_TIME\">在选定的页眉/页脚区域中插入占位符,此占位符将由当前时间代替,并且在文档中每一页的页眉/页脚中重复出现。</ahelp>"
@@ -918,7 +852,6 @@ msgstr "<image id=\"img_id3146884\" src=\"sc/res/time.png\" width=\"0.2228in\" h
msgctxt ""
"02120100.xhp\n"
"par_id3157904\n"
-"31\n"
"help.text"
msgid "Time"
msgstr "时间"
@@ -943,7 +876,6 @@ msgstr "<bookmark_value>填充; 选择列表</bookmark_value><bookmark_value>选
msgctxt ""
"02140000.xhp\n"
"hd_id3153876\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/02140000.xhp\" name=\"Fill\">Fill</link>"
msgstr "<link href=\"text/scalc/01/02140000.xhp\" name=\"填充\">填充</link>"
@@ -952,7 +884,6 @@ msgstr "<link href=\"text/scalc/01/02140000.xhp\" name=\"填充\">填充</link>"
msgctxt ""
"02140000.xhp\n"
"par_id3156285\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">Automatically fills cells with content.</ahelp>"
msgstr "<ahelp hid=\".\">自动填充单元格内容。</ahelp>"
@@ -961,7 +892,6 @@ msgstr "<ahelp hid=\".\">自动填充单元格内容。</ahelp>"
msgctxt ""
"02140000.xhp\n"
"par_id3147343\n"
-"9\n"
"help.text"
msgid "The $[officename] Calc context menus have <link href=\"text/scalc/01/02140000.xhp\" name=\"other options\">additional options</link> for filling the cells."
msgstr "$[officename] Calc 上下文菜单必须有用于填充单元格的<link href=\"text/scalc/01/02140000.xhp\" name=\"附加选项\">附加选项</link>。"
@@ -970,7 +900,6 @@ msgstr "$[officename] Calc 上下文菜单必须有用于填充单元格的<link
msgctxt ""
"02140000.xhp\n"
"hd_id3149207\n"
-"7\n"
"help.text"
msgid "<link href=\"text/scalc/01/02140500.xhp\" name=\"Sheet\">Sheet</link>"
msgstr "<link href=\"text/scalc/01/02140500.xhp\" name=\"工作表\">工作表</link>"
@@ -979,7 +908,6 @@ msgstr "<link href=\"text/scalc/01/02140500.xhp\" name=\"工作表\">工作表</
msgctxt ""
"02140000.xhp\n"
"hd_id3155111\n"
-"8\n"
"help.text"
msgid "<link href=\"text/scalc/01/02140600.xhp\" name=\"Rows\">Series</link>"
msgstr "<link href=\"text/scalc/01/02140600.xhp\" name=\"行\">序列</link>"
@@ -988,7 +916,6 @@ msgstr "<link href=\"text/scalc/01/02140600.xhp\" name=\"行\">序列</link>"
msgctxt ""
"02140000.xhp\n"
"par_id3152994\n"
-"3\n"
"help.text"
msgid "<emph>Filling cells using context menus:</emph>"
msgstr "<emph>使用上下文菜单填充单元格:</emph>"
@@ -997,7 +924,6 @@ msgstr "<emph>使用上下文菜单填充单元格:</emph>"
msgctxt ""
"02140000.xhp\n"
"par_id3145384\n"
-"4\n"
"help.text"
msgid "Call the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link> when positioned in a cell and choose <emph>Selection List</emph>."
msgstr "定位于单元格并选择<emph>选择列表</emph>后调用 <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"上下文菜单\">上下文菜单</link>。"
@@ -1006,7 +932,6 @@ msgstr "定位于单元格并选择<emph>选择列表</emph>后调用 <link href
msgctxt ""
"02140000.xhp\n"
"par_id3156450\n"
-"5\n"
"help.text"
msgid "<ahelp hid=\".uno:DataSelect\">A list box containing all text found in the current column is displayed.</ahelp> The text is sorted alphabetically and multiple entries are listed only once."
msgstr "<ahelp hid=\".uno:DataSelect\">显示一个列表框,其中含有在当前列中找到的所有文本。</ahelp> 文本按字母顺序排序,多个条目一次列出。"
@@ -1015,7 +940,6 @@ msgstr "<ahelp hid=\".uno:DataSelect\">显示一个列表框,其中含有在
msgctxt ""
"02140000.xhp\n"
"par_id3148699\n"
-"6\n"
"help.text"
msgid "Click one of the listed entries to copy it to the cell."
msgstr "单击其中一个列出条目,将其复制到单元格中。"
@@ -1032,7 +956,6 @@ msgstr "向下"
msgctxt ""
"02140100.xhp\n"
"hd_id3150792\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/02140100.xhp\" name=\"Down\">Down</link>"
msgstr "<link href=\"text/scalc/01/02140100.xhp\" name=\"下\">下</link>"
@@ -1041,7 +964,6 @@ msgstr "<link href=\"text/scalc/01/02140100.xhp\" name=\"下\">下</link>"
msgctxt ""
"02140100.xhp\n"
"par_id3153969\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:FillDown\" visibility=\"visible\">Fills a selected range of at least two rows with the contents of the top cell of the range.</ahelp>"
msgstr "<ahelp hid=\".uno:FillDown\" visibility=\"visible\">用最上方单元格的内容填充选定的区域(至少含有两行)。</ahelp>"
@@ -1050,7 +972,6 @@ msgstr "<ahelp hid=\".uno:FillDown\" visibility=\"visible\">用最上方单元
msgctxt ""
"02140100.xhp\n"
"par_id3145787\n"
-"3\n"
"help.text"
msgid "If a selected range has only one column, the contents of the top cell are copied to all others. If several columns are selected, the contents of the corresponding top cell will be copied down."
msgstr "如果选定的区域只有一列,则最上方单元格的内容将被复制到其他所有单元格。如果选定的区域有多列,则各个单元格列中最上方单元格的内容将被复制到下方的单元格。"
@@ -1067,7 +988,6 @@ msgstr "右"
msgctxt ""
"02140200.xhp\n"
"hd_id3153896\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/02140200.xhp\" name=\"Right\">Right</link>"
msgstr "<link href=\"text/scalc/01/02140200.xhp\" name=\"右\">右</link>"
@@ -1076,7 +996,6 @@ msgstr "<link href=\"text/scalc/01/02140200.xhp\" name=\"右\">右</link>"
msgctxt ""
"02140200.xhp\n"
"par_id3153361\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:FillRight\" visibility=\"visible\">Fills a selected range of at least two columns with the contents of the left most cell.</ahelp>"
msgstr "<ahelp hid=\".uno:FillRight\" visibility=\"visible\">用最左边单元格的内容填充选定的区域(至少含有两列)。</ahelp>"
@@ -1085,7 +1004,6 @@ msgstr "<ahelp hid=\".uno:FillRight\" visibility=\"visible\">用最左边单元
msgctxt ""
"02140200.xhp\n"
"par_id3154684\n"
-"3\n"
"help.text"
msgid "If a range of only one row is selected, the contents of the far left cell are copied to all the other selected cells. If you have selected several rows, each of the far left cells is copied into those cells to the right."
msgstr "如果选定的区域只有一行,则最左边单元格的内容将被复制到选定的其他所有单元格。如果选定的区域有多行,则各个单元格行中最左边单元格的内容将被复制到右边的单元格。"
@@ -1102,7 +1020,6 @@ msgstr "上"
msgctxt ""
"02140300.xhp\n"
"hd_id3147264\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/02140300.xhp\" name=\"Up\">Up</link>"
msgstr "<link href=\"text/scalc/01/02140300.xhp\" name=\"上\">上</link>"
@@ -1111,7 +1028,6 @@ msgstr "<link href=\"text/scalc/01/02140300.xhp\" name=\"上\">上</link>"
msgctxt ""
"02140300.xhp\n"
"par_id3150793\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:FillUp\" visibility=\"visible\">Fills a selected range of at least two rows with the contents of the bottom most cell.</ahelp>"
msgstr "<ahelp hid=\".uno:FillUp\" visibility=\"visible\">用最下方单元格的内容填充选定区域(至少含有两行)。</ahelp>"
@@ -1120,7 +1036,6 @@ msgstr "<ahelp hid=\".uno:FillUp\" visibility=\"visible\">用最下方单元格
msgctxt ""
"02140300.xhp\n"
"par_id3150447\n"
-"3\n"
"help.text"
msgid "If a selected range has only one column, the content of the bottom most cell is copied into the selected cells. If several columns are selected, the contents of the bottom most cells are copied into those selected above."
msgstr "若选中的区域仅包含一个单元格列,那么程序就会采用选中区域内最下面一个单元格的内容来充填所有其它单元格。若选中的区域包含数个单元格列,那么程序就会采用各个单元格列内最下面一个单元格的内容来充填上方的单元格。"
@@ -1137,7 +1052,6 @@ msgstr "左"
msgctxt ""
"02140400.xhp\n"
"hd_id3153896\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/02140400.xhp\" name=\"Left\">Left</link>"
msgstr "<link href=\"text/scalc/01/02140400.xhp\" name=\"左\">左</link>"
@@ -1146,7 +1060,6 @@ msgstr "<link href=\"text/scalc/01/02140400.xhp\" name=\"左\">左</link>"
msgctxt ""
"02140400.xhp\n"
"par_id3150793\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:FillLeft\" visibility=\"visible\">Fills a selected range of at least two columns with the contents of the far right cell.</ahelp>"
msgstr "<ahelp hid=\".uno:FillLeft\" visibility=\"visible\">用最右边单元格的内容填充选定区域(至少含有两列)。</ahelp>"
@@ -1155,7 +1068,6 @@ msgstr "<ahelp hid=\".uno:FillLeft\" visibility=\"visible\">用最右边单元
msgctxt ""
"02140400.xhp\n"
"par_id3156280\n"
-"3\n"
"help.text"
msgid "If a selected range has only one row, the content of the far right cell is copied into all other cells of the range. If several rows are selected, the far right cells are copied into the cells to the left."
msgstr "如果选定的区域只有一行,则最右边单元格的内容将被复制到区域中的其他所有单元格。如果选定的区域有多行,则各个单元格行中最右边单元格的内容将被复制到左边的单元格。"
@@ -1172,7 +1084,6 @@ msgstr "填充工作表"
msgctxt ""
"02140500.xhp\n"
"hd_id3153897\n"
-"1\n"
"help.text"
msgid "Fill Sheet"
msgstr "填充工作表"
@@ -1181,7 +1092,6 @@ msgstr "填充工作表"
msgctxt ""
"02140500.xhp\n"
"par_id3150791\n"
-"2\n"
"help.text"
msgid "<variable id=\"tabellenfuellentext\"><ahelp hid=\".uno:FillTable\" visibility=\"visible\">Specifies the options for transferring sheets or ranges of a certain sheet.</ahelp></variable>"
msgstr "<variable id=\"tabellenfuellentext\"><ahelp hid=\".uno:FillTable\" visibility=\"visible\">指定有关转换整个工作表或其中某些区域的选项。</ahelp></variable>"
@@ -1190,7 +1100,6 @@ msgstr "<variable id=\"tabellenfuellentext\"><ahelp hid=\".uno:FillTable\" visib
msgctxt ""
"02140500.xhp\n"
"par_id3150767\n"
-"3\n"
"help.text"
msgid "In contrast to copying an area to the clipboard, you can filter certain information and calculate values. This command is only visible if you have selected two sheets in the document. To select multiple sheets, click each sheet tab while pressing <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> or Shift."
msgstr "与复制区域到剪贴板不同,您可以筛选某些信息和计算数值。只有当你在文档中选定了两个工作表时,这个指令才有效。要选择多个工作表,请在按下<switchinline select=\"sys\"> <caseinline select=\"MAC\">命令</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> 键或者 Shift 键的同时单击工作表标签。"
@@ -1199,7 +1108,6 @@ msgstr "与复制区域到剪贴板不同,您可以筛选某些信息和计算
msgctxt ""
"02140500.xhp\n"
"hd_id3155131\n"
-"4\n"
"help.text"
msgid "Filling a Sheet"
msgstr "填充一个工作表"
@@ -1208,7 +1116,6 @@ msgstr "填充一个工作表"
msgctxt ""
"02140500.xhp\n"
"par_id3146119\n"
-"5\n"
"help.text"
msgid "Select the entire sheet by clicking the empty gray box in the upper left of the sheet. You can also select an area of the sheet to be copied."
msgstr "单击工作表左上角空白的灰色框可以选中整个工作表。也可以选择工作表的某个区域进行复制。"
@@ -1217,7 +1124,6 @@ msgstr "单击工作表左上角空白的灰色框可以选中整个工作表。
msgctxt ""
"02140500.xhp\n"
"par_id3153726\n"
-"6\n"
"help.text"
msgid "Press <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and click the tab of the sheet where you want to insert the contents."
msgstr "在按下 <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> 键的同时单击要往其中插入内容的工作表标签。"
@@ -1226,7 +1132,6 @@ msgstr "在按下 <switchinline select=\"sys\"> <caseinline select=\"MAC\">Comma
msgctxt ""
"02140500.xhp\n"
"par_id3147436\n"
-"7\n"
"help.text"
msgid "Select the command <emph>Edit - Fill - Sheet</emph>. In the dialog which appears, the check box <emph>Numbers</emph> must be selected (or <emph>Paste All</emph>) if you want to combine operations with the values. You can also choose the desired operation here."
msgstr "选择<emph>编辑 - 填充 - 工作表</emph>命令。在显示的对话框中,如果您要组合计算数值,必须选择<emph>数字</emph>选择框(或者<emph>全部粘贴</emph>)。您也可以在此选择所需的操作。"
@@ -1235,7 +1140,6 @@ msgstr "选择<emph>编辑 - 填充 - 工作表</emph>命令。在显示的对
msgctxt ""
"02140500.xhp\n"
"par_id3154942\n"
-"8\n"
"help.text"
msgid "Click <emph>OK</emph>."
msgstr "单击<emph>确定</emph>。"
@@ -1244,7 +1148,6 @@ msgstr "单击<emph>确定</emph>。"
msgctxt ""
"02140500.xhp\n"
"par_id3156283\n"
-"9\n"
"help.text"
msgid "This dialog is similar to the <link href=\"text/shared/01/02070000.xhp\" name=\"Paste Contents\">Paste Contents</link> dialog, where you can find additional tips."
msgstr "这个对话框和<link href=\"text/shared/01/02070000.xhp\" name=\"粘贴内容\">粘贴内容</link>对话框的内容相似,您可以在其中找到附加的提示。"
@@ -1261,7 +1164,6 @@ msgstr "填充序列"
msgctxt ""
"02140600.xhp\n"
"hd_id3148664\n"
-"1\n"
"help.text"
msgid "Fill Series"
msgstr "填充序列"
@@ -1270,7 +1172,6 @@ msgstr "填充序列"
msgctxt ""
"02140600.xhp\n"
"par_id3148797\n"
-"2\n"
"help.text"
msgid "<variable id=\"reihenfuellentext\"><ahelp hid=\".uno:FillSeries\">Automatically generate series with the options in this dialog. Determine direction, increment, time unit and series type.</ahelp></variable>"
msgstr "<variable id=\"reihenfuellentext\"><ahelp hid=\".uno:FillSeries\">利用此对话框中的选项自动生成序列。确定方向、增量、时间单位和序列类型。</ahelp></variable>"
@@ -1279,7 +1180,6 @@ msgstr "<variable id=\"reihenfuellentext\"><ahelp hid=\".uno:FillSeries\">利用
msgctxt ""
"02140600.xhp\n"
"par_id3146976\n"
-"41\n"
"help.text"
msgid "Before filling a series, first select the cell range."
msgstr "在填充序列之前您必须首先选择要填充的单元格区域。"
@@ -1288,7 +1188,6 @@ msgstr "在填充序列之前您必须首先选择要填充的单元格区域。
msgctxt ""
"02140600.xhp\n"
"par_id3145748\n"
-"3\n"
"help.text"
msgid "To automatically continue a series using the assumed completion rules, choose the <emph>AutoFill</emph> option after opening the <emph>Fill Series</emph> dialog."
msgstr "要根据假定的完成规则自动延续序列,请在打开<emph>填充序列</emph>对话框之后,选择<emph>自动填充</emph>选项。"
@@ -1297,7 +1196,6 @@ msgstr "要根据假定的完成规则自动延续序列,请在打开<emph>填
msgctxt ""
"02140600.xhp\n"
"hd_id3147435\n"
-"4\n"
"help.text"
msgid "Direction"
msgstr "方向"
@@ -1306,7 +1204,6 @@ msgstr "方向"
msgctxt ""
"02140600.xhp\n"
"par_id3154729\n"
-"5\n"
"help.text"
msgid "Determines the direction of series creation."
msgstr "确定序列创建的方向。"
@@ -1315,7 +1212,6 @@ msgstr "确定序列创建的方向。"
msgctxt ""
"02140600.xhp\n"
"hd_id3145253\n"
-"6\n"
"help.text"
msgid "Down"
msgstr "向下"
@@ -1324,7 +1220,6 @@ msgstr "向下"
msgctxt ""
"02140600.xhp\n"
"par_id3155418\n"
-"7\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/down\">Creates a downward series in the selected cell range for the column using the defined increment to the end value.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/down\">根据定义的递增量和最终数值在此列的选定单元格区域中创建一个从上向下的序列。</ahelp>"
@@ -1333,7 +1228,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/down\">根据定义的递增量和
msgctxt ""
"02140600.xhp\n"
"hd_id3155738\n"
-"8\n"
"help.text"
msgid "Right"
msgstr "右"
@@ -1342,7 +1236,6 @@ msgstr "右"
msgctxt ""
"02140600.xhp\n"
"par_id3149402\n"
-"9\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/right\">Creates a series running from left to right within the selected cell range using the defined increment to the end value.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/right\">根据定义的递增量和最终数值在选定单元格区域中从左向右创建序列。</ahelp>"
@@ -1351,7 +1244,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/right\">根据定义的递增量
msgctxt ""
"02140600.xhp\n"
"hd_id3146972\n"
-"10\n"
"help.text"
msgid "Up"
msgstr "上"
@@ -1360,7 +1252,6 @@ msgstr "上"
msgctxt ""
"02140600.xhp\n"
"par_id3153711\n"
-"11\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/up\">Creates an upward series in the cell range of the column using the defined increment to the end value.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/up\">根据定义的递增量和最终数值在此列的单元格区域中创建从下向上的序列。</ahelp>"
@@ -1369,7 +1260,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/up\">根据定义的递增量和
msgctxt ""
"02140600.xhp\n"
"hd_id3153764\n"
-"12\n"
"help.text"
msgid "Left"
msgstr "左"
@@ -1378,7 +1268,6 @@ msgstr "左"
msgctxt ""
"02140600.xhp\n"
"par_id3156382\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/left\">Creates a series running from right to left in the selected cell range using the defined increment to the end value.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/left\">根据定义的递增量和最终数值在选定单元格区域中创建一个从右向左的序列。</ahelp>"
@@ -1387,7 +1276,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/left\">根据定义的递增量和
msgctxt ""
"02140600.xhp\n"
"hd_id3147344\n"
-"14\n"
"help.text"
msgid "Series Type"
msgstr "系列类型"
@@ -1396,7 +1284,6 @@ msgstr "系列类型"
msgctxt ""
"02140600.xhp\n"
"par_id3149257\n"
-"15\n"
"help.text"
msgid "Defines the series type. Choose between <emph>Linear, Growth, Date </emph>and <emph>AutoFill</emph>."
msgstr "定义序列类型。请在<emph>线性、等比序列、日期</emph>和<emph>自动填充</emph>之间进行选择。"
@@ -1405,7 +1292,6 @@ msgstr "定义序列类型。请在<emph>线性、等比序列、日期</emph>
msgctxt ""
"02140600.xhp\n"
"hd_id3148488\n"
-"16\n"
"help.text"
msgid "Linear"
msgstr "线性"
@@ -1414,7 +1300,6 @@ msgstr "线性"
msgctxt ""
"02140600.xhp\n"
"par_id3159238\n"
-"17\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/linear\">Creates a linear number series using the defined increment and end value.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/linear\">根据定义的递增量和最终数值创建一个线性数字序列。</ahelp>"
@@ -1423,7 +1308,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/linear\">根据定义的递增量
msgctxt ""
"02140600.xhp\n"
"hd_id3149210\n"
-"18\n"
"help.text"
msgid "Growth"
msgstr "等比序列"
@@ -1432,7 +1316,6 @@ msgstr "等比序列"
msgctxt ""
"02140600.xhp\n"
"par_id3150364\n"
-"19\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/growth\">Creates a growth series using the defined increment and end value.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/growth\">根据定义的递增量和最终数值创建一个等比序列。</ahelp>"
@@ -1441,7 +1324,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/growth\">根据定义的递增量
msgctxt ""
"02140600.xhp\n"
"hd_id3149528\n"
-"20\n"
"help.text"
msgid "Date"
msgstr "日期"
@@ -1450,7 +1332,6 @@ msgstr "日期"
msgctxt ""
"02140600.xhp\n"
"par_id3150887\n"
-"21\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/date\">Creates a date series using the defined increment and end date.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/date\">根据定义的递增量和结束日期创建一个日期序列。</ahelp>"
@@ -1459,17 +1340,14 @@ msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/date\">根据定义的递增量和
msgctxt ""
"02140600.xhp\n"
"hd_id3150202\n"
-"22\n"
"help.text"
msgid "AutoFill"
msgstr "自动填充"
#: 02140600.xhp
-#, fuzzy
msgctxt ""
"02140600.xhp\n"
"par_id3156288\n"
-"23\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/autofill\">Forms a series directly in the sheet.</ahelp> The AutoFill function takes account of customized lists. For example, by entering <emph>January</emph> in the first cell, the series is completed using the list defined under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Sort Lists</emph>."
msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/autofill\">在工作表中直接生成序列。</ahelp> “自动填充”功能采用自定义列表。例如,在第一个单元格中输入 <emph>一月</emph> 后,将按照 <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - 首选项</caseinline><defaultinline>工具 - 选项</defaultinline></switchinline> - %PRODUCTNAME Calc - 排序列表</emph>中定义的列表完成序列。"
@@ -1478,7 +1356,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/autofill\">在工作表中直接
msgctxt ""
"02140600.xhp\n"
"par_id3155811\n"
-"24\n"
"help.text"
msgid "AutoFill tries to complete a value series by using a defined pattern. The series 1,3,5 is automatically completed with 7,9,11,13, and so on. Date and time series are completed accordingly; for example, after 01.01.99 and 15.01.99, an interval of 14 days is used."
msgstr "自动填充会试图根据定义的模式完成数值系列。例如,系列 1,3,5 会自动用 7,9,11,13... 完成。日期和时间也会根据定义的模式相应完成。例如,在日期 01.01.99 和 15.01.99 后会自动采用 14 天的间隔延续。"
@@ -1487,7 +1364,6 @@ msgstr "自动填充会试图根据定义的模式完成数值系列。例如,
msgctxt ""
"02140600.xhp\n"
"hd_id3148700\n"
-"25\n"
"help.text"
msgid "Unit of Time"
msgstr "时间单位"
@@ -1496,7 +1372,6 @@ msgstr "时间单位"
msgctxt ""
"02140600.xhp\n"
"par_id3153308\n"
-"26\n"
"help.text"
msgid "In this area you can specify the desired unit of time. This area is only active if the <emph>Date</emph> option has been chosen in the <emph>Series type</emph> area."
msgstr "在此区域中,您可以指定希望使用的时间单位。只有在<emph>系列类型</emph>区域中选择了<emph>日期</emph>选项后,才可以使用此区域。"
@@ -1505,7 +1380,6 @@ msgstr "在此区域中,您可以指定希望使用的时间单位。只有在
msgctxt ""
"02140600.xhp\n"
"hd_id3148868\n"
-"27\n"
"help.text"
msgid "Day"
msgstr "天"
@@ -1514,7 +1388,6 @@ msgstr "天"
msgctxt ""
"02140600.xhp\n"
"par_id3148605\n"
-"28\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/day\">Use the <emph>Date</emph> series type and this option to create a series using seven days.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/day\">使用<emph>日期</emph>序列类型和此选项创建以 7 天为时间单位的序列。</ahelp>"
@@ -1523,7 +1396,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/day\">使用<emph>日期</emph>序
msgctxt ""
"02140600.xhp\n"
"hd_id3144771\n"
-"29\n"
"help.text"
msgid "Weekday"
msgstr "工作日"
@@ -1532,7 +1404,6 @@ msgstr "工作日"
msgctxt ""
"02140600.xhp\n"
"par_id3150108\n"
-"30\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/week\">Use the <emph>Date</emph> series type and this option to create a series of five day sets.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/week\">使用<emph>日期</emph>序列类型和此选项创建一个五天工作日组合序列。</ahelp>"
@@ -1541,7 +1412,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/week\">使用<emph>日期</emph>
msgctxt ""
"02140600.xhp\n"
"hd_id3154957\n"
-"31\n"
"help.text"
msgid "Month"
msgstr "月"
@@ -1550,7 +1420,6 @@ msgstr "月"
msgctxt ""
"02140600.xhp\n"
"par_id3149126\n"
-"32\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/month\">Use the <emph>Date</emph> series type and this option to form a series from the names or abbreviations of the months.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/month\">使用<emph>日期</emph>序列类型和此选项按照月份名称或其缩写建立一个序列。</ahelp>"
@@ -1559,7 +1428,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/month\">使用<emph>日期</emph>
msgctxt ""
"02140600.xhp\n"
"hd_id3152870\n"
-"33\n"
"help.text"
msgid "Year"
msgstr "年"
@@ -1568,7 +1436,6 @@ msgstr "年"
msgctxt ""
"02140600.xhp\n"
"par_id3151300\n"
-"34\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/year\">Use the <emph>Date</emph> series type and this option to create a series of years.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/year\">使用<emph>日期</emph>序列类型和此选项创建一个以年为单位的时间序列。</ahelp>"
@@ -1577,7 +1444,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/year\">使用<emph>日期</emph>
msgctxt ""
"02140600.xhp\n"
"hd_id3154762\n"
-"35\n"
"help.text"
msgid "Start Value"
msgstr "起始值"
@@ -1586,7 +1452,6 @@ msgstr "起始值"
msgctxt ""
"02140600.xhp\n"
"par_id3149381\n"
-"36\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/startValue\">Determines the start value for the series.</ahelp> Use numbers, dates or times."
msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/startValue\">确定序列的起始值。</ahelp>请使用数字、日期或时间。"
@@ -1595,7 +1460,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/startValue\">确定序列的起始
msgctxt ""
"02140600.xhp\n"
"hd_id3153013\n"
-"37\n"
"help.text"
msgid "End Value"
msgstr "终止值"
@@ -1604,7 +1468,6 @@ msgstr "终止值"
msgctxt ""
"02140600.xhp\n"
"par_id3153487\n"
-"38\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/endValue\">Determines the end value for the series.</ahelp> Use numbers, dates or times."
msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/endValue\">确定序列的最终数值。</ahelp>请使用数字、日期或时间。"
@@ -1613,7 +1476,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/endValue\">确定序列的最终
msgctxt ""
"02140600.xhp\n"
"hd_id3149312\n"
-"39\n"
"help.text"
msgid "Increment"
msgstr "递增"
@@ -1622,7 +1484,6 @@ msgstr "递增"
msgctxt ""
"02140600.xhp\n"
"par_id3154739\n"
-"40\n"
"help.text"
msgid "The term \"increment\" denotes the amount by which a given value increases.<ahelp hid=\"modules/scalc/ui/filldlg/increment\"> Determines the value by which the series of the selected type increases by each step.</ahelp> Entries can only be made if the linear, growth or date series types have been selected."
msgstr "“递增量”一词表示给定值每次的增加的数值。<ahelp hid=\"modules/scalc/ui/filldlg/increment\">确定选定类型的序列每一步增加的数值。</ahelp>只有选择了序列类型中的线性、等比序列或日期后,才可以在此条目中输入数据。"
@@ -2039,7 +1900,6 @@ msgstr "<bookmark_value>删除;单元格内容</bookmark_value><bookmark_value>
msgctxt ""
"02150000.xhp\n"
"hd_id3143284\n"
-"1\n"
"help.text"
msgid "Deleting Contents"
msgstr "删除内容"
@@ -2048,7 +1908,6 @@ msgstr "删除内容"
msgctxt ""
"02150000.xhp\n"
"par_id3149456\n"
-"2\n"
"help.text"
msgid "<variable id=\"inhalteloeschentext\"><ahelp hid=\".uno:Delete\">Specifies the contents to be deleted from the active cell or from a selected cell range.</ahelp></variable> If several sheets are selected, all selected sheets will be affected."
msgstr "<variable id=\"inhalteloeschentext\"><ahelp hid=\".uno:Delete\">指定要从当前单元格或选定单元格范围中删除的内容。</ahelp></variable>如果选择了多个工作表,则所有选定工作表均会受到影响。"
@@ -2057,7 +1916,6 @@ msgstr "<variable id=\"inhalteloeschentext\"><ahelp hid=\".uno:Delete\">指定
msgctxt ""
"02150000.xhp\n"
"par_id3159154\n"
-"21\n"
"help.text"
msgid "This dialog is also called by pressing Backspace after the cell cursor has been activated on the sheet."
msgstr "还可以通过在工作表单元格指针激活后按退格键调出该对话框。"
@@ -2066,7 +1924,6 @@ msgstr "还可以通过在工作表单元格指针激活后按退格键调出该
msgctxt ""
"02150000.xhp\n"
"par_id3145367\n"
-"22\n"
"help.text"
msgid "Pressing Delete deletes content without calling the dialog or changing formats."
msgstr "按“删除”可删除内容,而无需调用对话框或更改格式。"
@@ -2075,7 +1932,6 @@ msgstr "按“删除”可删除内容,而无需调用对话框或更改格式
msgctxt ""
"02150000.xhp\n"
"par_id3153951\n"
-"23\n"
"help.text"
msgid "Use <emph>Cut</emph> on the Standard bar to delete contents and formats without the dialog."
msgstr "使用“标准”栏上的<emph>剪切</emph>可以删除内容和格式,而不需打开对话框。"
@@ -2084,7 +1940,6 @@ msgstr "使用“标准”栏上的<emph>剪切</emph>可以删除内容和格
msgctxt ""
"02150000.xhp\n"
"hd_id3148575\n"
-"3\n"
"help.text"
msgid "Selection"
msgstr "选择"
@@ -2093,7 +1948,6 @@ msgstr "选择"
msgctxt ""
"02150000.xhp\n"
"par_id3149665\n"
-"4\n"
"help.text"
msgid "This area lists the options for deleting contents."
msgstr "在此您可以选择要删除的内容。"
@@ -2102,7 +1956,6 @@ msgstr "在此您可以选择要删除的内容。"
msgctxt ""
"02150000.xhp\n"
"hd_id3146975\n"
-"5\n"
"help.text"
msgid "Delete All"
msgstr "全部删除"
@@ -2111,7 +1964,6 @@ msgstr "全部删除"
msgctxt ""
"02150000.xhp\n"
"par_id3154729\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/deletecontents/deleteall\">Deletes all content from the selected cell range.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/deleteall\">删除选定单元格区域中的所有内容。</ahelp>"
@@ -2120,7 +1972,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/deleteall\">删除选定单
msgctxt ""
"02150000.xhp\n"
"hd_id3156286\n"
-"7\n"
"help.text"
msgid "Text"
msgstr "文本"
@@ -2129,7 +1980,6 @@ msgstr "文本"
msgctxt ""
"02150000.xhp\n"
"par_id3154015\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/deletecontents/text\">Deletes text only. Formats, formulas, numbers and dates are not affected.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/text\">仅删除文字。格式、公式、数字和日期仍然保留。</ahelp>"
@@ -2138,7 +1988,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/text\">仅删除文字。
msgctxt ""
"02150000.xhp\n"
"hd_id3153840\n"
-"9\n"
"help.text"
msgid "Numbers"
msgstr "数字"
@@ -2147,7 +1996,6 @@ msgstr "数字"
msgctxt ""
"02150000.xhp\n"
"par_id3148405\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/deletecontents/numbers\">Deletes numbers only. Formats and formulas remain unchanged.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/numbers\">仅删除数字,仍然保留格式和公式。</ahelp>"
@@ -2156,7 +2004,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/numbers\">仅删除数字
msgctxt ""
"02150000.xhp\n"
"hd_id3155764\n"
-"11\n"
"help.text"
msgid "Date & time"
msgstr "日期和时间"
@@ -2165,7 +2012,6 @@ msgstr "日期和时间"
msgctxt ""
"02150000.xhp\n"
"par_id3149567\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/deletecontents/datetime\">Deletes date and time values. Formats, text, numbers and formulas remain unchanged.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/datetime\">仅删除日期和时间值,仍然保留格式、文字、数字和公式。</ahelp>"
@@ -2174,7 +2020,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/datetime\">仅删除日期
msgctxt ""
"02150000.xhp\n"
"hd_id3154703\n"
-"13\n"
"help.text"
msgid "Formulas"
msgstr "公式"
@@ -2183,7 +2028,6 @@ msgstr "公式"
msgctxt ""
"02150000.xhp\n"
"par_id3148485\n"
-"14\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/deletecontents/formulas\">Deletes formulas. Text, numbers, formats, dates and times remain unchanged.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/formulas\">仅删除公式,仍然保留文字、数字、格式、日期和时间。</ahelp>"
@@ -2192,7 +2036,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/formulas\">仅删除公式
msgctxt ""
"02150000.xhp\n"
"hd_id3150300\n"
-"15\n"
"help.text"
msgid "Comments"
msgstr "批注"
@@ -2201,7 +2044,6 @@ msgstr "批注"
msgctxt ""
"02150000.xhp\n"
"par_id3154658\n"
-"16\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/deletecontents/comments\">Deletes comments added to cells. All other elements remain unchanged.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/comments\">删除添加到单元格的批注。所有其他元素保持不变。</ahelp>"
@@ -2210,7 +2052,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/comments\">删除添加到
msgctxt ""
"02150000.xhp\n"
"hd_id3155112\n"
-"17\n"
"help.text"
msgid "Formats"
msgstr "格式"
@@ -2219,7 +2060,6 @@ msgstr "格式"
msgctxt ""
"02150000.xhp\n"
"par_id3146134\n"
-"18\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/deletecontents/formats\">Deletes format attributes applied to cells. All cell content remains unchanged.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/formats\">删除单元格应用的格式属性,仍然保留单元格内容。</ahelp>"
@@ -2228,7 +2068,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/formats\">删除单元格
msgctxt ""
"02150000.xhp\n"
"hd_id3150088\n"
-"19\n"
"help.text"
msgid "Objects"
msgstr "对象"
@@ -2237,7 +2076,6 @@ msgstr "对象"
msgctxt ""
"02150000.xhp\n"
"par_id3152990\n"
-"20\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/deletecontents/objects\">Deletes objects. All cell content remains unchanged.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/objects\">删除对象,仍然保留单元格内容。</ahelp>"
@@ -2262,7 +2100,6 @@ msgstr "<bookmark_value>单元格; 删除单元格</bookmark_value><bookmark_val
msgctxt ""
"02160000.xhp\n"
"hd_id3153726\n"
-"1\n"
"help.text"
msgid "Delete Cells"
msgstr "删除单元格"
@@ -2271,7 +2108,6 @@ msgstr "删除单元格"
msgctxt ""
"02160000.xhp\n"
"par_id3154490\n"
-"2\n"
"help.text"
msgid "<variable id=\"zellenloeschentext\"><ahelp hid=\".uno:DeleteCell\">Completely deletes selected cells, columns or rows. The cells below or to the right of the deleted cells will fill the space.</ahelp></variable> Note that the selected delete option is stored and reloaded when the dialog is next called."
msgstr "<variable id=\"zellenloeschentext\"><ahelp hid=\".uno:DeleteCell\">完全删除选定的单元格、行或列。被删除的单元格下方的或右边的单元格将用于填充空白。</ahelp></variable>请注意:选定删除的选项会被保存,下次调用该对话框时会被重新装入。"
@@ -2288,7 +2124,6 @@ msgstr "<image id=\"img_id083120161149318932\" src=\"media/screenshots/modules/s
msgctxt ""
"02160000.xhp\n"
"hd_id3149121\n"
-"3\n"
"help.text"
msgid "Selection"
msgstr "选择"
@@ -2297,7 +2132,6 @@ msgstr "选择"
msgctxt ""
"02160000.xhp\n"
"par_id3150751\n"
-"4\n"
"help.text"
msgid "This area contains options for specifying how sheets are displayed after deleting cells."
msgstr "在此您可以指定在删除单元格后剩余单元格的移动方向。"
@@ -2306,7 +2140,6 @@ msgstr "在此您可以指定在删除单元格后剩余单元格的移动方向
msgctxt ""
"02160000.xhp\n"
"hd_id3155767\n"
-"5\n"
"help.text"
msgid "Shift cells up"
msgstr "向上移动单元格"
@@ -2315,7 +2148,6 @@ msgstr "向上移动单元格"
msgctxt ""
"02160000.xhp\n"
"par_id3153714\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/deletecells/up\">Fills the space produced by the deleted cells with the cells underneath it.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/deletecells/up\">将被删除的单元格下方的单元格向上移动,填充删除后产生的空白。</ahelp>"
@@ -2324,7 +2156,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/deletecells/up\">将被删除的单元格
msgctxt ""
"02160000.xhp\n"
"hd_id3156382\n"
-"7\n"
"help.text"
msgid "Shift cells left"
msgstr "向左移动单元格"
@@ -2333,7 +2164,6 @@ msgstr "向左移动单元格"
msgctxt ""
"02160000.xhp\n"
"par_id3154702\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/deletecells/left\">Fills the resulting space by the cells to the right of the deleted cells.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/deletecells/left\">将被删除的单元格右边的单元格向左移动,填充删除后产生的空白。</ahelp>"
@@ -2342,7 +2172,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/deletecells/left\">将被删除的单元
msgctxt ""
"02160000.xhp\n"
"hd_id3146918\n"
-"9\n"
"help.text"
msgid "Delete entire row(s)"
msgstr "删除整行"
@@ -2351,7 +2180,6 @@ msgstr "删除整行"
msgctxt ""
"02160000.xhp\n"
"par_id3148487\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\".uno:DeleteRows\">After selecting at least one cell, deletes the entire row from the sheet.</ahelp>"
msgstr "<ahelp hid=\".uno:DeleteRows\">选定至少一个单元格后,从工作表中删除选定单元格所在的行。</ahelp>"
@@ -2360,7 +2188,6 @@ msgstr "<ahelp hid=\".uno:DeleteRows\">选定至少一个单元格后,从工
msgctxt ""
"02160000.xhp\n"
"hd_id3155114\n"
-"11\n"
"help.text"
msgid "Delete entire column(s)"
msgstr "删除整列"
@@ -2369,7 +2196,6 @@ msgstr "删除整列"
msgctxt ""
"02160000.xhp\n"
"par_id3150086\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\".uno:DeleteColumns\">After selecting at least one cell, deletes the entire column from the sheet.</ahelp>"
msgstr "<ahelp hid=\".uno:DeleteColumns\">选定至少一个单元格后,从工作表中删除选定单元格所在的列。</ahelp>"
@@ -2402,7 +2228,6 @@ msgstr "<bookmark_value>电子表格; 删除</bookmark_value><bookmark_value>工
msgctxt ""
"02170000.xhp\n"
"hd_id3156424\n"
-"1\n"
"help.text"
msgid "Delete Sheet"
msgstr "删除工作表"
@@ -2411,7 +2236,6 @@ msgstr "删除工作表"
msgctxt ""
"02170000.xhp\n"
"par_id3153193\n"
-"2\n"
"help.text"
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\">在询问确认后删除当前工作表。</ahelp></variable>"
@@ -2420,7 +2244,6 @@ msgstr "<variable id=\"tabelleloeschentext\"><ahelp hid=\".uno:Remove\" visibili
msgctxt ""
"02170000.xhp\n"
"par_id3145801\n"
-"7\n"
"help.text"
msgid "You cannot delete a sheet while <emph>Edit - Track Changes - Record Changes</emph> is activated."
msgstr "当<emph>编辑 - 追踪修订 - 记录更改</emph>启用时,您不能删除工作表。"
@@ -2429,7 +2252,6 @@ msgstr "当<emph>编辑 - 追踪修订 - 记录更改</emph>启用时,您不
msgctxt ""
"02170000.xhp\n"
"hd_id3147124\n"
-"3\n"
"help.text"
msgid "Yes"
msgstr "是"
@@ -2438,7 +2260,6 @@ msgstr "是"
msgctxt ""
"02170000.xhp\n"
"par_id3154943\n"
-"4\n"
"help.text"
msgid "Deletes the current sheet."
msgstr "删除当前工作表。"
@@ -2447,7 +2268,6 @@ msgstr "删除当前工作表。"
msgctxt ""
"02170000.xhp\n"
"hd_id3149412\n"
-"5\n"
"help.text"
msgid "No"
msgstr "否"
@@ -2456,7 +2276,6 @@ msgstr "否"
msgctxt ""
"02170000.xhp\n"
"par_id3154510\n"
-"6\n"
"help.text"
msgid "Cancels the dialog. No delete is performed."
msgstr "取消对话框。不执行删除。"
@@ -2481,7 +2300,6 @@ msgstr "<bookmark_value>电子表格; 移动</bookmark_value><bookmark_value>电
msgctxt ""
"02180000.xhp\n"
"hd_id3153360\n"
-"1\n"
"help.text"
msgid "Move or Copy a Sheet"
msgstr "移动或复制工作表"
@@ -2490,7 +2308,6 @@ msgstr "移动或复制工作表"
msgctxt ""
"02180000.xhp\n"
"par_id3154686\n"
-"2\n"
"help.text"
msgid "<variable id=\"tabelleverschiebenkopierentext\"><ahelp hid=\".uno:Move\">Moves or copies a sheet to a new location in the document or to a different document.</ahelp></variable>"
msgstr "<variable id=\"tabelleverschiebenkopierentext\"><ahelp hid=\".uno:Move\">将工作表移动或复制到文档中的新位置,或者移动或复制到其他文档中。</ahelp></variable>"
@@ -2507,7 +2324,6 @@ msgstr "在不同的电子表格之间复制和粘贴包含<link href=\"text/sca
msgctxt ""
"02180000.xhp\n"
"hd_id3163710\n"
-"3\n"
"help.text"
msgid "To Document"
msgstr "加入文档"
@@ -2516,7 +2332,6 @@ msgstr "加入文档"
msgctxt ""
"02180000.xhp\n"
"par_id3148645\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/movecopysheet/toDocument\">Indicates where the current sheet is to be moved or copied to.</ahelp> Select <emph>- new document -</emph> if you want to create a new location for the sheet to be moved or copied."
msgstr "<ahelp hid=\"modules/scalc/ui/movecopysheet/toDocument\">指示要将当前工作表移动或复制到的位置。</ahelp>如果要为移动或复制的工作表创建一个新位置,请选择 <emph>- 新建文档 -</emph>。"
@@ -2525,7 +2340,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/movecopysheet/toDocument\">指示要将当
msgctxt ""
"02180000.xhp\n"
"hd_id3154012\n"
-"5\n"
"help.text"
msgid "Insert Before"
msgstr "前置于"
@@ -2534,7 +2348,6 @@ msgstr "前置于"
msgctxt ""
"02180000.xhp\n"
"par_id3145366\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/movecopysheet/insertBefore\">The current sheet is moved or copied in front of the selected sheet.</ahelp> The <emph>- move to end position -</emph> option places the current sheet at the end."
msgstr "<ahelp hid=\"modules/scalc/ui/movecopysheet/insertBefore\">将当前工作表移动或复制到选定工作表前面。</ahelp><emph>- 移动到结束位置 -</emph> 选项将当前工作表置于结尾。"
@@ -2543,7 +2356,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/movecopysheet/insertBefore\">将当前工
msgctxt ""
"02180000.xhp\n"
"hd_id3153726\n"
-"7\n"
"help.text"
msgid "Copy"
msgstr "复制"
@@ -2552,13 +2364,11 @@ msgstr "复制"
msgctxt ""
"02180000.xhp\n"
"par_id3144764\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/movecopysheet/copy\">Specifies that the sheet is to be copied. If the option is unmarked, the sheet is moved.</ahelp> Moving sheets is the default."
msgstr "<ahelp hid=\"modules/scalc/ui/movecopysheet/copy\">指定要复制工作表。如果取消选中该选项,则会移动工作表。</ahelp>默认设置是移动工作表。"
#: 02190000.xhp
-#, fuzzy
msgctxt ""
"02190000.xhp\n"
"tit\n"
@@ -2602,7 +2412,6 @@ msgstr "<bookmark_value>电子表格; 删除换行符</bookmark_value><bookmark_
msgctxt ""
"02190100.xhp\n"
"hd_id3156326\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/02190100.xhp\" name=\"Row Break\">Row Break</link>"
msgstr "<link href=\"text/scalc/01/02190100.xhp\" name=\"换行\">换行</link>"
@@ -2611,7 +2420,6 @@ msgstr "<link href=\"text/scalc/01/02190100.xhp\" name=\"换行\">换行</link>"
msgctxt ""
"02190100.xhp\n"
"par_id3154366\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:DeleteRowbreak\">Removes the manual row break above the active cell.</ahelp>"
msgstr "<ahelp hid=\".uno:DeleteRowbreak\">删除活动单元格上方的手动换行符。</ahelp>"
@@ -2644,7 +2452,6 @@ msgstr "<bookmark_value>电子表格; 删除分栏符</bookmark_value><bookmark_
msgctxt ""
"02190200.xhp\n"
"hd_id3151384\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/02190200.xhp\" name=\"Column Break\">Column Break</link>"
msgstr "<link href=\"text/scalc/01/02190200.xhp\" name=\"换列\">换列</link>"
@@ -2653,7 +2460,6 @@ msgstr "<link href=\"text/scalc/01/02190200.xhp\" name=\"换列\">换列</link>"
msgctxt ""
"02190200.xhp\n"
"par_id3154124\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:DeleteColumnbreak\">Removes a manual column break to the left of the active cell.</ahelp>"
msgstr "<ahelp hid=\".uno:DeleteColumnbreak\">删除当前单元格左边的手动分栏符。</ahelp>"
@@ -2702,7 +2508,6 @@ msgstr "选择工作表"
msgctxt ""
"02210000.xhp\n"
"hd_id3156023\n"
-"5\n"
"help.text"
msgid "Selecting Sheets"
msgstr "选择工作表"
@@ -2711,7 +2516,6 @@ msgstr "选择工作表"
msgctxt ""
"02210000.xhp\n"
"par_id3147265\n"
-"1\n"
"help.text"
msgid "<variable id=\"tabellenauswaehlen\"><ahelp hid=\".uno:SelectTables\" visibility=\"visible\">Selects multiple sheets.</ahelp></variable>"
msgstr "<variable id=\"tabellenauswaehlen\"><ahelp hid=\".uno:SelectTables\" visibility=\"visible\">选择多个工作表</ahelp>。</variable>"
@@ -2720,7 +2524,6 @@ msgstr "<variable id=\"tabellenauswaehlen\"><ahelp hid=\".uno:SelectTables\" vis
msgctxt ""
"02210000.xhp\n"
"hd_id3125863\n"
-"2\n"
"help.text"
msgid "Selected Sheets"
msgstr "选定工作表"
@@ -2729,7 +2532,6 @@ msgstr "选定工作表"
msgctxt ""
"02210000.xhp\n"
"par_id3153969\n"
-"3\n"
"help.text"
msgid "<ahelp hid=\"HID_SELECTTABLES\" visibility=\"visible\">Lists the sheets in the current document. To select a sheet, press the up or down arrow keys to move to a sheet in the list. To add a sheet to the selection, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> while pressing the arrow keys and then press Spacebar. To select a range of sheets, hold down Shift and press the arrow keys. </ahelp>"
msgstr "<ahelp hid=\"HID_SELECTTABLES\" visibility=\"visible\">列出当前文档中的工作表。要选定工作表,请在列表中使用向上或向下键移动到相应的工作表。 要在列表中添加工作表,请按住<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>键和向上或向下方向键,然后按下空格键。要选定多个工作表,请按住Shift键并按下方向键。</ahelp>"
@@ -2775,7 +2577,6 @@ msgid "To hide the column and row headers, unmark this menu entry."
msgstr "要隐藏行标头和列标头,请反选该菜单项。"
#: 03070000.xhp
-#, fuzzy
msgctxt ""
"03070000.xhp\n"
"par_id3156441\n"
@@ -2792,7 +2593,6 @@ msgid "Value Highlighting"
msgstr "突出显示值"
#: 03080000.xhp
-#, fuzzy
msgctxt ""
"03080000.xhp\n"
"bm_id3151384\n"
@@ -2809,7 +2609,6 @@ msgid "<link href=\"text/scalc/01/03080000.xhp\" name=\"Value Highlighting\">Val
msgstr "<link href=\"text/scalc/01/03080000.xhp\" name=\"突出显示值\">突出显示值</link>"
#: 03080000.xhp
-#, fuzzy
msgctxt ""
"03080000.xhp\n"
"par_id3154366\n"
@@ -2850,7 +2649,6 @@ msgid "Formula Bar"
msgstr "公式栏"
#: 03090000.xhp
-#, fuzzy
msgctxt ""
"03090000.xhp\n"
"bm_id3147264\n"
@@ -2974,7 +2772,6 @@ msgstr "<bookmark_value>电子表格; 插入分隔符</bookmark_value><bookmark_
msgctxt ""
"04010000.xhp\n"
"hd_id3153192\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/04010000.xhp\" name=\"Insert Page Break\">Insert Page Break</link>"
msgstr ""
@@ -2983,7 +2780,6 @@ msgstr ""
msgctxt ""
"04010000.xhp\n"
"par_id3125864\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">This command inserts manual row or column breaks to ensure that your data prints properly. You can insert a horizontal page break above, or a vertical page break to the left of, the active cell.</ahelp>"
msgstr "<ahelp hid=\".\">此命令用于手动插入行分页符或列分页符,以保证工作表中的数据能够正确打印。您可以在当前单元格上方插入水平分页符,或着在单元格左侧插入垂直分页符。</ahelp>"
@@ -3016,7 +2812,6 @@ msgstr "<bookmark_value>工作表; 插入换行符</bookmark_value><bookmark_val
msgctxt ""
"04010100.xhp\n"
"hd_id3153821\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/04010100.xhp\" name=\"Row Break\">Row Break</link>"
msgstr "<link href=\"text/scalc/01/04010100.xhp\" name=\"换行\">换行</link>"
@@ -3025,7 +2820,6 @@ msgstr "<link href=\"text/scalc/01/04010100.xhp\" name=\"换行\">换行</link>"
msgctxt ""
"04010100.xhp\n"
"par_id3149656\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertRowBreak\">Inserts a row break (horizontal page break) above the selected cell.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertRowBreak\">在选定的单元格上方插入一个换行符(水平分页符)。</ahelp>"
@@ -3034,7 +2828,6 @@ msgstr "<ahelp hid=\".uno:InsertRowBreak\">在选定的单元格上方插入一
msgctxt ""
"04010100.xhp\n"
"par_id3156422\n"
-"3\n"
"help.text"
msgid "The manual row break is indicated by a dark blue horizontal line."
msgstr "这时工作表内会出现一条表示换行的深蓝色水平线。"
@@ -3059,7 +2852,6 @@ msgstr "<bookmark_value>电子表格; 插入分栏符</bookmark_value><bookmark_
msgctxt ""
"04010200.xhp\n"
"hd_id3155923\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/04010200.xhp\" name=\"Column Break\">Column Break</link>"
msgstr "<link href=\"text/scalc/01/04010200.xhp\" name=\"分栏符\">分栏符</link>"
@@ -3068,7 +2860,6 @@ msgstr "<link href=\"text/scalc/01/04010200.xhp\" name=\"分栏符\">分栏符</
msgctxt ""
"04010200.xhp\n"
"par_id3150447\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertColumnBreak\">Inserts a column break (vertical page break) to the left of the active cell.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertColumnBreak\">在活动单元格的左边插入一个手动分栏符(垂直分页符)。</ahelp>"
@@ -3077,7 +2868,6 @@ msgstr "<ahelp hid=\".uno:InsertColumnBreak\">在活动单元格的左边插入
msgctxt ""
"04010200.xhp\n"
"par_id3145171\n"
-"3\n"
"help.text"
msgid "The manual column break is indicated by a dark blue vertical line."
msgstr "这时工作表内会出现一个表示换列的深蓝色垂直线。"
@@ -3102,7 +2892,6 @@ msgstr "<bookmark_value>电子表格; 插入单元格</bookmark_value><bookmark_
msgctxt ""
"04020000.xhp\n"
"hd_id3156023\n"
-"1\n"
"help.text"
msgid "Insert Cells"
msgstr "插入单元格"
@@ -3111,7 +2900,6 @@ msgstr "插入单元格"
msgctxt ""
"04020000.xhp\n"
"par_id3150542\n"
-"2\n"
"help.text"
msgid "<variable id=\"zelleneinfuegentext\"><ahelp hid=\".uno:InsertCell\">Opens the<emph> Insert Cells </emph>dialog, in which you can insert new cells according to the options that you specify.</ahelp></variable> You can delete cells by choosing <link href=\"text/scalc/01/02160000.xhp\" name=\"Edit - Delete Cells\"><emph>Edit - Delete Cells</emph></link>."
msgstr "<variable id=\"zelleneinfuegentext\"><ahelp hid=\".uno:InsertCell\">打开<emph>插入单元格</emph>对话框,从中可以指定选项来插入新的单元格。</ahelp></variable>您可以选择<link href=\"text/scalc/01/02160000.xhp\" name=\"编辑 - 删除单元格\"><emph>编辑 - 删除单元格</emph></link>来删除单元格。。"
@@ -3120,7 +2908,6 @@ msgstr "<variable id=\"zelleneinfuegentext\"><ahelp hid=\".uno:InsertCell\">打
msgctxt ""
"04020000.xhp\n"
"hd_id3153768\n"
-"3\n"
"help.text"
msgid "Selection"
msgstr "选择"
@@ -3129,7 +2916,6 @@ msgstr "选择"
msgctxt ""
"04020000.xhp\n"
"par_id3149262\n"
-"4\n"
"help.text"
msgid "This area contains the options available for inserting cells into a sheet. The cell quantity and position is defined by selecting a cell range in the sheet beforehand."
msgstr "在此您可以选择往工作表中插入单元格的方式。插入单元格的位置和数目视您在工作表中标记的单元格数目和位置而定。"
@@ -3138,7 +2924,6 @@ msgstr "在此您可以选择往工作表中插入单元格的方式。插入单
msgctxt ""
"04020000.xhp\n"
"hd_id3146120\n"
-"5\n"
"help.text"
msgid "Shift cells down"
msgstr "向下移动单元格"
@@ -3147,7 +2932,6 @@ msgstr "向下移动单元格"
msgctxt ""
"04020000.xhp\n"
"par_id3152596\n"
-"6\n"
"help.text"
msgid "<variable id=\"zellenuntentext\"><ahelp hid=\"modules/scalc/ui/insertcells/down\">Moves the contents of the selected range downward when cells are inserted.</ahelp></variable>"
msgstr "<variable id=\"zellenuntentext\"><ahelp hid=\"modules/scalc/ui/insertcells/down\">插入单元格时,选定区域的内容将向下移动。</ahelp></variable>"
@@ -3156,7 +2940,6 @@ msgstr "<variable id=\"zellenuntentext\"><ahelp hid=\"modules/scalc/ui/insertcel
msgctxt ""
"04020000.xhp\n"
"hd_id3147434\n"
-"7\n"
"help.text"
msgid "Shift cells right"
msgstr "向右移动单元格"
@@ -3165,7 +2948,6 @@ msgstr "向右移动单元格"
msgctxt ""
"04020000.xhp\n"
"par_id3144764\n"
-"8\n"
"help.text"
msgid "<variable id=\"zellenrechtstext\"><ahelp hid=\"modules/scalc/ui/insertcells/right\">Moves the contents of the selected range to the right when cells are inserted.</ahelp></variable>"
msgstr "<variable id=\"zellenrechtstext\"><ahelp hid=\"modules/scalc/ui/insertcells/right\" visibility=\"visible\">插入单元格时,选定区域的内容将向右移动。</ahelp></variable>"
@@ -3174,7 +2956,6 @@ msgstr "<variable id=\"zellenrechtstext\"><ahelp hid=\"modules/scalc/ui/insertce
msgctxt ""
"04020000.xhp\n"
"hd_id3153877\n"
-"9\n"
"help.text"
msgid "Entire row"
msgstr "插入整行"
@@ -3183,7 +2964,6 @@ msgstr "插入整行"
msgctxt ""
"04020000.xhp\n"
"par_id3155417\n"
-"10\n"
"help.text"
msgid "<variable id=\"zeilenganzetext\"><ahelp hid=\"modules/scalc/ui/insertcells/rows\">Inserts an entire row. The position of the row is determined by the selection on the sheet.</ahelp></variable> The number of rows inserted depends on how many rows are selected. The contents of the original rows are moved downward."
msgstr "<variable id=\"zeilenganzetext\"><ahelp hid=\"modules/scalc/ui/insertcells/rows\">插入整行。插入行的位置取决于工作表中选定单元格的位置。</ahelp></variable>插入的行数取决于选定的行数。原先选定的行的内容将向下移动。"
@@ -3192,7 +2972,6 @@ msgstr "<variable id=\"zeilenganzetext\"><ahelp hid=\"modules/scalc/ui/insertcel
msgctxt ""
"04020000.xhp\n"
"hd_id3146971\n"
-"11\n"
"help.text"
msgid "Entire column"
msgstr "插入整列"
@@ -3201,7 +2980,6 @@ msgstr "插入整列"
msgctxt ""
"04020000.xhp\n"
"par_id3155068\n"
-"12\n"
"help.text"
msgid "<variable id=\"spaltenganzetext\"><ahelp hid=\"modules/scalc/ui/insertcells/cols\">Inserts an entire column. The number of columns to be inserted is determined by the selected number of columns.</ahelp></variable> The contents of the original columns are shifted to the right."
msgstr "<variable id=\"spaltenganzetext\"><ahelp hid=\"modules/scalc/ui/insertcells/cols\">插入整列。插入的列数取决于选定的列数。</ahelp></variable>原先选定的列的内容将向右移动。"
@@ -3215,7 +2993,6 @@ msgid "Insert Rows"
msgstr "插入行"
#: 04030000.xhp
-#, fuzzy
msgctxt ""
"04030000.xhp\n"
"bm_id3150541\n"
@@ -3224,7 +3001,6 @@ msgid "<bookmark_value>spreadsheets; inserting rows</bookmark_value> <bookmark_
msgstr "<bookmark_value>电子表格; 插入行</bookmark_value><bookmark_value>行; 插入</bookmark_value><bookmark_value>插入; 行</bookmark_value>"
#: 04030000.xhp
-#, fuzzy
msgctxt ""
"04030000.xhp\n"
"hd_id3150541\n"
@@ -3281,7 +3057,6 @@ msgid "Insert Columns"
msgstr ""
#: 04040000.xhp
-#, fuzzy
msgctxt ""
"04040000.xhp\n"
"bm_id3155628\n"
@@ -3290,7 +3065,6 @@ msgid "<bookmark_value>spreadsheets; inserting columns</bookmark_value> <bookma
msgstr "<bookmark_value>电子表格; 插入列</bookmark_value><bookmark_value>插入; 列</bookmark_value><bookmark_value>列; 插入</bookmark_value>"
#: 04040000.xhp
-#, fuzzy
msgctxt ""
"04040000.xhp\n"
"hd_id3155628\n"
@@ -3358,7 +3132,6 @@ msgstr "<bookmark_value>工作表;创建</bookmark_value>"
msgctxt ""
"04050000.xhp\n"
"hd_id3155629\n"
-"1\n"
"help.text"
msgid "Insert Sheet"
msgstr "插入工作表"
@@ -3367,7 +3140,6 @@ msgstr "插入工作表"
msgctxt ""
"04050000.xhp\n"
"par_id3147264\n"
-"2\n"
"help.text"
msgid "<variable id=\"tabelleeinfuegentext\"><ahelp hid=\".uno:Insert\">Defines the options to be used to insert a new sheet.</ahelp> You can create a new sheet, or insert an existing sheet from a file.</variable>"
msgstr "<variable id=\"tabelleeinfuegentext\"><ahelp hid=\".uno:Insert\">定义用于插入新工作表的选项。</ahelp>您可以创建新工作表,也可以插入文件中的现有工作表。</variable>"
@@ -3376,7 +3148,6 @@ msgstr "<variable id=\"tabelleeinfuegentext\"><ahelp hid=\".uno:Insert\">定义
msgctxt ""
"04050000.xhp\n"
"hd_id3154684\n"
-"19\n"
"help.text"
msgid "Position"
msgstr "位置"
@@ -3385,7 +3156,6 @@ msgstr "位置"
msgctxt ""
"04050000.xhp\n"
"par_id3156281\n"
-"20\n"
"help.text"
msgid "Specifies where the new sheet is to be inserted into your document."
msgstr "指定在文档中插入新工作表的位置。"
@@ -3394,7 +3164,6 @@ msgstr "指定在文档中插入新工作表的位置。"
msgctxt ""
"04050000.xhp\n"
"hd_id3154123\n"
-"21\n"
"help.text"
msgid "Before current sheet"
msgstr "在当前工作表之前。"
@@ -3403,7 +3172,6 @@ msgstr "在当前工作表之前。"
msgctxt ""
"04050000.xhp\n"
"par_id3145787\n"
-"22\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/before\">Inserts a new sheet directly before the current sheet.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/before\">在当前工作表的前面直接插入新工作表。</ahelp>"
@@ -3412,7 +3180,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/before\">在当前工作表的
msgctxt ""
"04050000.xhp\n"
"hd_id3155414\n"
-"23\n"
"help.text"
msgid "After current sheet"
msgstr "在当前工作表之后。"
@@ -3421,7 +3188,6 @@ msgstr "在当前工作表之后。"
msgctxt ""
"04050000.xhp\n"
"par_id3145271\n"
-"24\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/after\">Inserts a new sheet directly after the current sheet.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/after\">在当前工作表的后面直接插入新工作表。</ahelp>"
@@ -3430,7 +3196,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/after\">在当前工作表的
msgctxt ""
"04050000.xhp\n"
"hd_id3147428\n"
-"25\n"
"help.text"
msgid "Sheet"
msgstr "工作表"
@@ -3439,7 +3204,6 @@ msgstr "工作表"
msgctxt ""
"04050000.xhp\n"
"par_id3154012\n"
-"26\n"
"help.text"
msgid "Specifies whether a new sheet or an existing sheet is inserted into the document."
msgstr "指定是在文档中插入新工作表还是现有工作表。"
@@ -3448,7 +3212,6 @@ msgstr "指定是在文档中插入新工作表还是现有工作表。"
msgctxt ""
"04050000.xhp\n"
"hd_id3147350\n"
-"3\n"
"help.text"
msgid "New sheet"
msgstr "新建工作表"
@@ -3457,7 +3220,6 @@ msgstr "新建工作表"
msgctxt ""
"04050000.xhp\n"
"par_id3149262\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/new\">Creates a new sheet. Enter a sheet name in the <emph>Name</emph> field. Allowed characters are letters, numbers, spaces, and the underline character.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/new\">创建新工作表。在<emph>名称</emph>字段中输入工作表名称。名称中可以包含字母、数字、空格和下划线。</ahelp>"
@@ -3466,7 +3228,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/new\">创建新工作表。在
msgctxt ""
"04050000.xhp\n"
"hd_id3155418\n"
-"27\n"
"help.text"
msgid "No. of sheets"
msgstr "工作表数量"
@@ -3475,7 +3236,6 @@ msgstr "工作表数量"
msgctxt ""
"04050000.xhp\n"
"par_id3148457\n"
-"28\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/countnf\">Specifies the number of sheets to be created.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/countnf\">指定要创建的工作表数量。</ahelp>"
@@ -3484,7 +3244,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/countnf\">指定要创建的
msgctxt ""
"04050000.xhp\n"
"hd_id3149379\n"
-"7\n"
"help.text"
msgid "Name"
msgstr "名称"
@@ -3493,7 +3252,6 @@ msgstr "名称"
msgctxt ""
"04050000.xhp\n"
"par_id3150718\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/nameed\">Specifies the name of the new sheet.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/nameed\">指定新工作表的名称。</ahelp>"
@@ -3502,7 +3260,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/nameed\">指定新工作表的
msgctxt ""
"04050000.xhp\n"
"hd_id3155066\n"
-"9\n"
"help.text"
msgid "From File"
msgstr "来自文件"
@@ -3511,7 +3268,6 @@ msgstr "来自文件"
msgctxt ""
"04050000.xhp\n"
"par_id3153714\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/fromfile\">Inserts a sheet from an existing file into the current document.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/fromfile\">将现有文件中的工作表插入当前文档中。</ahelp>"
@@ -3520,7 +3276,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/fromfile\">将现有文件中
msgctxt ""
"04050000.xhp\n"
"hd_id3149020\n"
-"15\n"
"help.text"
msgid "Browse"
msgstr "浏览"
@@ -3529,7 +3284,6 @@ msgstr "浏览"
msgctxt ""
"04050000.xhp\n"
"par_id3159267\n"
-"16\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/browse\">Opens a dialog for selecting a file.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/browse\">打开用于选择文件的对话框。</ahelp>"
@@ -3538,7 +3292,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/browse\">打开用于选择文
msgctxt ""
"04050000.xhp\n"
"hd_id3149255\n"
-"29\n"
"help.text"
msgid "Available Sheets"
msgstr "可用工作表"
@@ -3547,7 +3300,6 @@ msgstr "可用工作表"
msgctxt ""
"04050000.xhp\n"
"par_id3155336\n"
-"30\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/tables\">If you selected a file by using the <emph>Browse</emph> button, the sheets contained in it are displayed in the list box. The file path is displayed below this box. Select the sheet to be inserted from the list box.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/tables\">如果使用<emph>浏览</emph>按钮选择文件,将在列表框中显示该文件所包含的工作表。文件路径将显示在此列表框的下方。从列表框中选择要插入的工作表。</ahelp>"
@@ -3556,7 +3308,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/tables\">如果使用<emph>浏
msgctxt ""
"04050000.xhp\n"
"hd_id3145791\n"
-"17\n"
"help.text"
msgid "Link"
msgstr "链接"
@@ -3565,7 +3316,6 @@ msgstr "链接"
msgctxt ""
"04050000.xhp\n"
"par_id3152580\n"
-"18\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/link\">Select to insert the sheet as a link instead as a copy. The links can be updated to show the current contents.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/link\">选择此选项将以链接(而非副本)形式插入工作表。可以更新链接以显示最新内容。</ahelp>"
@@ -3591,8 +3341,8 @@ msgctxt ""
"04050100.xhp\n"
"par_idN105D1\n"
"help.text"
-msgid "<ahelp hid=\"26275\">Inserts a sheet from a different spreadsheet file.</ahelp>"
-msgstr "<ahelp hid=\"26275\">从不同的电子表格文件插入工作表。</ahelp>"
+msgid "<ahelp hid=\".\">Inserts a sheet from a different spreadsheet file.</ahelp>"
+msgstr ""
#: 04050100.xhp
msgctxt ""
@@ -3630,7 +3380,6 @@ msgstr "<bookmark_value>插入函数; 函数向导</bookmark_value><bookmark_val
msgctxt ""
"04060000.xhp\n"
"hd_id3147426\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">Function Wizard</link>"
msgstr "<link href=\"text/scalc/01/04060000.xhp\" name=\"自动文件助理:函数\">函数向导</link>"
@@ -3639,10 +3388,9 @@ msgstr "<link href=\"text/scalc/01/04060000.xhp\" name=\"自动文件助理:
msgctxt ""
"04060000.xhp\n"
"par_id3145271\n"
-"2\n"
"help.text"
-msgid "<variable id=\"funktionsautopilottext\"><ahelp hid=\".uno:FunctionDialog\">Opens the <emph>Function Wizard</emph>, which helps you to interactively create formulas.</ahelp></variable> Before you start the Wizard, select a cell or a range of cells from the current sheet, in order to determine the position at which the formula will be inserted."
-msgstr "<variable id=\"funktionsautopilottext\"><ahelp hid=\".uno:FunctionDialog\">打开<emph>函数向导</emph>,该向导可帮助您以交互方式创建公式。</ahelp></variable>在启动该向导之前,请先在当前工作表中选择一个单元格或一定范围的单元格,以确定插入公式的位置。"
+msgid "<variable id=\"funktionsautopilottext\"><ahelp hid=\".\">Opens the <emph>Function Wizard</emph>, which helps you to interactively create formulas.</ahelp></variable> Before you start the Wizard, select a cell or a range of cells from the current sheet, in order to determine the position at which the formula will be inserted."
+msgstr ""
#: 04060000.xhp
msgctxt ""
@@ -3656,7 +3404,6 @@ msgstr "您可以从 <link href=\"http://www.oasis-open.org/committees/documents
msgctxt ""
"04060000.xhp\n"
"par_id3159153\n"
-"60\n"
"help.text"
msgid "The <emph>Function Wizard</emph> has two tabs: <emph>Functions</emph> is used to create formulas, and <emph>Structure</emph> is used to check the formula build."
msgstr "<emph>函数向导</emph>有两个选项卡:<emph>函数</emph>选项卡用于创建公式,而<emph>结构</emph>选项卡用于检查公式结构。"
@@ -3665,7 +3412,6 @@ msgstr "<emph>函数向导</emph>有两个选项卡:<emph>函数</emph>选项
msgctxt ""
"04060000.xhp\n"
"hd_id3154490\n"
-"3\n"
"help.text"
msgid "Functions Tab"
msgstr "函数选项卡"
@@ -3673,17 +3419,23 @@ msgstr "函数选项卡"
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
-"par_id3149378\n"
-"5\n"
+"hd_id3154731\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">List of Categories and Functions</link>"
-msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"函数和类别列表\">函数和类别列表</link>"
+msgid "Search"
+msgstr ""
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3155440\n"
+"help.text"
+msgid "<ahelp hid=\"formula/ui/functionpage/search\">Search for a part of the function name.</ahelp>"
+msgstr ""
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"hd_id3154730\n"
-"36\n"
"help.text"
msgid "Category"
msgstr "分类"
@@ -3692,16 +3444,22 @@ msgstr "分类"
msgctxt ""
"04060000.xhp\n"
"par_id3153417\n"
-"37\n"
"help.text"
-msgid "<variable id=\"kategorienliste\"><ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_CATEGORY\">Lists all the categories to which the different functions are assigned. Select a category to view the appropriate functions in the list field below.</ahelp> Select \"All\" to view all functions in alphabetical order, irrespective of category. \"Last Used\" lists the functions you have most recently used. </variable>"
-msgstr "<variable id=\"kategorienliste\"><ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_CATEGORY\">列出所有函数分类。选择某个分类后,此分类所含有的函数就会显示在下方的列表字段中。</ahelp>若选择“全部”,则下方的列表字段中将列出所有函数,显示按函数名称的英语字母顺序排列,而与函数属于哪个分类无关。若选择“上次使用的”,则下方的列表字段中将列出最近使用过的函数。</variable>"
+msgid "<variable id=\"kategorienliste\"><ahelp hid=\"formula/ui/functionpage/category\">Lists all the categories to which the different functions are assigned. Select a category to view the appropriate functions in the list field below.</ahelp> Select \"All\" to view all functions in alphabetical order, irrespective of category. \"Last Used\" lists the functions you have most recently used. </variable>"
+msgstr ""
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3149378\n"
+"help.text"
+msgid "You can browse the full <link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">List of Categories and Functions</link>"
+msgstr ""
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"hd_id3150749\n"
-"6\n"
"help.text"
msgid "Function"
msgstr "函数"
@@ -3710,16 +3468,14 @@ msgstr "函数"
msgctxt ""
"04060000.xhp\n"
"par_id3155445\n"
-"7\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_FUNCTION\">Displays the functions found under the selected category. Double-click to select a function.</ahelp> A single-click displays a short function description."
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_FUNCTION\">显示选定函数分类中含有的函数。双击函数名称可以选择相应的函数,</ahelp>而单击仅显示简短的函数说明。"
+msgid "<ahelp hid=\"formula/ui/functionpage/function\">Displays the functions found under the selected category. Double-click to select a function.</ahelp> A single-click displays a short function description."
+msgstr ""
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"hd_id3159264\n"
-"8\n"
"help.text"
msgid "Array"
msgstr "矩阵"
@@ -3728,16 +3484,14 @@ msgstr "矩阵"
msgctxt ""
"04060000.xhp\n"
"par_id3149566\n"
-"9\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FORMULA:BTN_MATRIX\">Specifies that the selected function is inserted into the selected cell range as an array formula. </ahelp> Array formulas operate on multiple cells. Each cell in the array contains the formula, not as a copy but as a common formula shared by all matrix cells."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FORMULA:BTN_MATRIX\">在选定的单元格范围中以矩阵公式的形式插入选定的函数。</ahelp>一个矩阵公式可以对多个单元格进行操作。在这种情况下,矩阵内所有单元格共享一个公式,而不是每个单元格含有公式的一个复制件。"
+msgid "<ahelp hid=\"formula/ui/formuladialog/array\">Specifies that the selected function is inserted into the selected cell range as an array formula. </ahelp> Array formulas operate on multiple cells. Each cell in the array contains the formula, not as a copy but as a common formula shared by all matrix cells."
+msgstr ""
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"par_id3155959\n"
-"61\n"
"help.text"
msgid "The <emph>Array</emph> option is identical to the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter command, which is used to enter and confirm formulas in the sheet. The formula is inserted as a matrix formula indicated by two braces { }."
msgstr "<emph>数组</emph>选项与 <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter 命令具有相同的功能,都是用于向工作表中输入并确认公式的。公式会以用一对花括号 { } 括起来的矩阵公式的形式插入。"
@@ -3746,7 +3500,6 @@ msgstr "<emph>数组</emph>选项与 <switchinline select=\"sys\"><caseinline se
msgctxt ""
"04060000.xhp\n"
"par_id3152993\n"
-"40\n"
"help.text"
msgid "The maximum size of an array range is 128 by 128 cells."
msgstr "矩阵最多可以含有 128 x 128 个单元格。"
@@ -3755,7 +3508,6 @@ msgstr "矩阵最多可以含有 128 x 128 个单元格。"
msgctxt ""
"04060000.xhp\n"
"hd_id3150367\n"
-"41\n"
"help.text"
msgid "Argument Input Fields"
msgstr "参数输入字段"
@@ -3764,7 +3516,6 @@ msgstr "参数输入字段"
msgctxt ""
"04060000.xhp\n"
"par_id3145587\n"
-"15\n"
"help.text"
msgid "When you double-click a function, the argument input field(s) appear on the right side of the dialog. To select a cell reference as an argument, click directly into the cell, or drag across the required range on the sheet while holding down the mouse button. You can also enter numerical and other values or references directly into the corresponding fields in the dialog. When using <link href=\"text/scalc/01/04060102.xhp\" name=\"date entries\">date entries</link>, make sure you use the correct format. Click OK to insert the result into the spreadsheet."
msgstr "双击某个函数后,对话框的右侧将显示该函数的参数输入字段。要将单元格引用作为参数,请直接单击单元格或者按住鼠标键的同时拖动选定工作表中所需的单元格区域。也可以直接在对话框的相应字段中键入数字和其他值或引用。当使用<link href=\"text/scalc/01/04060102.xhp\" name=\"date entries\">日期条目</link>时,请确保使用正确的格式。单击“确定”将结果插入到工作表中。"
@@ -3773,7 +3524,6 @@ msgstr "双击某个函数后,对话框的右侧将显示该函数的参数输
msgctxt ""
"04060000.xhp\n"
"hd_id3149408\n"
-"18\n"
"help.text"
msgid "Function Result"
msgstr "单项计算结果"
@@ -3782,7 +3532,6 @@ msgstr "单项计算结果"
msgctxt ""
"04060000.xhp\n"
"par_id3155809\n"
-"19\n"
"help.text"
msgid "As soon you enter arguments in the function, the result is calculated. This preview informs you if the calculation can be carried out with the arguments given. If the arguments result in an error, the corresponding <link href=\"text/scalc/05/02140000.xhp\" name=\"error code\">error code</link> is displayed."
msgstr "输入一些参数后,函数就会自动计算结果。在对话框的单项计算结果栏内显示的至今为止的计算结果。若输入错误的参数,单项计算结果栏内就会显示相应的<link href=\"text/scalc/05/02140000.xhp\" name=\"错误码\">错误码</link>。"
@@ -3791,7 +3540,6 @@ msgstr "输入一些参数后,函数就会自动计算结果。在对话框的
msgctxt ""
"04060000.xhp\n"
"par_id3148700\n"
-"23\n"
"help.text"
msgid "The required arguments are indicated by names in bold print."
msgstr "所要求的参数由粗体显示的名称指定。"
@@ -3800,7 +3548,6 @@ msgstr "所要求的参数由粗体显示的名称指定。"
msgctxt ""
"04060000.xhp\n"
"hd_id3153064\n"
-"22\n"
"help.text"
msgid "f(x) (depending on the selected function)"
msgstr "f(x)(根据选择的函数)"
@@ -3809,16 +3556,14 @@ msgstr "f(x)(根据选择的函数)"
msgctxt ""
"04060000.xhp\n"
"par_id3157980\n"
-"24\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_FAP_BTN_FX4\">Allows you to access a subordinate level of the <emph>Function Wizard</emph> in order to nest another function within the function, instead of a value or reference.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_FAP_BTN_FX4\">为了在一个函数中嵌套另一个函数,而不是输入数值或引用,请访问<emph>函数向导</emph>的下一级。</ahelp>"
+msgid "<ahelp hid=\".\">Allows you to access a subordinate level of the <emph>Function Wizard</emph> in order to nest another function within the function, instead of a value or reference.</ahelp>"
+msgstr ""
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"hd_id3145076\n"
-"25\n"
"help.text"
msgid "Argument/Parameter/Cell Reference (depending on the selected function)"
msgstr "变量/参数/单元格引用(根据选择的函数)"
@@ -3827,16 +3572,14 @@ msgstr "变量/参数/单元格引用(根据选择的函数)"
msgctxt ""
"04060000.xhp\n"
"par_id3159097\n"
-"26\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_FORMULA:ED_REF\">The number of visible text fields depends on the function. Enter arguments either directly into the argument fields or by clicking a cell in the table.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_FORMULA:ED_REF\">可见文本字段的数目取决于函数。直接在参数字段中输入参数或单击表格中的单元格输入参数。</ahelp>"
+msgid "The number of visible text fields depends on the function. Enter arguments either directly into the argument fields or by clicking a cell in the table."
+msgstr ""
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"hd_id3154957\n"
-"51\n"
"help.text"
msgid "Result"
msgstr "结果"
@@ -3845,16 +3588,14 @@ msgstr "结果"
msgctxt ""
"04060000.xhp\n"
"par_id3150211\n"
-"52\n"
"help.text"
-msgid "Displays the calculation result or an error message."
-msgstr "显示计算结果或错误报告。"
+msgid "<ahelp hid=\"formula/ui/formuladialog/formula_result\">Displays the calculation result or an error message.</ahelp>"
+msgstr ""
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"hd_id3151304\n"
-"43\n"
"help.text"
msgid "Formula"
msgstr "公式"
@@ -3863,16 +3604,14 @@ msgstr "公式"
msgctxt ""
"04060000.xhp\n"
"par_id3149898\n"
-"44\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_FAP_FORMULA\">Displays the created formula. Type your entries directly, or create the formula using the wizard.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_FAP_FORMULA\">显示创建的公式。可以直接键入条目,也可以借助“向导”来创建公式。</ahelp>"
+msgid "<ahelp hid=\"formula/ui/formuladialog/ed_formula\">Displays the created formula. Type your entries directly, or create the formula using the wizard.</ahelp>"
+msgstr ""
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"hd_id3153249\n"
-"45\n"
"help.text"
msgid "Back"
msgstr "返回"
@@ -3881,16 +3620,14 @@ msgstr "返回"
msgctxt ""
"04060000.xhp\n"
"par_id3152869\n"
-"53\n"
"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_BACKWARD\">Moves the focus back through the formula components, marking them as it does so.</ahelp>"
-msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_BACKWARD\">在整个公式中向后移动焦点并标记各个组成项。</ahelp>"
+msgid "<ahelp hid=\"formula/ui/formuladialog/back\">Moves the focus back through the formula components, marking them as it does so.</ahelp>"
+msgstr ""
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"par_id3146966\n"
-"56\n"
"help.text"
msgid "To select a single function from a complex formula consisting of several functions, double-click the function in the formula window."
msgstr "要在由多个函数组成的复杂公式中选择某个函数,请在公式窗口中双击该函数。"
@@ -3899,7 +3636,6 @@ msgstr "要在由多个函数组成的复杂公式中选择某个函数,请在
msgctxt ""
"04060000.xhp\n"
"hd_id3155762\n"
-"54\n"
"help.text"
msgid "Next"
msgstr "继续"
@@ -3908,16 +3644,14 @@ msgstr "继续"
msgctxt ""
"04060000.xhp\n"
"par_id3149316\n"
-"55\n"
"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_FORWARD\">Moves forward through the formula components in the formula window.</ahelp> This button can also be used to assign functions to the formula. If you select a function and click the <emph>Next </emph>button, the selection appears in the formula window."
-msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_FORWARD\">在公式窗口中,光标向右移动至下一个公式。</ahelp>此按扭还可用于将函数指定到公式。当选择某个函数并单击<emph>继续</emph>按钮后,公式窗口中将显示选定的函数。"
+msgid "<ahelp hid=\"formula/ui/formuladialog/next\">Moves forward through the formula components in the formula window.</ahelp> This button can also be used to assign functions to the formula. If you select a function and click the <emph>Next </emph>button, the selection appears in the formula window."
+msgstr ""
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"par_id3159262\n"
-"57\n"
"help.text"
msgid "Double-click a function in the selection window to transfer it to the formula window."
msgstr "您也可以通过双击往公式视窗中的公式内插入选中的函数。"
@@ -3925,53 +3659,39 @@ msgstr "您也可以通过双击往公式视窗中的公式内插入选中的函
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
-"hd_id3148745\n"
-"58\n"
-"help.text"
-msgid "Cancel"
-msgstr "取消"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3147402\n"
-"59\n"
+"hd_id3150534\n"
"help.text"
-msgid "Closes the dialog without implementing the formula."
-msgstr "关闭对话框,而不运行公式。"
+msgid "OK"
+msgstr "确定"
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
-"hd_id3150534\n"
-"32\n"
+"par_id3153029\n"
"help.text"
-msgid "OK"
-msgstr "确定"
+msgid "<ahelp hid=\"formula/ui/formuladialog/ok\">Ends the <emph>Function Wizard</emph>, and transfers the formula to the selected cells.</ahelp>"
+msgstr ""
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
-"par_id3153029\n"
-"33\n"
+"hd_id3148745\n"
"help.text"
-msgid "Ends the <emph>Function Wizard</emph>, and transfers the formula to the selected cells."
-msgstr "关闭<emph>函数向导</emph>,将公式插入到选定的单元格中。"
+msgid "Cancel"
+msgstr "取消"
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
-"par_id3156400\n"
-"34\n"
+"par_id3147402\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">List of Categories and Functions</link>"
-msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"函数和类别列表\">函数和类别列表</link>"
+msgid "<ahelp hid=\"formula/ui/formuladialog/cancel\">Closes the dialog without implementing the formula.</ahelp>"
+msgstr ""
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"hd_id3147610\n"
-"47\n"
"help.text"
msgid "Structure tab"
msgstr "结构选项卡"
@@ -3980,7 +3700,6 @@ msgstr "结构选项卡"
msgctxt ""
"04060000.xhp\n"
"par_id3153122\n"
-"48\n"
"help.text"
msgid "On this page, you can view the structure of the function."
msgstr "在此页面中,可以查看函数的结构。"
@@ -3989,7 +3708,6 @@ msgstr "在此页面中,可以查看函数的结构。"
msgctxt ""
"04060000.xhp\n"
"par_id3149350\n"
-"4\n"
"help.text"
msgid "If you start the <emph>Function Wizard</emph> while the cell cursor is positioned in a cell that already contains a function, the <emph>Structure</emph> tab is opened and shows the composition of the current formula."
msgstr "如果启动<emph>函数向导</emph>时,光标定位在一个已含有函数的单元格,则会打开<emph>结构</emph>选项卡并显示当前公式的结构。"
@@ -3998,7 +3716,6 @@ msgstr "如果启动<emph>函数向导</emph>时,光标定位在一个已含
msgctxt ""
"04060000.xhp\n"
"hd_id3149014\n"
-"49\n"
"help.text"
msgid "Structure"
msgstr "结构"
@@ -4007,16 +3724,14 @@ msgstr "结构"
msgctxt ""
"04060000.xhp\n"
"par_id3150481\n"
-"50\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_FAP_STRUCT\">Displays a hierarchical representation of the current function.</ahelp> You can hide or show the arguments by a click on the plus or minus sign in front."
-msgstr "<ahelp hid=\"HID_SC_FAP_STRUCT\">显示当前函数的等级式结构。</ahelp>可以通过单击前面的加号或减号来显示或隐藏变量。"
+msgid "<ahelp hid=\"formula/ui/structpage/struct\">Displays a hierarchical representation of the current function.</ahelp> You can hide or show the arguments by a click on the plus or minus sign in front."
+msgstr ""
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"par_id3148886\n"
-"63\n"
"help.text"
msgid "Blue dots denote correctly entered arguments. Red dots indicate incorrect data types. For example: if the SUM function has one argument entered as text, this is highlighted in red as SUM only permits number entries."
msgstr "若输入的参数是正确的,参数前方就会显示一个蓝点;若您输入的参数类型是错误的,参数前方则会显示一个红点。例如:向函数SUM内输入文字后参数前方便会显示一个红点,因为函数SUM内只允许数字当作参数输入。"
@@ -4041,7 +3756,6 @@ msgstr "<bookmark_value>函数; 按类别列出</bookmark_value> <bookmark_
msgctxt ""
"04060100.xhp\n"
"hd_id3154944\n"
-"16\n"
"help.text"
msgid "<variable id=\"drking\"><link href=\"text/scalc/01/04060100.xhp\" name=\"Functions by Category\">Functions by Category</link></variable>"
msgstr ""
@@ -4050,7 +3764,6 @@ msgstr ""
msgctxt ""
"04060100.xhp\n"
"par_id3149378\n"
-"2\n"
"help.text"
msgid "This section describes the functions of $[officename] Calc. The various functions are divided into categories in the Function Wizard."
msgstr "本部分介绍 $[officename] Calc 函数。各种函数在函数向导中被划分为不同的类别。"
@@ -4059,7 +3772,6 @@ msgstr "本部分介绍 $[officename] Calc 函数。各种函数在函数向导
msgctxt ""
"04060100.xhp\n"
"hd_id3146972\n"
-"3\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060101.xhp\" name=\"Database\">Database</link>"
msgstr "<link href=\"text/scalc/01/04060101.xhp\" name=\"数据库\">数据库</link>"
@@ -4068,7 +3780,6 @@ msgstr "<link href=\"text/scalc/01/04060101.xhp\" name=\"数据库\">数据库</
msgctxt ""
"04060100.xhp\n"
"hd_id3155443\n"
-"4\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060102.xhp\" name=\"Date & Time\">Date & Time</link>"
msgstr "<link href=\"text/scalc/01/04060102.xhp\" name=\"日期和时间\">日期和时间</link>"
@@ -4077,7 +3788,6 @@ msgstr "<link href=\"text/scalc/01/04060102.xhp\" name=\"日期和时间\">日
msgctxt ""
"04060100.xhp\n"
"hd_id3147339\n"
-"5\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Financial\">Financial</link>"
msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"财务\">财务</link>"
@@ -4086,7 +3796,6 @@ msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"财务\">财务</link>"
msgctxt ""
"04060100.xhp\n"
"hd_id3153963\n"
-"6\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060104.xhp\" name=\"Information\">Information</link>"
msgstr "<link href=\"text/scalc/01/04060104.xhp\" name=\"信息\">信息</link>"
@@ -4095,7 +3804,6 @@ msgstr "<link href=\"text/scalc/01/04060104.xhp\" name=\"信息\">信息</link>"
msgctxt ""
"04060100.xhp\n"
"hd_id3146316\n"
-"7\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060105.xhp\" name=\"Logical\">Logical</link>"
msgstr "<link href=\"text/scalc/01/04060105.xhp\" name=\"逻辑\">逻辑</link>"
@@ -4104,7 +3812,6 @@ msgstr "<link href=\"text/scalc/01/04060105.xhp\" name=\"逻辑\">逻辑</link>"
msgctxt ""
"04060100.xhp\n"
"hd_id3148485\n"
-"8\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060106.xhp\" name=\"Mathematical\">Mathematical</link>"
msgstr "<link href=\"text/scalc/01/04060106.xhp\" name=\"数学\">数学</link>"
@@ -4113,7 +3820,6 @@ msgstr "<link href=\"text/scalc/01/04060106.xhp\" name=\"数学\">数学</link>"
msgctxt ""
"04060100.xhp\n"
"hd_id3150363\n"
-"9\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060107.xhp\" name=\"Matrix\">Array</link>"
msgstr "<link href=\"text/scalc/01/04060107.xhp\" name=\"矩阵\">矩阵</link>"
@@ -4122,7 +3828,6 @@ msgstr "<link href=\"text/scalc/01/04060107.xhp\" name=\"矩阵\">矩阵</link>"
msgctxt ""
"04060100.xhp\n"
"hd_id3150208\n"
-"10\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060108.xhp\" name=\"Statistical\">Statistical</link>"
msgstr "<link href=\"text/scalc/01/04060108.xhp\" name=\"统计\">统计</link>"
@@ -4131,7 +3836,6 @@ msgstr "<link href=\"text/scalc/01/04060108.xhp\" name=\"统计\">统计</link>"
msgctxt ""
"04060100.xhp\n"
"hd_id3166428\n"
-"11\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060109.xhp\" name=\"Spreadsheet\">Spreadsheet</link>"
msgstr "<link href=\"text/scalc/01/04060109.xhp\" name=\"电子表格\">电子表格</link>"
@@ -4140,7 +3844,6 @@ msgstr "<link href=\"text/scalc/01/04060109.xhp\" name=\"电子表格\">电子
msgctxt ""
"04060100.xhp\n"
"hd_id3145585\n"
-"12\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060110.xhp\" name=\"Text\">Text</link>"
msgstr "<link href=\"text/scalc/01/04060110.xhp\" name=\"文字\">文字</link>"
@@ -4149,7 +3852,6 @@ msgstr "<link href=\"text/scalc/01/04060110.xhp\" name=\"文字\">文字</link>"
msgctxt ""
"04060100.xhp\n"
"hd_id3156449\n"
-"13\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060111.xhp\" name=\"Add-in\">Add-in</link>"
msgstr "<link href=\"text/scalc/01/04060111.xhp\" name=\"Add In\">Add In</link>"
@@ -4158,7 +3860,6 @@ msgstr "<link href=\"text/scalc/01/04060111.xhp\" name=\"Add In\">Add In</link>"
msgctxt ""
"04060100.xhp\n"
"par_id3150715\n"
-"14\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060199.xhp\" name=\"Operators\">Operators</link>"
msgstr ""
@@ -4183,13 +3884,11 @@ msgstr "<bookmark_value>函数向导; 数据库</bookmark_value><bookmark_value>
msgctxt ""
"04060101.xhp\n"
"hd_id3148946\n"
-"1\n"
"help.text"
msgid "Database Functions"
msgstr "数据库函数"
#: 04060101.xhp
-#, fuzzy
msgctxt ""
"04060101.xhp\n"
"par_id3145173\n"
@@ -4201,7 +3900,6 @@ msgstr "<variable id=\"datenbanktext\">本节介绍用于管理数据(一行
msgctxt ""
"04060101.xhp\n"
"par_id3154016\n"
-"186\n"
"help.text"
msgid "The Database category may be confused with a database integrated in $[officename]. However, there is no connection between a database in $[officename] and the Database category in $[officename] Calc."
msgstr "Database 类可能会与集成在 $[officename] 中的数据库混淆。然而,在 $[officename] 中数据库与在 $[officename] Calc 中的 Database 类没有联系。"
@@ -4210,7 +3908,6 @@ msgstr "Database 类可能会与集成在 $[officename] 中的数据库混淆。
msgctxt ""
"04060101.xhp\n"
"hd_id3150329\n"
-"190\n"
"help.text"
msgid "Example Data:"
msgstr "示例数据:"
@@ -4219,7 +3916,6 @@ msgstr "示例数据:"
msgctxt ""
"04060101.xhp\n"
"par_id3153713\n"
-"191\n"
"help.text"
msgid "The following data will be used in some of the function description examples:"
msgstr "某些函数功能说明示例中将用到以下数据:"
@@ -4228,7 +3924,6 @@ msgstr "某些函数功能说明示例中将用到以下数据:"
msgctxt ""
"04060101.xhp\n"
"par_id3155766\n"
-"3\n"
"help.text"
msgid "The range A1:E10 lists the children invited to Joe's birthday party. The following information is given for each entry: column A shows the name, B the grade, then age in years, distance to school in meters and weight in kilograms."
msgstr "A1:E10 区域列出了应邀参加 Joe 生日晚会的孩子们。给出了每个孩子的以下信息:A 栏列出名字,B 栏列出年级,接着是年龄、到学校的距离 (以米为单位)、每个人的体重 (以千克为单位)。"
@@ -4237,7 +3932,6 @@ msgstr "A1:E10 区域列出了应邀参加 Joe 生日晚会的孩子们。给出
msgctxt ""
"04060101.xhp\n"
"par_id3145232\n"
-"4\n"
"help.text"
msgid "A"
msgstr "A"
@@ -4246,7 +3940,6 @@ msgstr "A"
msgctxt ""
"04060101.xhp\n"
"par_id3146316\n"
-"5\n"
"help.text"
msgid "B"
msgstr "B"
@@ -4255,7 +3948,6 @@ msgstr "B"
msgctxt ""
"04060101.xhp\n"
"par_id3150297\n"
-"6\n"
"help.text"
msgid "C"
msgstr "C"
@@ -4264,7 +3956,6 @@ msgstr "C"
msgctxt ""
"04060101.xhp\n"
"par_id3150344\n"
-"7\n"
"help.text"
msgid "D"
msgstr "D"
@@ -4273,7 +3964,6 @@ msgstr "D"
msgctxt ""
"04060101.xhp\n"
"par_id3150785\n"
-"8\n"
"help.text"
msgid "E"
msgstr "E"
@@ -4282,7 +3972,6 @@ msgstr "E"
msgctxt ""
"04060101.xhp\n"
"par_id3150090\n"
-"9\n"
"help.text"
msgid "1"
msgstr "1"
@@ -4291,7 +3980,6 @@ msgstr "1"
msgctxt ""
"04060101.xhp\n"
"par_id3152992\n"
-"10\n"
"help.text"
msgid "<item type=\"input\">Name</item>"
msgstr "<item type=\"input\">姓名</item>"
@@ -4300,7 +3988,6 @@ msgstr "<item type=\"input\">姓名</item>"
msgctxt ""
"04060101.xhp\n"
"par_id3155532\n"
-"11\n"
"help.text"
msgid "<item type=\"input\">Grade</item>"
msgstr "<item type=\"input\">年级</item>"
@@ -4309,7 +3996,6 @@ msgstr "<item type=\"input\">年级</item>"
msgctxt ""
"04060101.xhp\n"
"par_id3156448\n"
-"12\n"
"help.text"
msgid "<item type=\"input\">Age</item>"
msgstr "<item type=\"input\">年龄</item>"
@@ -4318,7 +4004,6 @@ msgstr "<item type=\"input\">年龄</item>"
msgctxt ""
"04060101.xhp\n"
"par_id3154486\n"
-"13\n"
"help.text"
msgid "<item type=\"input\">Distance to School</item>"
msgstr "<item type=\"input\">到学校的距离</item>"
@@ -4327,7 +4012,6 @@ msgstr "<item type=\"input\">到学校的距离</item>"
msgctxt ""
"04060101.xhp\n"
"par_id3152899\n"
-"14\n"
"help.text"
msgid "<item type=\"input\">Weight</item>"
msgstr "<item type=\"input\">体重</item>"
@@ -4336,7 +4020,6 @@ msgstr "<item type=\"input\">体重</item>"
msgctxt ""
"04060101.xhp\n"
"par_id3151240\n"
-"16\n"
"help.text"
msgid "<item type=\"input\">Andy</item>"
msgstr "<item type=\"input\">Andy</item>"
@@ -4345,7 +4028,6 @@ msgstr "<item type=\"input\">Andy</item>"
msgctxt ""
"04060101.xhp\n"
"par_id3152870\n"
-"22\n"
"help.text"
msgid "<item type=\"input\">Betty</item>"
msgstr "<item type=\"input\">Betty</item>"
@@ -4354,7 +4036,6 @@ msgstr "<item type=\"input\">Betty</item>"
msgctxt ""
"04060101.xhp\n"
"par_id3155596\n"
-"28\n"
"help.text"
msgid "<item type=\"input\">Charles</item>"
msgstr "<item type=\"input\">Charles</item>"
@@ -4363,7 +4044,6 @@ msgstr "<item type=\"input\">Charles</item>"
msgctxt ""
"04060101.xhp\n"
"par_id3147296\n"
-"34\n"
"help.text"
msgid "<item type=\"input\">Daniel</item>"
msgstr "<item type=\"input\">Daniel</item>"
@@ -4372,7 +4052,6 @@ msgstr "<item type=\"input\">Daniel</item>"
msgctxt ""
"04060101.xhp\n"
"par_id3150456\n"
-"40\n"
"help.text"
msgid "<item type=\"input\">Eva</item>"
msgstr "<item type=\"input\">Eva</item>"
@@ -4381,7 +4060,6 @@ msgstr "<item type=\"input\">Eva</item>"
msgctxt ""
"04060101.xhp\n"
"par_id3145826\n"
-"46\n"
"help.text"
msgid "<item type=\"input\">Frank</item>"
msgstr "<item type=\"input\">Frank</item>"
@@ -4390,7 +4068,6 @@ msgstr "<item type=\"input\">Frank</item>"
msgctxt ""
"04060101.xhp\n"
"par_id3146137\n"
-"52\n"
"help.text"
msgid "<item type=\"input\">Greta</item>"
msgstr "<item type=\"input\">Greta</item>"
@@ -4399,7 +4076,6 @@ msgstr "<item type=\"input\">Greta</item>"
msgctxt ""
"04060101.xhp\n"
"par_id3153078\n"
-"58\n"
"help.text"
msgid "<item type=\"input\">Harry</item>"
msgstr "<item type=\"input\">Harry</item>"
@@ -4408,7 +4084,6 @@ msgstr "<item type=\"input\">Harry</item>"
msgctxt ""
"04060101.xhp\n"
"par_id3148761\n"
-"64\n"
"help.text"
msgid "<item type=\"input\">Irene</item>"
msgstr "<item type=\"input\">Irene</item>"
@@ -4417,7 +4092,6 @@ msgstr "<item type=\"input\">Irene</item>"
msgctxt ""
"04060101.xhp\n"
"par_id3153544\n"
-"72\n"
"help.text"
msgid "<item type=\"input\">Name</item>"
msgstr "<item type=\"input\">姓名</item>"
@@ -4426,7 +4100,6 @@ msgstr "<item type=\"input\">姓名</item>"
msgctxt ""
"04060101.xhp\n"
"par_id3158414\n"
-"73\n"
"help.text"
msgid "<item type=\"input\">Grade</item>"
msgstr "<item type=\"input\">年级</item>"
@@ -4435,7 +4108,6 @@ msgstr "<item type=\"input\">年级</item>"
msgctxt ""
"04060101.xhp\n"
"par_id3152820\n"
-"74\n"
"help.text"
msgid "<item type=\"input\">Age</item>"
msgstr "<item type=\"input\">年龄</item>"
@@ -4444,7 +4116,6 @@ msgstr "<item type=\"input\">年龄</item>"
msgctxt ""
"04060101.xhp\n"
"par_id3154866\n"
-"75\n"
"help.text"
msgid "<item type=\"input\">Distance to School</item>"
msgstr "<item type=\"input\">到学校的距离</item>"
@@ -4453,7 +4124,6 @@ msgstr "<item type=\"input\">到学校的距离</item>"
msgctxt ""
"04060101.xhp\n"
"par_id3150471\n"
-"76\n"
"help.text"
msgid "<item type=\"input\">Weight</item>"
msgstr "<item type=\"input\">体重</item>"
@@ -4462,7 +4132,6 @@ msgstr "<item type=\"input\">体重</item>"
msgctxt ""
"04060101.xhp\n"
"par_id3163823\n"
-"81\n"
"help.text"
msgid "<item type=\"input\">DCOUNT</item>"
msgstr "<item type=\"input\">DCOUNT</item>"
@@ -4471,7 +4140,6 @@ msgstr "<item type=\"input\">DCOUNT</item>"
msgctxt ""
"04060101.xhp\n"
"par_id3149282\n"
-"83\n"
"help.text"
msgid "The formula in cell B16 is =DCOUNT(A1:E10;D1;A13:E14)"
msgstr "单元格 B16 中的公式为 =DCOUNT(A1:E10, D1, A13:E14)"
@@ -4480,7 +4148,6 @@ msgstr "单元格 B16 中的公式为 =DCOUNT(A1:E10, D1, A13:E14)"
msgctxt ""
"04060101.xhp\n"
"hd_id3150962\n"
-"192\n"
"help.text"
msgid "Database Function Parameters:"
msgstr "数据库函数参数:"
@@ -4489,7 +4156,6 @@ msgstr "数据库函数参数:"
msgctxt ""
"04060101.xhp\n"
"par_id3155837\n"
-"84\n"
"help.text"
msgid "The following items are the parameter definitions for all database functions:"
msgstr "以下各项是所有数据库函数的参数定义:"
@@ -4498,7 +4164,6 @@ msgstr "以下各项是所有数据库函数的参数定义:"
msgctxt ""
"04060101.xhp\n"
"par_id3149453\n"
-"85\n"
"help.text"
msgid "<emph>Database</emph> is the cell range defining the database."
msgstr "<emph>database</emph>是用来定义该数据库的单元格区域。"
@@ -4507,7 +4172,6 @@ msgstr "<emph>database</emph>是用来定义该数据库的单元格区域。"
msgctxt ""
"04060101.xhp\n"
"par_id3151272\n"
-"86\n"
"help.text"
msgid "<emph>DatabaseField</emph> specifies the column where the function operates on after the search criteria of the first parameter is applied and the data rows are selected. It is not related to the search criteria itself. <variable id=\"quotes\">For the DatabaseField parameter you can enter a reference to a header cell or a number to specify the column within the Database area, starting with 1. To reference a column by means of the literal column header name, place quotation marks around the header name.</variable>"
msgstr ""
@@ -4516,7 +4180,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3147083\n"
-"87\n"
"help.text"
msgid "<emph>SearchCriteria</emph> is the cell range containing search criteria. If you write several criteria in one row they are connected by AND. If you write the criteria in different rows they are connected by OR. Empty cells in the search criteria range will be ignored."
msgstr "<emph>SearchCriteria</emph> 是指含有查找条件的单元格区域。如果您在同一行中键入了数个查找条件,就会采用 AND 来连接它们。如果您在不同的行中键入了数个查找条件,就会采用 OR 来连接它们。查找条件区域内的空白单元格将被忽略。"
@@ -4525,7 +4188,6 @@ msgstr "<emph>SearchCriteria</emph> 是指含有查找条件的单元格区域
msgctxt ""
"04060101.xhp\n"
"par_id3151188\n"
-"188\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\" name=\"Spreadsheet - Calculate\">%PRODUCTNAME Calc - Calculate</link> to define how $[officename] Calc acts when searching for identical entries."
msgstr "选择 <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - 首选项</caseinline><defaultinline>工具 - 选项</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\" name=\"Spreadsheet - Calculate\">%PRODUCTNAME Calc - 计算</link>以定义查找同等条目时 $[officename] Calc 如何操作。"
@@ -4550,7 +4212,6 @@ msgstr "<bookmark_value>DCOUNT 函数</bookmark_value><bookmark_value>计算行
msgctxt ""
"04060101.xhp\n"
"hd_id3150882\n"
-"88\n"
"help.text"
msgid "DCOUNT"
msgstr "DCOUNT"
@@ -4559,7 +4220,6 @@ msgstr "DCOUNT"
msgctxt ""
"04060101.xhp\n"
"par_id3156133\n"
-"89\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DBANZAHL\">DCOUNT counts the number of rows (records) in a database that match the specified search criteria and contain numerical values in the DatabaseField column.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_DBANZAHL\">DCOUNT 计算数据库中符合指定条件并且DatabaseField字段中包含数值型值的记录数。</ahelp>"
@@ -4568,7 +4228,6 @@ msgstr "<ahelp hid=\"HID_FUNC_DBANZAHL\">DCOUNT 计算数据库中符合指定
msgctxt ""
"04060101.xhp\n"
"hd_id3156099\n"
-"90\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -4577,7 +4236,6 @@ msgstr "语法"
msgctxt ""
"04060101.xhp\n"
"par_id3153218\n"
-"91\n"
"help.text"
msgid "DCOUNT(Database; [DatabaseField]; SearchCriteria)"
msgstr "DCOUNT(Database, [DatabaseField], SearchCriteria)"
@@ -4586,7 +4244,6 @@ msgstr "DCOUNT(Database, [DatabaseField], SearchCriteria)"
msgctxt ""
"04060101.xhp\n"
"par_id3153273\n"
-"187\n"
"help.text"
msgid "If the DatabaseField argument is omitted, DCOUNT returns the count of all records that satisfy Criteria. <embedvar href=\"text/scalc/01/04060101.xhp#quotes\"/>"
msgstr "如果 DatabaseField 参数被忽略,那么DCOUNT 返回所有满足条件 Criteria 的记录数。 <embedvar href=\"text/scalc/01/04060101.xhp#quotes\"/>"
@@ -4595,27 +4252,22 @@ msgstr "如果 DatabaseField 参数被忽略,那么DCOUNT 返回所有满足
msgctxt ""
"04060101.xhp\n"
"hd_id3154743\n"
-"92\n"
"help.text"
msgid "Example"
msgstr "示例"
#: 04060101.xhp
-#, fuzzy
msgctxt ""
"04060101.xhp\n"
"par_id3153623\n"
-"93\n"
"help.text"
msgid "In the example above (scroll up, please), we want to know how many children have to travel more than 600 meters to school. The result is to be stored in cell B16. Set the cursor in cell B16. Enter the formula <item type=\"input\">=DCOUNT(A1:E10;D1;A13:E14)</item> in B16. The <emph>Function Wizard</emph> helps you to input ranges."
msgstr "在上面的示例中(请向上滚动),我们要计算的是上学路程超过 600 米的孩子的数目。计算结果存储在单元格 B16 中。请将光标置于单元格 B16 中,然后在 B16 中输入公式 <item type=\"input\">=DCOUNT(A1:E10;0;A13:E14)</item>。<emph>函数向导</emph>可帮助您输入值。"
#: 04060101.xhp
-#, fuzzy
msgctxt ""
"04060101.xhp\n"
"par_id3149142\n"
-"94\n"
"help.text"
msgid "<emph>Database</emph> is the range of data to be evaluated, including its headers: in this case A1:E10. <emph>DatabaseField</emph> specifies the column for the search criteria: in this case, the column with the numerical distance values. <emph>SearchCriteria</emph> is the range where you can enter the search parameters: in this case, A13:E14."
msgstr "<emph>Database</emph> 是要计算的数据区域,包括其标题:在本例中为 A1:E10。<emph>DatabaseField</emph> 指定用于查找条件的列:在本例中是整个数据库。<emph>SearchCriteria</emph> 是您可以输入查找参数的范围:在本例中为 A13:E14。"
@@ -4624,7 +4276,6 @@ msgstr "<emph>Database</emph> 是要计算的数据区域,包括其标题:
msgctxt ""
"04060101.xhp\n"
"par_id3145652\n"
-"95\n"
"help.text"
msgid "To learn how many children in second grade are over 7 years of age, delete the entry >600 in cell D14 and enter <item type=\"input\">2</item> in cell B14 under Grade, and enter <item type=\"input\">>7</item> in cell C14 to the right. The result is 2. Two children are in second grade and over 7 years of age. As both criteria are in the same row, they are connected by AND."
msgstr "要了解二年级有多少孩子的年龄超过 7 岁,请删除单元格 D14 中的内容 >600,然后在“年级”下的单元格 B14 中输入 <item type=\"input\">2</item>,并在右边的单元格 C14 中输入 <item type=\"input\">>7</item>。结果等于 2,有两个二年级孩子的年龄超过 7 岁。由于同一行中有两个查找条件,所以会用 AND 来连接这两个条件。"
@@ -4641,7 +4292,6 @@ msgstr "<bookmark_value>DCOUNTA 函数</bookmark_value><bookmark_value>记录;
msgctxt ""
"04060101.xhp\n"
"hd_id3156123\n"
-"97\n"
"help.text"
msgid "DCOUNTA"
msgstr "DCOUNTA"
@@ -4650,7 +4300,6 @@ msgstr "DCOUNTA"
msgctxt ""
"04060101.xhp\n"
"par_id3156110\n"
-"98\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DBANZAHL2\">DCOUNTA counts the number of rows (records) in a database that match the specified search conditions, and contain numeric or alphanumeric values.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_DBANZAHL2\">DCOUNTA 计算数据库中匹配指定查找条件并包含数字或字母数字值的行(记录)数。</ahelp>"
@@ -4659,17 +4308,14 @@ msgstr "<ahelp hid=\"HID_FUNC_DBANZAHL2\">DCOUNTA 计算数据库中匹配指定
msgctxt ""
"04060101.xhp\n"
"hd_id3143228\n"
-"99\n"
"help.text"
msgid "Syntax"
msgstr "语法"
#: 04060101.xhp
-#, fuzzy
msgctxt ""
"04060101.xhp\n"
"par_id3146893\n"
-"100\n"
"help.text"
msgid "DCOUNTA(Database; [DatabaseField]; SearchCriteria)"
msgstr "DCOUNTA(Database; DatabaseField; SearchCriteria)"
@@ -4678,7 +4324,6 @@ msgstr "DCOUNTA(Database; DatabaseField; SearchCriteria)"
msgctxt ""
"04060101.xhp\n"
"par_id3153274\n"
-"189\n"
"help.text"
msgid "If the DatabaseField argument is omitted, DCOUNTA returns the count of all records that satisfy Criteria. <embedvar href=\"text/scalc/01/04060101.xhp#quotes\"/>"
msgstr ""
@@ -4687,7 +4332,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"hd_id3149751\n"
-"101\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -4696,7 +4340,6 @@ msgstr "示例"
msgctxt ""
"04060101.xhp\n"
"par_id3153982\n"
-"102\n"
"help.text"
msgid "In the example above (scroll up, please), you can search for the number of children whose name starts with an E or a subsequent letter. Edit the formula in B16 to read <item type=\"input\">=DCOUNTA(A1:E10;\"Name\";A13:E14)</item>. Delete the old search criteria and enter <item type=\"input\">>=E</item> under Name in field A14. The result is 5. If you now delete all number values for Greta in row 8, the result changes to 4. Row 8 is no longer included in the count because it does not contain any values. The name Greta is text, not a value. Note that the DatabaseField parameter must point to a column that can contain values."
msgstr "在上面的示例中(请向上滚动),您可以查找以字母 E 或字母表中 E 后面的字母作为名字的首字母的孩子的数目。在 B16 中编辑公式 <item type=\"input\">=DCOUNTA(A1:E10;\"Age\";A13:E14)</item>。删除旧的查找条件,在“名字”下的单元格 A14 中输入 <item type=\"input\">>=E</item>。计算结果是 5。如果您现在删除第 8 行中有关 Greta 的所有数据,那么计算结果就变为 4,因为第 8 行中已经不含有任何数值,所以计算时没有包括它。名字 Greta 是文字,不是数值。请注意,数据库字段的参数必须指向含有数值的列。"
@@ -4713,7 +4356,6 @@ msgstr "<bookmark_value>DGET 函数</bookmark_value> <bookmark_value>单
msgctxt ""
"04060101.xhp\n"
"hd_id3147256\n"
-"104\n"
"help.text"
msgid "DGET"
msgstr "DGET"
@@ -4722,7 +4364,6 @@ msgstr "DGET"
msgctxt ""
"04060101.xhp\n"
"par_id3152801\n"
-"105\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DBAUSZUG\">DGET returns the contents of the referenced cell in a database which matches the specified search criteria.</ahelp> In case of an error, the function returns either #VALUE! for no row found, or Err502 for more than one cell found."
msgstr "<ahelp hid=\"HID_FUNC_DBAUSZUG\">DGET 返回数据库中符合指定查找条件的引用单元格的内容。</ahelp>如果出错,函数将返回 #VALUE!,表示找不到行,或返回 Err502,表示找到多个单元格。"
@@ -4731,7 +4372,6 @@ msgstr "<ahelp hid=\"HID_FUNC_DBAUSZUG\">DGET 返回数据库中符合指定查
msgctxt ""
"04060101.xhp\n"
"hd_id3159344\n"
-"106\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -4740,7 +4380,6 @@ msgstr "语法"
msgctxt ""
"04060101.xhp\n"
"par_id3154696\n"
-"107\n"
"help.text"
msgid "DGET(Database; DatabaseField; SearchCriteria)"
msgstr "DGET(Database; DatabaseField; SearchCriteria)"
@@ -4749,7 +4388,6 @@ msgstr "DGET(Database; DatabaseField; SearchCriteria)"
msgctxt ""
"04060101.xhp\n"
"hd_id3153909\n"
-"108\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -4758,7 +4396,6 @@ msgstr "示例"
msgctxt ""
"04060101.xhp\n"
"par_id3155388\n"
-"109\n"
"help.text"
msgid "In the above example (scroll up, please), we want to determine what grade a child is in, whose name was entered in cell A14. The formula is entered in cell B16 and differs slightly from the earlier examples because only one column (one database field) can be entered for <emph>DatabaseField</emph>. Enter the following formula:"
msgstr "在上例中(请向上滚动),我们要确定名字输入在单元格 A14 中的孩子所在的年级。在单元格 B16 中输入了公式,此公式与以前的示例略有不同,因为只有一列(一个数据库字段)可以作为 <emph>DatabaseField</emph> 的输入。输入以下公式:"
@@ -4767,7 +4404,6 @@ msgstr "在上例中(请向上滚动),我们要确定名字输入在单元
msgctxt ""
"04060101.xhp\n"
"par_id3153096\n"
-"110\n"
"help.text"
msgid "<item type=\"input\">=DGET(A1:E10;\"Grade\";A13:E14)</item>"
msgstr "<item type=\"input\">=DGET(A1:E10;\"年级\";A13:E14)</item>"
@@ -4776,7 +4412,6 @@ msgstr "<item type=\"input\">=DGET(A1:E10;\"年级\";A13:E14)</item>"
msgctxt ""
"04060101.xhp\n"
"par_id3150524\n"
-"111\n"
"help.text"
msgid "Enter the name <item type=\"input\">Frank</item> in A14, and you see the result 2. Frank is in second grade. Enter <item type=\"input\">\"Age\"</item> instead of \"Grade\" and you will get Frank's age."
msgstr "在单元格 A14 中输入 <item type=\"input\">Frank</item>,返回结果 2。Frank 上二年级。输入 <item type=\"input\">\"年龄\"</item> 代替 \"年级\",就可以获得 Frank 的年龄。"
@@ -4785,7 +4420,6 @@ msgstr "在单元格 A14 中输入 <item type=\"input\">Frank</item>,返回结
msgctxt ""
"04060101.xhp\n"
"par_id3148833\n"
-"112\n"
"help.text"
msgid "Or enter the value <item type=\"input\">11</item> in cell C14 only, and delete the other entries in this row. Edit the formula in B16 as follows:"
msgstr "或者仅在单元格 C14 中输入数值 <item type=\"input\">11</item>,并删除这行中的其他数据。按照以下所示编辑 B16 中的公式:"
@@ -4794,7 +4428,6 @@ msgstr "或者仅在单元格 C14 中输入数值 <item type=\"input\">11</item>
msgctxt ""
"04060101.xhp\n"
"par_id3149912\n"
-"113\n"
"help.text"
msgid "<item type=\"input\">=DGET(A1:E10;\"Name\";A13:E14)</item>"
msgstr "<item type=\"input\">=DGET(A1:E10;\"名字\";A13:E14)</item>"
@@ -4803,7 +4436,6 @@ msgstr "<item type=\"input\">=DGET(A1:E10;\"名字\";A13:E14)</item>"
msgctxt ""
"04060101.xhp\n"
"par_id3148813\n"
-"114\n"
"help.text"
msgid "Instead of the grade, the name is queried. The answer appears at once: Daniel is the only child aged 11."
msgstr "现在您要确定的是符合某一年龄的孩子的名字。这样您获得的结果便是:Daniel。也就是说年龄为 11 岁的孩子名字是 Daniel。"
@@ -4820,7 +4452,6 @@ msgstr "<bookmark_value>DMAX 函数</bookmark_value><bookmark_value>Calc 数据
msgctxt ""
"04060101.xhp\n"
"hd_id3149766\n"
-"115\n"
"help.text"
msgid "DMAX"
msgstr "DMAX"
@@ -4829,7 +4460,6 @@ msgstr "DMAX"
msgctxt ""
"04060101.xhp\n"
"par_id3154903\n"
-"116\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DBMAX\">DMAX returns the maximum content of a cell (field) in a database (all records) that matches the specified search conditions.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_DBMAX\">DMAX 返回数据库(所有记录)中符合指定查找条件的最大单元格(字段)内容。</ahelp>"
@@ -4838,7 +4468,6 @@ msgstr "<ahelp hid=\"HID_FUNC_DBMAX\">DMAX 返回数据库(所有记录)中
msgctxt ""
"04060101.xhp\n"
"hd_id3150771\n"
-"117\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -4847,7 +4476,6 @@ msgstr "语法"
msgctxt ""
"04060101.xhp\n"
"par_id3159157\n"
-"118\n"
"help.text"
msgid "DMAX(Database; DatabaseField; SearchCriteria)"
msgstr "DMAX(Database; DatabaseField; SearchCriteria)"
@@ -4856,7 +4484,6 @@ msgstr "DMAX(Database; DatabaseField; SearchCriteria)"
msgctxt ""
"04060101.xhp\n"
"hd_id3145420\n"
-"119\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -4865,7 +4492,6 @@ msgstr "示例"
msgctxt ""
"04060101.xhp\n"
"par_id3148442\n"
-"120\n"
"help.text"
msgid "To find out how much the heaviest child in each grade weighed in the above example (scroll up, please), enter the following formula in B16:"
msgstr "要计算上例中每个年级最重的孩子的体重(请向上滚动),请在单元格 B16 中输入以下公式:"
@@ -4874,7 +4500,6 @@ msgstr "要计算上例中每个年级最重的孩子的体重(请向上滚动
msgctxt ""
"04060101.xhp\n"
"par_id3148804\n"
-"121\n"
"help.text"
msgid "<item type=\"input\">=DMAX(A1:E10;\"Weight\";A13:E14)</item>"
msgstr "<item type=\"input\">=DMAX(A1:E10;\"体重\";A13:E14)</item>"
@@ -4883,7 +4508,6 @@ msgstr "<item type=\"input\">=DMAX(A1:E10;\"体重\";A13:E14)</item>"
msgctxt ""
"04060101.xhp\n"
"par_id3150510\n"
-"122\n"
"help.text"
msgid "Under Grade, enter <item type=\"input\">1, 2, 3,</item> and so on, one after the other. After entering a grade number, the weight of the heaviest child in that grade appears."
msgstr "在“年级”下依次输入 <item type=\"input\">1, 2, 3,</item> 等等。输入年级后,将显示该年级中最重的孩子的体重。"
@@ -4900,7 +4524,6 @@ msgstr "<bookmark_value>DMIN 函数</bookmark_value><bookmark_value>Calc 数据
msgctxt ""
"04060101.xhp\n"
"hd_id3159141\n"
-"123\n"
"help.text"
msgid "DMIN"
msgstr "DMIN"
@@ -4909,7 +4532,6 @@ msgstr "DMIN"
msgctxt ""
"04060101.xhp\n"
"par_id3154261\n"
-"124\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DBMIN\">DMIN returns the minimum content of a cell (field) in a database that matches the specified search criteria.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_DBMIN\">DMIN 返回数据库中匹配指定查找条件的最小单元格(字段)的内容。</ahelp>"
@@ -4918,7 +4540,6 @@ msgstr "<ahelp hid=\"HID_FUNC_DBMIN\">DMIN 返回数据库中匹配指定查找
msgctxt ""
"04060101.xhp\n"
"hd_id3147238\n"
-"125\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -4927,7 +4548,6 @@ msgstr "语法"
msgctxt ""
"04060101.xhp\n"
"par_id3148479\n"
-"126\n"
"help.text"
msgid "DMIN(Database; DatabaseField; SearchCriteria)"
msgstr "DMIN(Database; DatabaseField; SearchCriteria)"
@@ -4936,7 +4556,6 @@ msgstr "DMIN(Database; DatabaseField; SearchCriteria)"
msgctxt ""
"04060101.xhp\n"
"hd_id3151050\n"
-"127\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -4945,7 +4564,6 @@ msgstr "示例"
msgctxt ""
"04060101.xhp\n"
"par_id3148925\n"
-"128\n"
"help.text"
msgid "To find the shortest distance to school for the children in each grade in the above example (scroll up, please), enter the following formula in B16:"
msgstr "要计算上例中各年级孩子距学校最近的距离(请向上滚动),请在单元格 B16 中输入以下公式:"
@@ -4954,7 +4572,6 @@ msgstr "要计算上例中各年级孩子距学校最近的距离(请向上滚
msgctxt ""
"04060101.xhp\n"
"par_id3149161\n"
-"129\n"
"help.text"
msgid "<item type=\"input\">=DMIN(A1:E10;\"Distance to School\";A13:E14)</item>"
msgstr "<item type=\"input\">=DMIN(A1:E10;\"上学路程\";A13:E14)</item>"
@@ -4963,7 +4580,6 @@ msgstr "<item type=\"input\">=DMIN(A1:E10;\"上学路程\";A13:E14)</item>"
msgctxt ""
"04060101.xhp\n"
"par_id3148917\n"
-"130\n"
"help.text"
msgid "In row 14, under Grade, enter <item type=\"input\">1, 2, 3,</item> and so on, one after the other. The shortest distance to school for each grade appears."
msgstr "在“年级”下的第 14 行处依次输入 <item type=\"input\">1, 2, 3,</item> 等等。将显示每个年级到学校的最短路程。"
@@ -4980,7 +4596,6 @@ msgstr "<bookmark_value>DAVERAGE 函数</bookmark_value><bookmark_value>平均
msgctxt ""
"04060101.xhp\n"
"hd_id3154274\n"
-"131\n"
"help.text"
msgid "DAVERAGE"
msgstr "DAVERAGE"
@@ -4989,7 +4604,6 @@ msgstr "DAVERAGE"
msgctxt ""
"04060101.xhp\n"
"par_id3166453\n"
-"132\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DBMITTELWERT\">DAVERAGE returns the average of the values of all cells (fields) in all rows (database records) that match the specified search criteria.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_DBMITTELWERT\">DAVERAGER 返回所有行(数据库记录)中符合指定搜索条件的所有单元格(字段)的平均值。</ahelp>"
@@ -4998,7 +4612,6 @@ msgstr "<ahelp hid=\"HID_FUNC_DBMITTELWERT\">DAVERAGER 返回所有行(数据
msgctxt ""
"04060101.xhp\n"
"hd_id3146955\n"
-"133\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -5007,7 +4620,6 @@ msgstr "语法"
msgctxt ""
"04060101.xhp\n"
"par_id3150710\n"
-"134\n"
"help.text"
msgid "DAVERAGE(Database; DatabaseField; SearchCriteria)"
msgstr "DAVERAGE(Database; DatabaseField; SearchCriteria)"
@@ -5016,7 +4628,6 @@ msgstr "DAVERAGE(Database; DatabaseField; SearchCriteria)"
msgctxt ""
"04060101.xhp\n"
"hd_id3152943\n"
-"135\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -5025,7 +4636,6 @@ msgstr "示例"
msgctxt ""
"04060101.xhp\n"
"par_id3149104\n"
-"136\n"
"help.text"
msgid "To find the average weight of all children of the same age in the above example (scroll up, please), enter the following formula in B16:"
msgstr "要计算上例中所有同龄孩子的平均体重(请向上滚动),请在单元格 B16 中输入以下公式:"
@@ -5034,7 +4644,6 @@ msgstr "要计算上例中所有同龄孩子的平均体重(请向上滚动)
msgctxt ""
"04060101.xhp\n"
"par_id3153688\n"
-"137\n"
"help.text"
msgid "<item type=\"input\">=DAVERAGE(A1:E10;\"Weight\";A13:E14)</item>"
msgstr "<item type=\"input\">=DAVERAGE(A1:E10;\"体重\";A13:E14)</item>"
@@ -5043,7 +4652,6 @@ msgstr "<item type=\"input\">=DAVERAGE(A1:E10;\"体重\";A13:E14)</item>"
msgctxt ""
"04060101.xhp\n"
"par_id3155587\n"
-"138\n"
"help.text"
msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The average weight of all children of the same age appears."
msgstr "在“年龄”下的第 14 行处依次输入 <item type=\"input\">7, 8, 9,</item> 等等。将显示每个年龄组中所有孩子的平均体重。"
@@ -5060,7 +4668,6 @@ msgstr "<bookmark_value>DPRODUCT 函数</bookmark_value><bookmark_value>乘; Cal
msgctxt ""
"04060101.xhp\n"
"hd_id3159269\n"
-"139\n"
"help.text"
msgid "DPRODUCT"
msgstr "DPRODUCT"
@@ -5069,7 +4676,6 @@ msgstr "DPRODUCT"
msgctxt ""
"04060101.xhp\n"
"par_id3152879\n"
-"140\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DBPRODUKT\">DPRODUCT multiplies all cells of a data range where the cell contents match the search criteria.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_DBPRODUKT\">DPRODUCT 将单元格内容符合查找条件的数据区域的所有单元格相乘。</ahelp>"
@@ -5078,7 +4684,6 @@ msgstr "<ahelp hid=\"HID_FUNC_DBPRODUKT\">DPRODUCT 将单元格内容符合查
msgctxt ""
"04060101.xhp\n"
"hd_id3149966\n"
-"141\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -5087,7 +4692,6 @@ msgstr "语法"
msgctxt ""
"04060101.xhp\n"
"par_id3154854\n"
-"142\n"
"help.text"
msgid "DPRODUCT(Database; DatabaseField; SearchCriteria)"
msgstr "DPRODUCT(Database; DatabaseField; SearchCriteria)"
@@ -5096,7 +4700,6 @@ msgstr "DPRODUCT(Database; DatabaseField; SearchCriteria)"
msgctxt ""
"04060101.xhp\n"
"hd_id3149802\n"
-"143\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -5105,7 +4708,6 @@ msgstr "示例"
msgctxt ""
"04060101.xhp\n"
"par_id3148986\n"
-"144\n"
"help.text"
msgid "With the birthday party example above (scroll up, please), there is no meaningful application of this function."
msgstr "对于上面的生日晚会示例(请向上滚动),此函数不适用。"
@@ -5122,7 +4724,6 @@ msgstr "<bookmark_value>DSTDEV 函数</bookmark_value> <bookmark_value>
msgctxt ""
"04060101.xhp\n"
"hd_id3148462\n"
-"145\n"
"help.text"
msgid "DSTDEV"
msgstr "DSTDEV"
@@ -5131,7 +4732,6 @@ msgstr "DSTDEV"
msgctxt ""
"04060101.xhp\n"
"par_id3154605\n"
-"146\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DBSTDABW\">DSTDEV calculates the standard deviation of a population based on a sample, using the numbers in a database column that match the given conditions.</ahelp> The records are treated as a sample of data. That means that the children in the example represent a cross section of all children. Note that a representative result can not be obtained from a sample of less than one thousand."
msgstr "<ahelp hid=\"HID_FUNC_DBSTDABW\">DSTDEV 通过使用数据库列中符合给定条件的数据,来计算基于抽样人群的标准偏差。</ahelp>记录被视为一个数据抽样。这表示示例中的孩子代表所有孩子中的一种典型情况。值得注意的是,如果抽样的数据少于一千个,则无法获得具有代表性的结果。"
@@ -5140,7 +4740,6 @@ msgstr "<ahelp hid=\"HID_FUNC_DBSTDABW\">DSTDEV 通过使用数据库列中符
msgctxt ""
"04060101.xhp\n"
"hd_id3149427\n"
-"147\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -5149,7 +4748,6 @@ msgstr "语法"
msgctxt ""
"04060101.xhp\n"
"par_id3148661\n"
-"148\n"
"help.text"
msgid "DSTDEV(Database; DatabaseField; SearchCriteria)"
msgstr "DSTDEV(Database; DatabaseField; SearchCriteria)"
@@ -5158,7 +4756,6 @@ msgstr "DSTDEV(Database; DatabaseField; SearchCriteria)"
msgctxt ""
"04060101.xhp\n"
"hd_id3153945\n"
-"149\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -5167,7 +4764,6 @@ msgstr "示例"
msgctxt ""
"04060101.xhp\n"
"par_id3149934\n"
-"150\n"
"help.text"
msgid "To find the standard deviation of the weight for all children of the same age in the example (scroll up, please), enter the following formula in B16:"
msgstr "要计算示例中所有同龄孩子体重的标准偏差(请向上滚动),请在单元格 B16 中输入以下公式:"
@@ -5176,7 +4772,6 @@ msgstr "要计算示例中所有同龄孩子体重的标准偏差(请向上滚
msgctxt ""
"04060101.xhp\n"
"par_id3150630\n"
-"151\n"
"help.text"
msgid "<item type=\"input\">=DSTDEV(A1:E10;\"Weight\";A13:E14)</item>"
msgstr "<item type=\"input\">=DSTDEV(A1:E10;\"体重\";A13:E14)</item>"
@@ -5185,7 +4780,6 @@ msgstr "<item type=\"input\">=DSTDEV(A1:E10;\"体重\";A13:E14)</item>"
msgctxt ""
"04060101.xhp\n"
"par_id3153536\n"
-"152\n"
"help.text"
msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The result shown is the standard deviation of the weight of all children of this age."
msgstr "在“年龄”下的第 14 行处依次输入 <item type=\"input\">7, 8, 9,</item>等等。结果显示的是每个年龄组中所有孩子体重的标准偏差。"
@@ -5202,7 +4796,6 @@ msgstr "<bookmark_value>DSTDEVP 函数</bookmark_value><bookmark_value>数据库
msgctxt ""
"04060101.xhp\n"
"hd_id3150429\n"
-"153\n"
"help.text"
msgid "DSTDEVP"
msgstr "DSTDEVP"
@@ -5211,7 +4804,6 @@ msgstr "DSTDEVP"
msgctxt ""
"04060101.xhp\n"
"par_id3145598\n"
-"154\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DBSTDABWN\">DSTDEVP calculates the standard deviation of a population based on all cells of a data range which match the search criteria.</ahelp> The records from the example are treated as the whole population."
msgstr "<ahelp hid=\"HID_FUNC_DBSTDABWN\">DSTDEVP 计算基于数据区域中匹配查找条件的所有单元格的总体样本的标准偏差。</ahelp>示例中的记录被视为一个完整的总体样本。"
@@ -5220,7 +4812,6 @@ msgstr "<ahelp hid=\"HID_FUNC_DBSTDABWN\">DSTDEVP 计算基于数据区域中匹
msgctxt ""
"04060101.xhp\n"
"hd_id3145307\n"
-"155\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -5229,7 +4820,6 @@ msgstr "语法"
msgctxt ""
"04060101.xhp\n"
"par_id3149484\n"
-"156\n"
"help.text"
msgid "DSTDEVP(Database; DatabaseField; SearchCriteria)"
msgstr "DSTDEVP(Database; DatabaseField; SearchCriteria)"
@@ -5238,7 +4828,6 @@ msgstr "DSTDEVP(Database; DatabaseField; SearchCriteria)"
msgctxt ""
"04060101.xhp\n"
"hd_id3153322\n"
-"157\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -5247,7 +4836,6 @@ msgstr "示例"
msgctxt ""
"04060101.xhp\n"
"par_id3155431\n"
-"158\n"
"help.text"
msgid "To find the standard deviation of the weight for all children of the same age at Joe's birthday party (scroll up, please), enter the following formula in B16:"
msgstr "要计算参加 Joe 生日晚会的所有同龄孩子体重的标准偏差(请向上滚动),请在单元格 B16 中输入以下公式:"
@@ -5256,7 +4844,6 @@ msgstr "要计算参加 Joe 生日晚会的所有同龄孩子体重的标准偏
msgctxt ""
"04060101.xhp\n"
"par_id3148411\n"
-"159\n"
"help.text"
msgid "<item type=\"input\">=DSTDEVP(A1:E10;\"Weight\";A13:E14)</item>"
msgstr "<item type=\"input\">=DSTDEVP(A1:E10;\"体重\";A13:E14)</item>"
@@ -5265,7 +4852,6 @@ msgstr "<item type=\"input\">=DSTDEVP(A1:E10;\"体重\";A13:E14)</item>"
msgctxt ""
"04060101.xhp\n"
"par_id3143271\n"
-"160\n"
"help.text"
msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The result is the standard deviation of the weight for all same-aged children whose weight was checked."
msgstr "在“年龄”下的第 14 行中依次输入 <item type=\"input\">7, 8, 9,</item> 等等。计算结果是所有已检查体重的同年龄孩子体重的标准偏差。"
@@ -5282,7 +4868,6 @@ msgstr "<bookmark_value>DSUM 函数</bookmark_value><bookmark_value>计算; Calc
msgctxt ""
"04060101.xhp\n"
"hd_id3154794\n"
-"161\n"
"help.text"
msgid "DSUM"
msgstr "DSUM"
@@ -5291,7 +4876,6 @@ msgstr "DSUM"
msgctxt ""
"04060101.xhp\n"
"par_id3149591\n"
-"162\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DBSUMME\">DSUM returns the total of all cells in a database field in all rows (records) that match the specified search criteria.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_DBSUMME\">DSUM 计算的是所有行(记录)中的数据库字段中,符合指定搜索条件的所有单元格数据的总和。</ahelp>"
@@ -5300,7 +4884,6 @@ msgstr "<ahelp hid=\"HID_FUNC_DBSUMME\">DSUM 计算的是所有行(记录)
msgctxt ""
"04060101.xhp\n"
"hd_id3146128\n"
-"163\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -5309,7 +4892,6 @@ msgstr "语法"
msgctxt ""
"04060101.xhp\n"
"par_id3150989\n"
-"164\n"
"help.text"
msgid "DSUM(Database; DatabaseField; SearchCriteria)"
msgstr "DSUM(Database; DatabaseField; SearchCriteria)"
@@ -5318,7 +4900,6 @@ msgstr "DSUM(Database; DatabaseField; SearchCriteria)"
msgctxt ""
"04060101.xhp\n"
"hd_id3159079\n"
-"165\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -5327,7 +4908,6 @@ msgstr "示例"
msgctxt ""
"04060101.xhp\n"
"par_id3152766\n"
-"166\n"
"help.text"
msgid "To find the length of the combined distance to school of all children at Joe's birthday party (scroll up, please) who are in second grade, enter the following formula in B16:"
msgstr "要计算参加 Joe 生日晚会的所有二年级孩子上学路程的总和(请向上滚动),请在单元格 B16 中输入以下公式:"
@@ -5336,7 +4916,6 @@ msgstr "要计算参加 Joe 生日晚会的所有二年级孩子上学路程的
msgctxt ""
"04060101.xhp\n"
"par_id3151312\n"
-"167\n"
"help.text"
msgid "<item type=\"input\">=DSUM(A1:E10;\"Distance to School\";A13:E14)</item>"
msgstr "<item type=\"input\">=DSUM(A1:E10;\"上学路程\";A13:E14)</item>"
@@ -5345,7 +4924,6 @@ msgstr "<item type=\"input\">=DSUM(A1:E10;\"上学路程\";A13:E14)</item>"
msgctxt ""
"04060101.xhp\n"
"par_id3150596\n"
-"168\n"
"help.text"
msgid "Enter <item type=\"input\">2</item> in row 14 under Grade. The sum (1950) of the distances to school of all the children who are in second grade is displayed."
msgstr "在“年级”下的第 14 行处输入数字 <item type=\"input\">2</item>。将显示二年级的所有孩子上学路程的总和 (1950)。"
@@ -5362,7 +4940,6 @@ msgstr "<bookmark_value>DVAR 函数</bookmark_value><bookmark_value>方差; 基
msgctxt ""
"04060101.xhp\n"
"hd_id3155614\n"
-"170\n"
"help.text"
msgid "DVAR"
msgstr "DVAR"
@@ -5371,7 +4948,6 @@ msgstr "DVAR"
msgctxt ""
"04060101.xhp\n"
"par_id3154418\n"
-"171\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DBVARIANZ\">DVAR returns the variance of all cells of a database field in all records that match the specified search criteria.</ahelp> The records from the example are treated as a sample of data. A representative result cannot be obtained from a sample population of less than one thousand."
msgstr "<ahelp hid=\"HID_FUNC_DBVARIANZ\">DVAR 返回匹配指定查找条件的所有记录的数据库字段中所有单元格数据的方差。</ahelp>示例中的记录被视为一个数据抽样。如果抽样总体样本少于一千个,则无法获得具有代表性的结果。"
@@ -5380,7 +4956,6 @@ msgstr "<ahelp hid=\"HID_FUNC_DBVARIANZ\">DVAR 返回匹配指定查找条件的
msgctxt ""
"04060101.xhp\n"
"hd_id3154825\n"
-"172\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -5389,7 +4964,6 @@ msgstr "语法"
msgctxt ""
"04060101.xhp\n"
"par_id3156138\n"
-"173\n"
"help.text"
msgid "DVAR(Database; DatabaseField; SearchCriteria)"
msgstr "DVAR(Database; DatabaseField; SearchCriteria)"
@@ -5398,7 +4972,6 @@ msgstr "DVAR(Database; DatabaseField; SearchCriteria)"
msgctxt ""
"04060101.xhp\n"
"hd_id3151257\n"
-"174\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -5407,7 +4980,6 @@ msgstr "示例"
msgctxt ""
"04060101.xhp\n"
"par_id3153701\n"
-"175\n"
"help.text"
msgid "To find the variance of the weight of all children of the same age of the above example (scroll up, please), enter the following formula in B16:"
msgstr "要计算上例中所有同龄孩子体重的方差(请向上滚动),请在单元格 B16 中输入以下公式:"
@@ -5416,7 +4988,6 @@ msgstr "要计算上例中所有同龄孩子体重的方差(请向上滚动)
msgctxt ""
"04060101.xhp\n"
"par_id3153676\n"
-"176\n"
"help.text"
msgid "<item type=\"input\">=DVAR(A1:E10;\"Weight\";A13:E14)</item>"
msgstr "<item type=\"input\">=DVAR(A1:E10;\"体重\";A13:E14)</item>"
@@ -5425,7 +4996,6 @@ msgstr "<item type=\"input\">=DVAR(A1:E10;\"体重\";A13:E14)</item>"
msgctxt ""
"04060101.xhp\n"
"par_id3153798\n"
-"177\n"
"help.text"
msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. You will see as a result the variance of the weight values for all children of this age."
msgstr "在“年龄”下的第 14 行处依次输入 <item type=\"input\">7, 8, 9,</item> 等等。您将看到该年龄组中所有孩子体重的方差。"
@@ -5442,7 +5012,6 @@ msgstr "<bookmark_value>DVARP 函数</bookmark_value><bookmark_value>方差; 基
msgctxt ""
"04060101.xhp\n"
"hd_id3153880\n"
-"178\n"
"help.text"
msgid "DVARP"
msgstr "DVARP"
@@ -5451,7 +5020,6 @@ msgstr "DVARP"
msgctxt ""
"04060101.xhp\n"
"par_id3155119\n"
-"179\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DBVARIANZEN\">DVARP calculates the variance of all cell values in a database field in all records that match the specified search criteria.</ahelp> The records are from the example are treated as an entire population."
msgstr "<ahelp hid=\"HID_FUNC_DBVARIANZEN\">DVARP 计算所有匹配查找条件的记录的数据库字段中所有单元格值的方差。</ahelp>示例中的记录视为一个总体样本。"
@@ -5460,7 +5028,6 @@ msgstr "<ahelp hid=\"HID_FUNC_DBVARIANZEN\">DVARP 计算所有匹配查找条件
msgctxt ""
"04060101.xhp\n"
"hd_id3145774\n"
-"180\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -5469,7 +5036,6 @@ msgstr "语法"
msgctxt ""
"04060101.xhp\n"
"par_id3153776\n"
-"181\n"
"help.text"
msgid "DVARP(Database; DatabaseField; SearchCriteria)"
msgstr "DVARP(Database; DatabaseField; SearchCriteria)"
@@ -5478,7 +5044,6 @@ msgstr "DVARP(Database; DatabaseField; SearchCriteria)"
msgctxt ""
"04060101.xhp\n"
"hd_id3151110\n"
-"182\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -5487,7 +5052,6 @@ msgstr "示例"
msgctxt ""
"04060101.xhp\n"
"par_id3147099\n"
-"183\n"
"help.text"
msgid "To find the variance of the weight for all children of the same age at Joe's birthday party (scroll up, please), enter the following formula in B16:"
msgstr "要计算参加 Joe 生日晚会的所有同年龄孩子体重的方差(请向上滚动),请在单元格 B16 中输入以下公式:"
@@ -5496,7 +5060,6 @@ msgstr "要计算参加 Joe 生日晚会的所有同年龄孩子体重的方差
msgctxt ""
"04060101.xhp\n"
"par_id3147322\n"
-"184\n"
"help.text"
msgid "<item type=\"input\">=DVARP(A1:E10;\"Weight\";A13:E14)</item>"
msgstr "<item type=\"input\">=DVARP(A1:E10;\"体重\";A13:E14)</item>"
@@ -5505,7 +5068,6 @@ msgstr "<item type=\"input\">=DVARP(A1:E10;\"体重\";A13:E14)</item>"
msgctxt ""
"04060101.xhp\n"
"par_id3146902\n"
-"185\n"
"help.text"
msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The variance of the weight values for all children of this age attending Joe's birthday party appears."
msgstr "在“年龄”下的第 14 行中依次输入 <item type=\"input\">7, 8, 9,</item> 等等。将显示参加 Joe 生日晚会的所有同年龄孩子体重的方差。"
@@ -5639,7 +5201,6 @@ msgid "(used in Apple software)"
msgstr "(在 Apple 软件中使用)"
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id791039\n"
@@ -5687,22 +5248,6 @@ msgctxt ""
msgid "Functions"
msgstr "函数"
-#: 04060102.xhp
-msgctxt ""
-"04060102.xhp\n"
-"par_id231020162315043955\n"
-"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr ""
-
-#: 04060102.xhp
-msgctxt ""
-"04060102.xhp\n"
-"par_id231020163315043955\n"
-"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr ""
-
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -5723,17 +5268,14 @@ msgstr "<bookmark_value>财务函数</bookmark_value><bookmark_value>函数; 财
msgctxt ""
"04060103.xhp\n"
"hd_id3143284\n"
-"1\n"
"help.text"
msgid "Financial Functions Part One"
msgstr "财务函数第一部分"
#: 04060103.xhp
-#, fuzzy
msgctxt ""
"04060103.xhp\n"
"par_id3149095\n"
-"2\n"
"help.text"
msgid "<variable id=\"finanztext\">This category contains the mathematical finance functions of <item type=\"productname\">%PRODUCTNAME</item> Calc.</variable>"
msgstr "<variable id=\"finanztext\">此类别包含 <item type=\"productname\">%PRODUCTNAME</item> Calc 的数学财务函数。 </variable>"
@@ -5750,7 +5292,6 @@ msgstr "<bookmark_value>AMORDEGRC 函数</bookmark_value><bookmark_value>折旧;
msgctxt ""
"04060103.xhp\n"
"hd_id3153366\n"
-"359\n"
"help.text"
msgid "AMORDEGRC"
msgstr "AMORDEGRC"
@@ -5759,7 +5300,6 @@ msgstr "AMORDEGRC"
msgctxt ""
"04060103.xhp\n"
"par_id3147434\n"
-"360\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_AMORDEGRC\">Calculates the amount of depreciation for a settlement period as degressive amortization.</ahelp> Unlike AMORLINC, a depreciation coefficient that is independent of the depreciable life is used here."
msgstr "<ahelp hid=\"HID_AAI_FUNC_AMORDEGRC\">计算一个结算周期内递减分摊的折旧金额。</ahelp>与 AMORLINC 不同的是,这里使用了与折旧年限无关的折旧系数。"
@@ -5768,7 +5308,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_AMORDEGRC\">计算一个结算周期内递减
msgctxt ""
"04060103.xhp\n"
"hd_id3155855\n"
-"361\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -5777,7 +5316,6 @@ msgstr "语法"
msgctxt ""
"04060103.xhp\n"
"par_id3147427\n"
-"362\n"
"help.text"
msgid "AMORDEGRC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
msgstr "AMORDEGRC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
@@ -5786,7 +5324,6 @@ msgstr "AMORDEGRC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis
msgctxt ""
"04060103.xhp\n"
"par_id3147125\n"
-"363\n"
"help.text"
msgid "<emph>Cost</emph> is the acquisition costs."
msgstr "<emph>Cost</emph> 是购买成本。"
@@ -5795,7 +5332,6 @@ msgstr "<emph>Cost</emph> 是购买成本。"
msgctxt ""
"04060103.xhp\n"
"par_id3151074\n"
-"364\n"
"help.text"
msgid "<emph>DatePurchased</emph> is the date of acquisition."
msgstr "<emph>DatePurchased</emph> 指购买日期。"
@@ -5804,7 +5340,6 @@ msgstr "<emph>DatePurchased</emph> 指购买日期。"
msgctxt ""
"04060103.xhp\n"
"par_id3144765\n"
-"365\n"
"help.text"
msgid "<emph>FirstPeriod </emph>is the end date of the first settlement period."
msgstr "<emph>FirstPeriod </emph> 指第一个结算期间的结束日期。"
@@ -5813,7 +5348,6 @@ msgstr "<emph>FirstPeriod </emph> 指第一个结算期间的结束日期。"
msgctxt ""
"04060103.xhp\n"
"par_id3156286\n"
-"366\n"
"help.text"
msgid "<emph>Salvage</emph> is the salvage value of the capital asset at the end of the depreciable life."
msgstr "<emph>Salvage</emph> 指资产在使用期限终止时的残值。"
@@ -5822,7 +5356,6 @@ msgstr "<emph>Salvage</emph> 指资产在使用期限终止时的残值。"
msgctxt ""
"04060103.xhp\n"
"par_id3153415\n"
-"367\n"
"help.text"
msgid "<emph>Period</emph> is the settlement period to be considered."
msgstr "<emph>Period</emph> 指结算期间。"
@@ -5831,7 +5364,6 @@ msgstr "<emph>Period</emph> 指结算期间。"
msgctxt ""
"04060103.xhp\n"
"par_id3155064\n"
-"368\n"
"help.text"
msgid "<emph>Rate</emph> is the rate of depreciation."
msgstr "<emph>Rate</emph> 指折旧率。"
@@ -5848,7 +5380,6 @@ msgstr "<bookmark_value>AMORLINC 函数</bookmark_value><bookmark_value>折旧;
msgctxt ""
"04060103.xhp\n"
"hd_id3153765\n"
-"369\n"
"help.text"
msgid "AMORLINC"
msgstr "AMORLINC"
@@ -5857,7 +5388,6 @@ msgstr "AMORLINC"
msgctxt ""
"04060103.xhp\n"
"par_id3159264\n"
-"370\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_AMORLINC\">Calculates the amount of depreciation for a settlement period as linear amortization. If the capital asset is purchased during the settlement period, the proportional amount of depreciation is considered.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_AMORLINC\">计算一个结算周期内线性分摊的折旧额。如果资产在结算周期内买入,则按比例考虑部分折旧额。</ahelp>"
@@ -5866,7 +5396,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_AMORLINC\">计算一个结算周期内线性
msgctxt ""
"04060103.xhp\n"
"hd_id3150044\n"
-"371\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -5875,7 +5404,6 @@ msgstr "语法"
msgctxt ""
"04060103.xhp\n"
"par_id3147363\n"
-"372\n"
"help.text"
msgid "AMORLINC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
msgstr "AMORLINC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
@@ -5884,7 +5412,6 @@ msgstr "AMORLINC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)
msgctxt ""
"04060103.xhp\n"
"par_id3146920\n"
-"373\n"
"help.text"
msgid "<emph>Cost</emph> means the acquisition costs."
msgstr "<emph>Cost</emph> 指购买成本。"
@@ -5893,7 +5420,6 @@ msgstr "<emph>Cost</emph> 指购买成本。"
msgctxt ""
"04060103.xhp\n"
"par_id3163807\n"
-"374\n"
"help.text"
msgid "<emph>DatePurchased</emph> is the date of acquisition."
msgstr "<emph>DatePurchased</emph> 指购买日期。"
@@ -5902,7 +5428,6 @@ msgstr "<emph>DatePurchased</emph> 指购买日期。"
msgctxt ""
"04060103.xhp\n"
"par_id3148488\n"
-"375\n"
"help.text"
msgid "<emph>FirstPeriod </emph>is the end date of the first settlement period."
msgstr "<emph>FirstPeriod </emph> 指第一个结算期间的结束日期。"
@@ -5911,7 +5436,6 @@ msgstr "<emph>FirstPeriod </emph> 指第一个结算期间的结束日期。"
msgctxt ""
"04060103.xhp\n"
"par_id3149530\n"
-"376\n"
"help.text"
msgid "<emph>Salvage</emph> is the salvage value of the capital asset at the end of the depreciable life."
msgstr "<emph>Salvage</emph> 指资产在使用期限终止时的残值。"
@@ -5920,7 +5444,6 @@ msgstr "<emph>Salvage</emph> 指资产在使用期限终止时的残值。"
msgctxt ""
"04060103.xhp\n"
"par_id3148633\n"
-"377\n"
"help.text"
msgid "<emph>Period</emph> is the settlement period to be considered."
msgstr "<emph>Period</emph> 指结算期间。"
@@ -5929,7 +5452,6 @@ msgstr "<emph>Period</emph> 指结算期间。"
msgctxt ""
"04060103.xhp\n"
"par_id3150982\n"
-"378\n"
"help.text"
msgid "<emph>Rate</emph> is the rate of depreciation."
msgstr "<emph>Rate</emph> 指折旧率。"
@@ -5946,7 +5468,6 @@ msgstr "<bookmark_value>ACCRINT 函数</bookmark_value>"
msgctxt ""
"04060103.xhp\n"
"hd_id3145257\n"
-"335\n"
"help.text"
msgid "ACCRINT"
msgstr "ACCRINT"
@@ -5963,7 +5484,6 @@ msgstr "<bookmark_value>应付利息; 定期支付</bookmark_value>"
msgctxt ""
"04060103.xhp\n"
"par_id3151276\n"
-"336\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_ACCRINT\">Calculates the accrued interest of a security in the case of periodic payments.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_ACCRINT\">计算定期支付情况下的有价证券的应付利息。</ahelp>"
@@ -5972,7 +5492,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_ACCRINT\">计算定期支付情况下的有价
msgctxt ""
"04060103.xhp\n"
"hd_id3152581\n"
-"337\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -5981,67 +5500,54 @@ msgstr "语法"
msgctxt ""
"04060103.xhp\n"
"par_id3159092\n"
-"338\n"
"help.text"
msgid "ACCRINT(Issue; FirstInterest; Settlement; Rate; Par; Frequency; Basis)"
msgstr "ACCRINT(Issue; FirstInterest; Settlement; Rate; Par; Frequency; Basis)"
#: 04060103.xhp
-#, fuzzy
msgctxt ""
"04060103.xhp\n"
"par_id3150519\n"
-"339\n"
"help.text"
msgid "<emph>Issue</emph> (required) is the issue date of the security."
msgstr "<emph>Issue</emph> 指有价证券的发行日期。"
#: 04060103.xhp
-#, fuzzy
msgctxt ""
"04060103.xhp\n"
"par_id3155376\n"
-"340\n"
"help.text"
msgid "<emph>FirstInterest</emph> (required) is the first interest date of the security."
msgstr "<emph>FirstInterest</emph> 指有价证券首次支付利息的日期。"
#: 04060103.xhp
-#, fuzzy
msgctxt ""
"04060103.xhp\n"
"par_id3166431\n"
-"341\n"
"help.text"
msgid "<emph>Settlement</emph> (required) is the date at which the interest accrued up until then is to be calculated."
msgstr "<emph>Settlement</emph> 指计算到该日为止累积利息的日期。"
#: 04060103.xhp
-#, fuzzy
msgctxt ""
"04060103.xhp\n"
"par_id3154486\n"
-"342\n"
"help.text"
msgid "<emph>Rate</emph> (required) is the annual nominal rate of interest (coupon interest rate)"
msgstr "<emph>Rate</emph> 指年名义利率(息票利率)"
#: 04060103.xhp
-#, fuzzy
msgctxt ""
"04060103.xhp\n"
"par_id3156445\n"
-"343\n"
"help.text"
msgid "<emph>Par</emph> (optional) is the par value of the security."
msgstr "<emph>Par</emph> 指有价证券的面额。"
#: 04060103.xhp
-#, fuzzy
msgctxt ""
"04060103.xhp\n"
"par_id3149406\n"
-"344\n"
"help.text"
msgid "<emph>Frequency</emph> (required) is the number of interest payments per year (1, 2 or 4)."
msgstr "<emph>Frequency</emph> 指每年支付利息的次数(1、2 或 4)。"
@@ -6050,7 +5556,6 @@ msgstr "<emph>Frequency</emph> 指每年支付利息的次数(1、2 或 4)
msgctxt ""
"04060103.xhp\n"
"hd_id3148699\n"
-"345\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -6059,7 +5564,6 @@ msgstr "示例"
msgctxt ""
"04060103.xhp\n"
"par_id3148599\n"
-"346\n"
"help.text"
msgid "A security is issued on 2001-02-28. First interest is set for 2001-08-31. The settlement date is 2001-05-01. The Rate is 0.1 or 10% and Par is 1000 currency units. Interest is paid half-yearly (frequency is 2). The basis is the US method (0). How much interest has accrued?"
msgstr "一有价证券于 2001 年 2 月 28 日发行。首次支付利息的日期定在 2001 年 8 月 31 日。结算日期为 2001 年 5 月 1 日。年息票利率为 0.1 或 10%,面额为 1000 货币单位。利息每半年支付一次(年付息的次数为 2)。基数应用美国方法计算 (0)。 累积利息为多少?"
@@ -6068,7 +5572,6 @@ msgstr "一有价证券于 2001 年 2 月 28 日发行。首次支付利息的
msgctxt ""
"04060103.xhp\n"
"par_id3148840\n"
-"347\n"
"help.text"
msgid "<item type=\"input\">=ACCRINT(\"2001-02-28\";\"2001-08-31\";\"2001-05-01\";0.1;1000;2;0)</item> returns 16.94444."
msgstr "<item type=\"input\">=ACCRINT(\"2001-02-28\";\"2001-08-31\";\"2001-05-01\";0.1;1000;2;0)</item> 返回 16.94444。"
@@ -6085,7 +5588,6 @@ msgstr "<bookmark_value>ACCRINTM 函数</bookmark_value><bookmark_value>应付
msgctxt ""
"04060103.xhp\n"
"hd_id3151240\n"
-"348\n"
"help.text"
msgid "ACCRINTM"
msgstr "ACCRINTM"
@@ -6094,7 +5596,6 @@ msgstr "ACCRINTM"
msgctxt ""
"04060103.xhp\n"
"par_id3157981\n"
-"349\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_ACCRINTM\">Calculates the accrued interest of a security in the case of one-off payment at the settlement date.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_ACCRINTM\">计算在结算日期一次性支付的有价证券的应付利息。</ahelp>"
@@ -6103,7 +5604,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_ACCRINTM\">计算在结算日期一次性支
msgctxt ""
"04060103.xhp\n"
"hd_id3159097\n"
-"350\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -6112,47 +5612,38 @@ msgstr "语法"
msgctxt ""
"04060103.xhp\n"
"par_id3147074\n"
-"351\n"
"help.text"
msgid "ACCRINTM(Issue; Settlement; Rate; Par; Basis)"
msgstr "ACCRINTM(Issue; Settlement; Rate; Par; Basis)"
#: 04060103.xhp
-#, fuzzy
msgctxt ""
"04060103.xhp\n"
"par_id3144773\n"
-"352\n"
"help.text"
msgid "<emph>Issue</emph> (required) is the issue date of the security."
msgstr "<emph>Issue</emph> 指有价证券的发行日期。"
#: 04060103.xhp
-#, fuzzy
msgctxt ""
"04060103.xhp\n"
"par_id3154956\n"
-"353\n"
"help.text"
msgid "<emph>Settlement</emph> (required) is the date at which the interest accrued up until then is to be calculated."
msgstr "<emph>Settlement</emph> 指计算到该日为止累积利息的日期。"
#: 04060103.xhp
-#, fuzzy
msgctxt ""
"04060103.xhp\n"
"par_id3153972\n"
-"354\n"
"help.text"
msgid "<emph>Rate</emph> (required) is the annual nominal rate of interest (coupon interest rate)."
msgstr "<emph>Rate</emph> 指年名义利率(息票利率)。"
#: 04060103.xhp
-#, fuzzy
msgctxt ""
"04060103.xhp\n"
"par_id3159204\n"
-"355\n"
"help.text"
msgid "<emph>Par</emph> (optional) is the par value of the security."
msgstr "<emph>Par</emph> 指有价证券的面额。"
@@ -6161,7 +5652,6 @@ msgstr "<emph>Par</emph> 指有价证券的面额。"
msgctxt ""
"04060103.xhp\n"
"hd_id3155384\n"
-"356\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -6170,7 +5660,6 @@ msgstr "示例"
msgctxt ""
"04060103.xhp\n"
"par_id3154541\n"
-"357\n"
"help.text"
msgid "A security is issued on 2001-04-01. The maturity date is set for 2001-06-15. The Rate is 0.1 or 10% and Par is 1000 currency units. The basis of the daily/annual calculation is the daily balance (3). How much interest has accrued?"
msgstr "一有价证券于 1.4.2001 发行。到期日期定于 15.6.2001。利率为 0.1 或 10%,面额为 1000 个货币单位。每日/每年计算的基础是每日余额 (3)。累积的利息为多少?"
@@ -6179,7 +5668,6 @@ msgstr "一有价证券于 1.4.2001 发行。到期日期定于 15.6.2001。利
msgctxt ""
"04060103.xhp\n"
"par_id3149128\n"
-"358\n"
"help.text"
msgid "<item type=\"input\">=ACCRINTM(\"2001-04-01\";\"2001-06-15\";0.1;1000;3)</item> returns 20.54795."
msgstr "<item type=\"input\">=ACCRINTM(\"2001-04-01\";\"2001-06-15\";0.1;1000;3)</item> 返回 20.54795。"
@@ -6196,7 +5684,6 @@ msgstr "<bookmark_value>RECEIVED 函数</bookmark_value><bookmark_value>收到
msgctxt ""
"04060103.xhp\n"
"hd_id3145753\n"
-"390\n"
"help.text"
msgid "RECEIVED"
msgstr "RECEIVED"
@@ -6205,7 +5692,6 @@ msgstr "RECEIVED"
msgctxt ""
"04060103.xhp\n"
"par_id3150051\n"
-"391\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_RECEIVED\">Calculates the amount received that is paid for a fixed-interest security at a given point in time.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_RECEIVED\">计算在特定时间接收到的为固定利率有价证券支付的总金额。</ahelp>"
@@ -6214,7 +5700,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_RECEIVED\">计算在特定时间接收到的
msgctxt ""
"04060103.xhp\n"
"hd_id3149385\n"
-"392\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -6223,7 +5708,6 @@ msgstr "语法"
msgctxt ""
"04060103.xhp\n"
"par_id3145362\n"
-"393\n"
"help.text"
msgid "RECEIVED(\"Settlement\"; \"Maturity\"; Investment; Discount; Basis)"
msgstr "RECEIVED(\"Settlement\"; \"Maturity\"; Investment; Discount; Basis)"
@@ -6232,7 +5716,6 @@ msgstr "RECEIVED(\"Settlement\"; \"Maturity\"; Investment; Discount; Basis)"
msgctxt ""
"04060103.xhp\n"
"par_id3154654\n"
-"394\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr "<emph>Settlement</emph> 指有价证券的购买日期。"
@@ -6241,7 +5724,6 @@ msgstr "<emph>Settlement</emph> 指有价证券的购买日期。"
msgctxt ""
"04060103.xhp\n"
"par_id3153011\n"
-"395\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "<emph>Maturity</emph> 该有价证券的到期日(期满)。"
@@ -6250,7 +5732,6 @@ msgstr "<emph>Maturity</emph> 该有价证券的到期日(期满)。"
msgctxt ""
"04060103.xhp\n"
"par_id3155525\n"
-"396\n"
"help.text"
msgid "<emph>Investment</emph> is the purchase sum."
msgstr "<emph>Investment</emph> 指购买总量。"
@@ -6259,7 +5740,6 @@ msgstr "<emph>Investment</emph> 指购买总量。"
msgctxt ""
"04060103.xhp\n"
"par_id3155760\n"
-"397\n"
"help.text"
msgid "<emph>Discount</emph> is the percentage discount on acquisition of the security."
msgstr "<emph>Discount</emph> 指有价证券的贴现率。"
@@ -6268,7 +5748,6 @@ msgstr "<emph>Discount</emph> 指有价证券的贴现率。"
msgctxt ""
"04060103.xhp\n"
"hd_id3154710\n"
-"398\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -6277,7 +5756,6 @@ msgstr "示例"
msgctxt ""
"04060103.xhp\n"
"par_id3154735\n"
-"399\n"
"help.text"
msgid "Settlement date: February 15 1999, maturity date: May 15 1999, investment sum: 1000 currency units, discount: 5.75 per cent, basis: Daily balance/360 = 2."
msgstr "成交日:1999年2月15日,到期日期:1999年5月15日,投资额:1000个货币单位,贴现率:5.75%,基数:每日余额/360=2。"
@@ -6286,7 +5764,6 @@ msgstr "成交日:1999年2月15日,到期日期:1999年5月15日,投资
msgctxt ""
"04060103.xhp\n"
"par_id3146108\n"
-"400\n"
"help.text"
msgid "The amount received on the maturity date is calculated as follows:"
msgstr "计息日期的总支付金额计算如下:"
@@ -6295,7 +5772,6 @@ msgstr "计息日期的总支付金额计算如下:"
msgctxt ""
"04060103.xhp\n"
"par_id3147246\n"
-"401\n"
"help.text"
msgid "<item type=\"input\">=RECEIVED(\"1999-02-15\";\"1999-05-15\";1000;0.0575;2)</item> returns 1014.420266."
msgstr "<item type=\"input\">=RECEIVED(\"1999-02-15\";\"1999-05-15\";1000;0.0575;2)</item> 返回 1014.420266。"
@@ -6312,7 +5788,6 @@ msgstr "<bookmark_value>PV 函数</bookmark_value><bookmark_value>现值</bookma
msgctxt ""
"04060103.xhp\n"
"hd_id3147556\n"
-"3\n"
"help.text"
msgid "PV"
msgstr "PV"
@@ -6321,7 +5796,6 @@ msgstr "PV"
msgctxt ""
"04060103.xhp\n"
"par_id3153301\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BW\">Returns the present value of an investment resulting from a series of regular payments.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_BW\">返回一项投资在一系列定期支付后的现值。</ahelp>"
@@ -6330,7 +5804,6 @@ msgstr "<ahelp hid=\"HID_FUNC_BW\">返回一项投资在一系列定期支付后
msgctxt ""
"04060103.xhp\n"
"par_id3146099\n"
-"5\n"
"help.text"
msgid "Use this function to calculate the amount of money needed to be invested at a fixed rate today, to receive a specific amount, an annuity, over a specified number of periods. You can also determine how much money is to remain after the elapse of the period. Specify as well if the amount is to be paid out at the beginning or at the end of each period."
msgstr "借助这个函数您能够计算为了在各个周期内(周期总数确定)获得预定的分期支付金额(年金),目前必须投资的金额数值。在此您既可以指定在完成最后一次支付后还剩余的应支付金额数,又可以指定支付是在周期开始还是周期结束时到期。"
@@ -6339,7 +5812,6 @@ msgstr "借助这个函数您能够计算为了在各个周期内(周期总数
msgctxt ""
"04060103.xhp\n"
"par_id3153334\n"
-"6\n"
"help.text"
msgid "Enter these values either as numbers, expressions or references. If, for example, interest is paid annually at 8%, but you want to use month as your period, enter 8%/12 under <emph>Rate</emph> and <item type=\"productname\">%PRODUCTNAME</item> Calc with automatically calculate the correct factor."
msgstr "您既可以往参数栏内键入数字或表达式,又可以键入引用。例如:假设年利率为8%,且支付按月进行,那么请您在 <emph>rate</emph> 栏内键入 8%/12 。这样,<item type=\"productname\">%PRODUCTNAME</item> Calc 便会自动计算出利率值。"
@@ -6348,7 +5820,6 @@ msgstr "您既可以往参数栏内键入数字或表达式,又可以键入引
msgctxt ""
"04060103.xhp\n"
"hd_id3147407\n"
-"7\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -6357,7 +5828,6 @@ msgstr "语法"
msgctxt ""
"04060103.xhp\n"
"par_id3150395\n"
-"8\n"
"help.text"
msgid "PV(Rate; NPer; Pmt; FV; Type)"
msgstr "PV(Rate; NPer; Pmt; FV; Type)"
@@ -6366,7 +5836,6 @@ msgstr "PV(Rate; NPer; Pmt; FV; Type)"
msgctxt ""
"04060103.xhp\n"
"par_id3151341\n"
-"9\n"
"help.text"
msgid "<emph>Rate</emph> defines the interest rate per period."
msgstr "<emph>Rate</emph> 指定每个周期的利率。"
@@ -6375,7 +5844,6 @@ msgstr "<emph>Rate</emph> 指定每个周期的利率。"
msgctxt ""
"04060103.xhp\n"
"par_id3153023\n"
-"10\n"
"help.text"
msgid "<emph>NPer</emph> is the total number of periods (payment period)."
msgstr "<emph>NPer</emph> 是周期总数(支付周期)。"
@@ -6384,7 +5852,6 @@ msgstr "<emph>NPer</emph> 是周期总数(支付周期)。"
msgctxt ""
"04060103.xhp\n"
"par_id3146323\n"
-"11\n"
"help.text"
msgid "<emph>Pmt</emph> is the regular payment made per period."
msgstr "<emph>Pmt</emph> 指定的是在每个周期应支付的固定金额。"
@@ -6393,7 +5860,6 @@ msgstr "<emph>Pmt</emph> 指定的是在每个周期应支付的固定金额。"
msgctxt ""
"04060103.xhp\n"
"par_id3150536\n"
-"12\n"
"help.text"
msgid "<emph>FV</emph> (optional) defines the future value remaining after the final installment has been made."
msgstr "<emph>FV</emph>(可选择的)指定的完成最后一次支付后计算的未来值。"
@@ -6402,7 +5868,6 @@ msgstr "<emph>FV</emph>(可选择的)指定的完成最后一次支付后计
msgctxt ""
"04060103.xhp\n"
"par_id3146883\n"
-"13\n"
"help.text"
msgid "<emph>Type</emph> (optional) denotes due date for payments. Type = 1 means due at the beginning of a period and Type = 0 (default) means due at the end of the period."
msgstr "<emph>Type</emph>(可选择的)指定支付到期类型。Type = 1 指在周期开始时到期,Type = 0 (默认设定)指在周期结束时到期。"
@@ -6411,7 +5876,6 @@ msgstr "<emph>Type</emph>(可选择的)指定支付到期类型。Type = 1
msgctxt ""
"04060103.xhp\n"
"hd_id3150037\n"
-"14\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -6420,7 +5884,6 @@ msgstr "示例"
msgctxt ""
"04060103.xhp\n"
"par_id3145225\n"
-"15\n"
"help.text"
msgid "What is the present value of an investment, if 500 currency units are paid out monthly and the annual interest rate is 8%? The payment period is 48 months and 20,000 currency units are to remain at the end of the payment period."
msgstr "假设每月分期支付金额为 500 货币单位且年利率设定为8%,那么这项投资的现金值是多少呢?支付周期设定为 48 个月且完成最后一次支付后的剩余金额应为 20,000 货币单位。"
@@ -6429,7 +5892,6 @@ msgstr "假设每月分期支付金额为 500 货币单位且年利率设定为8
msgctxt ""
"04060103.xhp\n"
"par_id3155907\n"
-"16\n"
"help.text"
msgid "<item type=\"input\">=PV(8%/12;48;500;20000)</item> = -35,019.37 currency units. Under the named conditions, you must deposit 35,019.37 currency units today, if you want to receive 500 currency units per month for 48 months and have 20,000 currency units left over at the end. Cross-checking shows that 48 x 500 currency units + 20,000 currency units = 44,000 currency units. The difference between this amount and the 35,000 currency units deposited represents the interest paid."
msgstr "<item type=\"input\">=PV(8%/12;48;500;20000)</item> = -35,019.37 个货币单位。也就是说,要想在 48 个月期间每月获得 500 个货币单位且在完成最后一次支付后的剩余金额为 20,000 个货币单位,那么您目前必须投资 35,019.37 个货币单位。通过一个对比计算:48 x 500 个货币单位 + 20,000 个货币单位 = 44,000 个货币单位。您可以见到计算结果 44,000 个货币单位与投资金额 35,019.37 个货币单位的差额是您获得的利息。"
@@ -6438,7 +5900,6 @@ msgstr "<item type=\"input\">=PV(8%/12;48;500;20000)</item> = -35,019.37 个货
msgctxt ""
"04060103.xhp\n"
"par_id3149150\n"
-"17\n"
"help.text"
msgid "If you enter references instead of these values into the formula, you can calculate any number of \"If-then\" scenarios. Please note: references to constants must be defined as absolute references. Examples of this type of application are found under the depreciation functions."
msgstr "如果您在公式中输入引用来代替这些数值,那么您可以计算 \"If-then\" 方案中的任意数字。请注意:对常数的引用必须定义为绝对引用。这种应用类型的示例可以在折旧函数中找到。"
@@ -6455,7 +5916,6 @@ msgstr "<bookmark_value>计算; 折旧</bookmark_value><bookmark_value>SYD 函
msgctxt ""
"04060103.xhp\n"
"hd_id3152978\n"
-"19\n"
"help.text"
msgid "SYD"
msgstr "SYD"
@@ -6464,7 +5924,6 @@ msgstr "SYD"
msgctxt ""
"04060103.xhp\n"
"par_id3148732\n"
-"20\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DIA\">Returns the arithmetic-declining depreciation rate.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_DIA\">返回算术递减的折旧率。</ahelp>"
@@ -6473,7 +5932,6 @@ msgstr "<ahelp hid=\"HID_FUNC_DIA\">返回算术递减的折旧率。</ahelp>"
msgctxt ""
"04060103.xhp\n"
"par_id3149886\n"
-"21\n"
"help.text"
msgid "Use this function to calculate the depreciation amount for one period of the total depreciation span of an object. Arithmetic declining depreciation reduces the depreciation amount from period to period by a fixed sum."
msgstr "借助这个函数功能您能够计算一项资产在指定周期内的折旧额。采用数字型折旧方法时在每个周期内折旧金额的递减值是恒定的。"
@@ -6482,7 +5940,6 @@ msgstr "借助这个函数功能您能够计算一项资产在指定周期内的
msgctxt ""
"04060103.xhp\n"
"hd_id3149431\n"
-"22\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -6491,7 +5948,6 @@ msgstr "语法"
msgctxt ""
"04060103.xhp\n"
"par_id3150483\n"
-"23\n"
"help.text"
msgid "SYD(Cost; Salvage; Life; Period)"
msgstr "SYD(Cost; Salvage; Life; Period)"
@@ -6500,7 +5956,6 @@ msgstr "SYD(Cost; Salvage; Life; Period)"
msgctxt ""
"04060103.xhp\n"
"par_id3146879\n"
-"24\n"
"help.text"
msgid "<emph>Cost</emph> is the initial cost of an asset."
msgstr "<emph>Cost</emph> 是资产的购入价。"
@@ -6509,7 +5964,6 @@ msgstr "<emph>Cost</emph> 是资产的购入价。"
msgctxt ""
"04060103.xhp\n"
"par_id3147423\n"
-"25\n"
"help.text"
msgid "<emph>Salvage</emph> is the value of an asset after depreciation."
msgstr "<emph>Salvage</emph> 指的是折旧期限终止时资产的残值。"
@@ -6518,7 +5972,6 @@ msgstr "<emph>Salvage</emph> 指的是折旧期限终止时资产的残值。"
msgctxt ""
"04060103.xhp\n"
"par_id3151229\n"
-"26\n"
"help.text"
msgid "<emph>Life</emph> is the period fixing the time span over which an asset is depreciated."
msgstr "<emph>Life</emph> 指的是资产的使用寿命,即资产的折旧期限。"
@@ -6527,7 +5980,6 @@ msgstr "<emph>Life</emph> 指的是资产的使用寿命,即资产的折旧期
msgctxt ""
"04060103.xhp\n"
"par_id3147473\n"
-"27\n"
"help.text"
msgid "<emph>Period</emph> defines the period for which the depreciation is to be calculated."
msgstr "<emph>Period</emph> 指定要计算其折旧金额的周期数。"
@@ -6536,7 +5988,6 @@ msgstr "<emph>Period</emph> 指定要计算其折旧金额的周期数。"
msgctxt ""
"04060103.xhp\n"
"hd_id3148434\n"
-"28\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -6545,7 +5996,6 @@ msgstr "示例"
msgctxt ""
"04060103.xhp\n"
"par_id3149688\n"
-"29\n"
"help.text"
msgid "A video system initially costing 50,000 currency units is to be depreciated annually for the next 5 years. The salvage value is to be 10,000 currency units. You want to calculate depreciation for the first year."
msgstr "一台录象设备的购买价为¥50,000,希望以一年为一个周期在五年使用期限内进行折旧计算。折旧期限终止时资产的残值应为¥10,000。要计算的是第一年的资产折旧金额。"
@@ -6554,7 +6004,6 @@ msgstr "一台录象设备的购买价为¥50,000,希望以一年为一个周
msgctxt ""
"04060103.xhp\n"
"par_id3150900\n"
-"30\n"
"help.text"
msgid "<item type=\"input\">=SYD(50000;10000;5;1)</item>=13,333.33 currency units. The depreciation amount for the first year is 13,333.33 currency units."
msgstr "<item type=\"input\">=SYD(50000;10000;5;1)</item>=13,333.33 个货币单位。第一年的折旧金额为 13,333.33 个货币单位。"
@@ -6563,7 +6012,6 @@ msgstr "<item type=\"input\">=SYD(50000;10000;5;1)</item>=13,333.33 个货币单
msgctxt ""
"04060103.xhp\n"
"par_id3146142\n"
-"31\n"
"help.text"
msgid "To have an overview of depreciation rates per period, it is best to define a depreciation table. By entering the different depreciation formulas available in <item type=\"productname\">%PRODUCTNAME</item> Calc next to each other, you can see which depreciation form is the most appropriate. Enter the table as follows:"
msgstr "建议您制作一个资产折旧表,以便能够清楚地了解各个周期的折旧金额。如果您在此并排列出 <item type=\"productname\">%PRODUCTNAME</item> Calc 中不同的资产折旧公式,便可针对示例情况找出资产折旧的最佳方法。请如下制作表格:"
@@ -6572,7 +6020,6 @@ msgstr "建议您制作一个资产折旧表,以便能够清楚地了解各个
msgctxt ""
"04060103.xhp\n"
"par_id3155258\n"
-"32\n"
"help.text"
msgid "<emph>A</emph>"
msgstr "<emph>A</emph>"
@@ -6581,7 +6028,6 @@ msgstr "<emph>A</emph>"
msgctxt ""
"04060103.xhp\n"
"par_id3154558\n"
-"33\n"
"help.text"
msgid "<emph>B</emph>"
msgstr "<emph>B</emph>"
@@ -6590,7 +6036,6 @@ msgstr "<emph>B</emph>"
msgctxt ""
"04060103.xhp\n"
"par_id3152372\n"
-"34\n"
"help.text"
msgid "<emph>C</emph>"
msgstr "<emph>C</emph>"
@@ -6599,7 +6044,6 @@ msgstr "<emph>C</emph>"
msgctxt ""
"04060103.xhp\n"
"par_id3149949\n"
-"35\n"
"help.text"
msgid "<emph>D</emph>"
msgstr "<emph>D</emph>"
@@ -6608,7 +6052,6 @@ msgstr "<emph>D</emph>"
msgctxt ""
"04060103.xhp\n"
"par_id3145123\n"
-"36\n"
"help.text"
msgid "<emph>E</emph>"
msgstr "<emph>E</emph>"
@@ -6617,7 +6060,6 @@ msgstr "<emph>E</emph>"
msgctxt ""
"04060103.xhp\n"
"par_id3149504\n"
-"37\n"
"help.text"
msgid "1"
msgstr "1"
@@ -6626,7 +6068,6 @@ msgstr "1"
msgctxt ""
"04060103.xhp\n"
"par_id3153778\n"
-"38\n"
"help.text"
msgid "<item type=\"input\">Initial Cost</item>"
msgstr "<item type=\"input\">初始成本</item>"
@@ -6635,7 +6076,6 @@ msgstr "<item type=\"input\">初始成本</item>"
msgctxt ""
"04060103.xhp\n"
"par_id3159083\n"
-"39\n"
"help.text"
msgid "<item type=\"input\">Salvage Value</item>"
msgstr "<item type=\"input\">残值</item>"
@@ -6644,7 +6084,6 @@ msgstr "<item type=\"input\">残值</item>"
msgctxt ""
"04060103.xhp\n"
"par_id3150002\n"
-"40\n"
"help.text"
msgid "<item type=\"input\">Useful Life</item>"
msgstr "<item type=\"input\">有效期</item>"
@@ -6653,7 +6092,6 @@ msgstr "<item type=\"input\">有效期</item>"
msgctxt ""
"04060103.xhp\n"
"par_id3153006\n"
-"41\n"
"help.text"
msgid "<item type=\"input\">Time Period</item>"
msgstr "<item type=\"input\">期间</item>"
@@ -6662,7 +6100,6 @@ msgstr "<item type=\"input\">期间</item>"
msgctxt ""
"04060103.xhp\n"
"par_id3154505\n"
-"42\n"
"help.text"
msgid "<item type=\"input\">Deprec. SYD</item>"
msgstr "<item type=\"input\">折旧 SYD</item>"
@@ -6671,7 +6108,6 @@ msgstr "<item type=\"input\">折旧 SYD</item>"
msgctxt ""
"04060103.xhp\n"
"par_id3150336\n"
-"43\n"
"help.text"
msgid "2"
msgstr "2"
@@ -6680,7 +6116,6 @@ msgstr "2"
msgctxt ""
"04060103.xhp\n"
"par_id3155926\n"
-"44\n"
"help.text"
msgid "<item type=\"input\">50,000 currency units</item>"
msgstr "<item type=\"input\">50,000 个货币单位</item>"
@@ -6689,7 +6124,6 @@ msgstr "<item type=\"input\">50,000 个货币单位</item>"
msgctxt ""
"04060103.xhp\n"
"par_id3153736\n"
-"45\n"
"help.text"
msgid "<item type=\"input\">10,000 currency units</item>"
msgstr "<item type=\"input\">10,000 个货币单位</item>"
@@ -6698,7 +6132,6 @@ msgstr "<item type=\"input\">10,000 个货币单位</item>"
msgctxt ""
"04060103.xhp\n"
"par_id3150131\n"
-"46\n"
"help.text"
msgid "<item type=\"input\">5</item>"
msgstr "<item type=\"input\">5</item>"
@@ -6707,7 +6140,6 @@ msgstr "<item type=\"input\">5</item>"
msgctxt ""
"04060103.xhp\n"
"par_id3148766\n"
-"47\n"
"help.text"
msgid "<item type=\"input\">1</item>"
msgstr "<item type=\"input\">1</item>"
@@ -6716,7 +6148,6 @@ msgstr "<item type=\"input\">1</item>"
msgctxt ""
"04060103.xhp\n"
"par_id3159136\n"
-"48\n"
"help.text"
msgid "<item type=\"input\">13,333.33 currency units</item>"
msgstr "<item type=\"input\">13,333.33 个货币单位</item>"
@@ -6725,7 +6156,6 @@ msgstr "<item type=\"input\">13,333.33 个货币单位</item>"
msgctxt ""
"04060103.xhp\n"
"par_id3151018\n"
-"49\n"
"help.text"
msgid "3"
msgstr "3"
@@ -6734,7 +6164,6 @@ msgstr "3"
msgctxt ""
"04060103.xhp\n"
"par_id3148397\n"
-"50\n"
"help.text"
msgid "<item type=\"input\">2</item>"
msgstr "<item type=\"input\">2</item>"
@@ -6743,7 +6172,6 @@ msgstr "<item type=\"input\">2</item>"
msgctxt ""
"04060103.xhp\n"
"par_id3146907\n"
-"51\n"
"help.text"
msgid "<item type=\"input\">10,666.67 currency units</item>"
msgstr "<item type=\"input\">10,666.67 个货币单位</item>"
@@ -6752,7 +6180,6 @@ msgstr "<item type=\"input\">10,666.67 个货币单位</item>"
msgctxt ""
"04060103.xhp\n"
"par_id3147356\n"
-"52\n"
"help.text"
msgid "4"
msgstr "4"
@@ -6761,7 +6188,6 @@ msgstr "4"
msgctxt ""
"04060103.xhp\n"
"par_id3150267\n"
-"53\n"
"help.text"
msgid "<item type=\"input\">3</item>"
msgstr "<item type=\"input\">3</item>"
@@ -6770,7 +6196,6 @@ msgstr "<item type=\"input\">3</item>"
msgctxt ""
"04060103.xhp\n"
"par_id3145628\n"
-"54\n"
"help.text"
msgid "<item type=\"input\">8,000.00 currency units</item>"
msgstr "<item type=\"input\">8,000.00 个货币单位</item>"
@@ -6779,7 +6204,6 @@ msgstr "<item type=\"input\">8,000.00 个货币单位</item>"
msgctxt ""
"04060103.xhp\n"
"par_id3149004\n"
-"55\n"
"help.text"
msgid "5"
msgstr "5"
@@ -6788,7 +6212,6 @@ msgstr "5"
msgctxt ""
"04060103.xhp\n"
"par_id3153545\n"
-"56\n"
"help.text"
msgid "<item type=\"input\">4</item>"
msgstr "<item type=\"input\">4</item>"
@@ -6797,7 +6220,6 @@ msgstr "<item type=\"input\">4</item>"
msgctxt ""
"04060103.xhp\n"
"par_id3154634\n"
-"57\n"
"help.text"
msgid "<item type=\"input\">5,333.33 currency units</item>"
msgstr "<item type=\"input\">5,333.33 个货币单位</item>"
@@ -6806,7 +6228,6 @@ msgstr "<item type=\"input\">5,333.33 个货币单位</item>"
msgctxt ""
"04060103.xhp\n"
"par_id3147537\n"
-"58\n"
"help.text"
msgid "6"
msgstr "6"
@@ -6815,7 +6236,6 @@ msgstr "6"
msgctxt ""
"04060103.xhp\n"
"par_id3155085\n"
-"59\n"
"help.text"
msgid "<item type=\"input\">5</item>"
msgstr "<item type=\"input\">5</item>"
@@ -6824,7 +6244,6 @@ msgstr "<item type=\"input\">5</item>"
msgctxt ""
"04060103.xhp\n"
"par_id3158413\n"
-"60\n"
"help.text"
msgid "<item type=\"input\">2,666.67 currency units</item>"
msgstr "<item type=\"input\">2,666.67 个货币单位</item>"
@@ -6833,7 +6252,6 @@ msgstr "<item type=\"input\">2,666.67 个货币单位</item>"
msgctxt ""
"04060103.xhp\n"
"par_id3154866\n"
-"61\n"
"help.text"
msgid "7"
msgstr "7"
@@ -6842,7 +6260,6 @@ msgstr "7"
msgctxt ""
"04060103.xhp\n"
"par_id3155404\n"
-"62\n"
"help.text"
msgid "<item type=\"input\">6</item>"
msgstr "<item type=\"input\">6</item>"
@@ -6851,7 +6268,6 @@ msgstr "<item type=\"input\">6</item>"
msgctxt ""
"04060103.xhp\n"
"par_id3148431\n"
-"63\n"
"help.text"
msgid "<item type=\"input\">0.00 currency units</item>"
msgstr "<item type=\"input\">0.00 个货币单位</item>"
@@ -6860,7 +6276,6 @@ msgstr "<item type=\"input\">0.00 个货币单位</item>"
msgctxt ""
"04060103.xhp\n"
"par_id3156261\n"
-"64\n"
"help.text"
msgid "8"
msgstr "8"
@@ -6869,7 +6284,6 @@ msgstr "8"
msgctxt ""
"04060103.xhp\n"
"par_id3083286\n"
-"65\n"
"help.text"
msgid "<item type=\"input\">7</item>"
msgstr "<item type=\"input\">7</item>"
@@ -6878,7 +6292,6 @@ msgstr "<item type=\"input\">7</item>"
msgctxt ""
"04060103.xhp\n"
"par_id3083443\n"
-"67\n"
"help.text"
msgid "9"
msgstr "9"
@@ -6887,7 +6300,6 @@ msgstr "9"
msgctxt ""
"04060103.xhp\n"
"par_id3154815\n"
-"68\n"
"help.text"
msgid "<item type=\"input\">8</item>"
msgstr "<item type=\"input\">8</item>"
@@ -6896,7 +6308,6 @@ msgstr "<item type=\"input\">8</item>"
msgctxt ""
"04060103.xhp\n"
"par_id3145082\n"
-"70\n"
"help.text"
msgid "10"
msgstr "10"
@@ -6905,7 +6316,6 @@ msgstr "10"
msgctxt ""
"04060103.xhp\n"
"par_id3156307\n"
-"71\n"
"help.text"
msgid "<item type=\"input\">9</item>"
msgstr "<item type=\"input\">9</item>"
@@ -6914,7 +6324,6 @@ msgstr "<item type=\"input\">9</item>"
msgctxt ""
"04060103.xhp\n"
"par_id3147564\n"
-"73\n"
"help.text"
msgid "11"
msgstr "11"
@@ -6923,7 +6332,6 @@ msgstr "11"
msgctxt ""
"04060103.xhp\n"
"par_id3146856\n"
-"74\n"
"help.text"
msgid "<item type=\"input\">10</item>"
msgstr "<item type=\"input\">10</item>"
@@ -6932,7 +6340,6 @@ msgstr "<item type=\"input\">10</item>"
msgctxt ""
"04060103.xhp\n"
"par_id3150880\n"
-"76\n"
"help.text"
msgid "12"
msgstr "12"
@@ -6941,7 +6348,6 @@ msgstr "12"
msgctxt ""
"04060103.xhp\n"
"par_id3145208\n"
-"77\n"
"help.text"
msgid "13"
msgstr "13"
@@ -6950,7 +6356,6 @@ msgstr "13"
msgctxt ""
"04060103.xhp\n"
"par_id3156113\n"
-"78\n"
"help.text"
msgid "<item type=\"input\">>0</item>"
msgstr "<item type=\"input\">>0</item>"
@@ -6959,7 +6364,6 @@ msgstr "<item type=\"input\">>0</item>"
msgctxt ""
"04060103.xhp\n"
"par_id3153625\n"
-"79\n"
"help.text"
msgid "<item type=\"input\">Total</item>"
msgstr "<item type=\"input\">总数</item>"
@@ -6968,7 +6372,6 @@ msgstr "<item type=\"input\">总数</item>"
msgctxt ""
"04060103.xhp\n"
"par_id3151297\n"
-"80\n"
"help.text"
msgid "<item type=\"input\">40,000.00 currency units</item>"
msgstr "<item type=\"input\">40,000.00 个货币单位</item>"
@@ -6977,7 +6380,6 @@ msgstr "<item type=\"input\">40,000.00 个货币单位</item>"
msgctxt ""
"04060103.xhp\n"
"par_id3149979\n"
-"81\n"
"help.text"
msgid "The formula in E2 is as follows:"
msgstr "E2 中的公式为以下公式:"
@@ -6986,7 +6388,6 @@ msgstr "E2 中的公式为以下公式:"
msgctxt ""
"04060103.xhp\n"
"par_id3155849\n"
-"82\n"
"help.text"
msgid "<item type=\"input\">=SYD($A$2;$B$2;$C$2;D2)</item>"
msgstr "<item type=\"input\">=SYD($A$2;$B$2;$C$2;D2)</item>"
@@ -6995,7 +6396,6 @@ msgstr "<item type=\"input\">=SYD($A$2;$B$2;$C$2;D2)</item>"
msgctxt ""
"04060103.xhp\n"
"par_id3156124\n"
-"83\n"
"help.text"
msgid "This formula is duplicated in column E down to E11 (select E2, then drag down the lower right corner with the mouse)."
msgstr "将单元格 E2 内的公式复制到列 E 中单元格 E3 至 E11 位置(标记单元格 E2 后,鼠标往下拖拉单元格右下角的矩形)。"
@@ -7004,7 +6404,6 @@ msgstr "将单元格 E2 内的公式复制到列 E 中单元格 E3 至 E11 位
msgctxt ""
"04060103.xhp\n"
"par_id3147270\n"
-"84\n"
"help.text"
msgid "Cell E13 contains the formula used to check the total of the depreciation amounts. It uses the SUMIF function as the negative values in E8:E11 must not be considered. The condition >0 is contained in cell A13. The formula in E13 is as follows:"
msgstr "在单元格E13处的公式是用来核对折旧金额总计的。它采用的是函数SUMIF,因为单元格E8至E11之间的负值不予考虑。条件 >0 位于单元格A13处。单元格E13处的公式如下:"
@@ -7013,7 +6412,6 @@ msgstr "在单元格E13处的公式是用来核对折旧金额总计的。它采
msgctxt ""
"04060103.xhp\n"
"par_id3152811\n"
-"85\n"
"help.text"
msgid "<item type=\"input\">=SUMIF(E2:E11;A13)</item>"
msgstr "<item type=\"input\">=SUMIF(E2:E11;A13)</item>"
@@ -7022,7 +6420,6 @@ msgstr "<item type=\"input\">=SUMIF(E2:E11;A13)</item>"
msgctxt ""
"04060103.xhp\n"
"par_id3155998\n"
-"86\n"
"help.text"
msgid "Now view the depreciation for a 10 year period, or at a salvage value of 1 currency unit, or enter a different initial cost, and so on."
msgstr "您也可以设定资产折旧期限为 10 年,或者折旧期限终止时资产的残值为 1 元,或者另外设定资产的购买价等等来重新进行折旧计算。"
@@ -7039,7 +6436,6 @@ msgstr "<bookmark_value>DISC 函数</bookmark_value><bookmark_value>贴现</book
msgctxt ""
"04060103.xhp\n"
"hd_id3155104\n"
-"379\n"
"help.text"
msgid "DISC"
msgstr "DISC"
@@ -7048,7 +6444,6 @@ msgstr "DISC"
msgctxt ""
"04060103.xhp\n"
"par_id3153891\n"
-"380\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_DISC\">Calculates the allowance (discount) of a security as a percentage.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_DISC\">计算有价证券的贴现(折扣)百分比。</ahelp>"
@@ -7057,7 +6452,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_DISC\">计算有价证券的贴现(折扣)
msgctxt ""
"04060103.xhp\n"
"hd_id3153982\n"
-"381\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -7066,7 +6460,6 @@ msgstr "语法"
msgctxt ""
"04060103.xhp\n"
"par_id3149756\n"
-"382\n"
"help.text"
msgid "DISC(\"Settlement\"; \"Maturity\"; Price; Redemption; Basis)"
msgstr "DISC(\"Settlement\"; \"Maturity\"; Price; Redemption; Basis)"
@@ -7075,7 +6468,6 @@ msgstr "DISC(\"Settlement\"; \"Maturity\"; Price; Redemption; Basis)"
msgctxt ""
"04060103.xhp\n"
"par_id3156014\n"
-"383\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr "<emph>Settlement</emph> 指有价证券的购买日期。"
@@ -7084,7 +6476,6 @@ msgstr "<emph>Settlement</emph> 指有价证券的购买日期。"
msgctxt ""
"04060103.xhp\n"
"par_id3154304\n"
-"384\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "<emph>Maturity</emph> 该有价证券的到期日(期满)。"
@@ -7093,7 +6484,6 @@ msgstr "<emph>Maturity</emph> 该有价证券的到期日(期满)。"
msgctxt ""
"04060103.xhp\n"
"par_id3159180\n"
-"385\n"
"help.text"
msgid "<emph>Price</emph> is the price of the security per 100 currency units of par value."
msgstr "<emph>Price</emph> 面额为 100 个货币单位的有价证券的实际价格。"
@@ -7102,7 +6492,6 @@ msgstr "<emph>Price</emph> 面额为 100 个货币单位的有价证券的实际
msgctxt ""
"04060103.xhp\n"
"par_id3147253\n"
-"386\n"
"help.text"
msgid "<emph>Redemption</emph> is the redemption value of the security per 100 currency units of par value."
msgstr "<emph>Redemption</emph> 面额为 100 个货币单位的有价证券的赎回价格。"
@@ -7111,7 +6500,6 @@ msgstr "<emph>Redemption</emph> 面额为 100 个货币单位的有价证券的
msgctxt ""
"04060103.xhp\n"
"hd_id3151174\n"
-"387\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -7120,7 +6508,6 @@ msgstr "示例"
msgctxt ""
"04060103.xhp\n"
"par_id3155902\n"
-"388\n"
"help.text"
msgid "A security is purchased on 2001-01-25; the maturity date is 2001-11-15. The price (purchase price) is 97, the redemption value is 100. Using daily balance calculation (basis 3) how high is the settlement (discount)?"
msgstr "一有价证券购于 25.1.2001;到期日期为 15.11.2001。购买价格为 97,偿还价格为 100。使用每日余额计算 (basis 3),则贴现率为多高?"
@@ -7129,7 +6516,6 @@ msgstr "一有价证券购于 25.1.2001;到期日期为 15.11.2001。购买价
msgctxt ""
"04060103.xhp\n"
"par_id3152797\n"
-"389\n"
"help.text"
msgid "<item type=\"input\">=DISC(\"2001-01-25\";\"2001-11-15\";97;100;3)</item> returns about 0.0372 or 3.72 per cent."
msgstr "<item type=\"input\">=DISC(\"2001-01-25\";\"2001-11-15\";97;100;3)</item> 返回近似值 0.0372 或 3.72%。"
@@ -7146,7 +6532,6 @@ msgstr "<bookmark_value>DURATION_ADD 函数</bookmark_value><bookmark_value>Micr
msgctxt ""
"04060103.xhp\n"
"hd_id3154695\n"
-"402\n"
"help.text"
msgid "DURATION_ADD"
msgstr "DURATION_ADD"
@@ -7155,7 +6540,6 @@ msgstr "DURATION_ADD"
msgctxt ""
"04060103.xhp\n"
"par_id3145768\n"
-"403\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_DURATION\">Calculates the duration of a fixed interest security in years.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_DURATION\">计算固定利率的有价证券的年周期。</ahelp>"
@@ -7164,7 +6548,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_DURATION\">计算固定利率的有价证券
msgctxt ""
"04060103.xhp\n"
"hd_id3153904\n"
-"404\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -7173,7 +6556,6 @@ msgstr "语法"
msgctxt ""
"04060103.xhp\n"
"par_id3153373\n"
-"405\n"
"help.text"
msgid "DURATION_ADD(\"Settlement\"; \"Maturity\"; Coupon; Yield; Frequency; Basis)"
msgstr "DURATION_ADD(\"Settlement\"; \"Maturity\"; Coupon; Yield; Frequency; Basis)"
@@ -7182,7 +6564,6 @@ msgstr "DURATION_ADD(\"Settlement\"; \"Maturity\"; Coupon; Yield; Frequency; Bas
msgctxt ""
"04060103.xhp\n"
"par_id3155397\n"
-"406\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr "<emph>Settlement</emph> 指有价证券的购买日期。"
@@ -7191,7 +6572,6 @@ msgstr "<emph>Settlement</emph> 指有价证券的购买日期。"
msgctxt ""
"04060103.xhp\n"
"par_id3148558\n"
-"407\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "<emph>Maturity</emph> 该有价证券的到期日(期满)。"
@@ -7200,7 +6580,6 @@ msgstr "<emph>Maturity</emph> 该有价证券的到期日(期满)。"
msgctxt ""
"04060103.xhp\n"
"par_id3153096\n"
-"408\n"
"help.text"
msgid "<emph>Coupon</emph> is the annual coupon interest rate (nominal rate of interest)"
msgstr "<emph>Coupon</emph> 年息票利率(名义利率)"
@@ -7209,7 +6588,6 @@ msgstr "<emph>Coupon</emph> 年息票利率(名义利率)"
msgctxt ""
"04060103.xhp\n"
"par_id3154594\n"
-"409\n"
"help.text"
msgid "<emph>Yield</emph> is the annual yield of the security."
msgstr "<emph>Yield</emph> 有价证券的年收益率。"
@@ -7218,7 +6596,6 @@ msgstr "<emph>Yield</emph> 有价证券的年收益率。"
msgctxt ""
"04060103.xhp\n"
"par_id3149906\n"
-"410\n"
"help.text"
msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
msgstr "<emph>Frequency</emph> 指每年支付利息的次数(1、2 或 4)。"
@@ -7227,7 +6604,6 @@ msgstr "<emph>Frequency</emph> 指每年支付利息的次数(1、2 或 4)
msgctxt ""
"04060103.xhp\n"
"hd_id3146995\n"
-"411\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -7236,7 +6612,6 @@ msgstr "示例"
msgctxt ""
"04060103.xhp\n"
"par_id3148834\n"
-"412\n"
"help.text"
msgid "A security is purchased on 2001-01-01; the maturity date is 2006-01-01. The Coupon rate of interest is 8%. The yield is 9.0%. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how long is the duration?"
msgstr "一有价证券于 2001 年 1 月 1 日买入;有效期截止到 2006 年 1 月 1 日。年息票利率为 8%。年收益率为 9.0%。利息每半年支付一次(年付息的次数为 2)。如果使用日余额利息(基数为 3)计算,修正后周期为多长?"
@@ -7245,7 +6620,6 @@ msgstr "一有价证券于 2001 年 1 月 1 日买入;有效期截止到 2006
msgctxt ""
"04060103.xhp\n"
"par_id3154902\n"
-"413\n"
"help.text"
msgid "<item type=\"input\">=DURATION_ADD(\"2001-01-01\";\"2006-01-01\";0.08;0.09;2;3)</item>"
msgstr "<item type=\"input\">=DURATION_ADD(\"2001-01-01\";\"2006-01-01\";0.08;0.09;2;3)</item>"
@@ -7262,7 +6636,6 @@ msgstr "<bookmark_value>年净利率</bookmark_value><bookmark_value>计算; 年
msgctxt ""
"04060103.xhp\n"
"hd_id3159147\n"
-"88\n"
"help.text"
msgid "EFFECTIVE"
msgstr "EFFECTIVE"
@@ -7271,7 +6644,6 @@ msgstr "EFFECTIVE"
msgctxt ""
"04060103.xhp\n"
"par_id3154204\n"
-"89\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_EFFEKTIV\">Returns the net annual interest rate for a nominal interest rate.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_EFFEKTIV\">返回名义利率的净年利率。</ahelp>"
@@ -7280,7 +6652,6 @@ msgstr "<ahelp hid=\"HID_FUNC_EFFEKTIV\">返回名义利率的净年利率。</a
msgctxt ""
"04060103.xhp\n"
"par_id3145417\n"
-"90\n"
"help.text"
msgid "Nominal interest refers to the amount of interest due at the end of a calculation period. Effective interest increases with the number of payments made. In other words, interest is often paid in installments (for example, monthly or quarterly) before the end of the calculation period."
msgstr "由于名义利率涉及的是在计算期限结束时到期的利率。而利率通常以月利率,季度利率等等计算且在计算期限结束之前分别到期。也就是说,利率通常是应该预支付的。这样实际利率便会随分期支付利率次数的增加而变化。"
@@ -7289,7 +6660,6 @@ msgstr "由于名义利率涉及的是在计算期限结束时到期的利率。
msgctxt ""
"04060103.xhp\n"
"hd_id3150510\n"
-"91\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -7298,7 +6668,6 @@ msgstr "语法"
msgctxt ""
"04060103.xhp\n"
"par_id3148805\n"
-"92\n"
"help.text"
msgid "EFFECTIVE(Nom; P)"
msgstr "EFFECTIVE(Nom; P)"
@@ -7307,7 +6676,6 @@ msgstr "EFFECTIVE(Nom; P)"
msgctxt ""
"04060103.xhp\n"
"par_id3149768\n"
-"93\n"
"help.text"
msgid "<emph>Nom</emph> is the nominal interest."
msgstr "<emph>Nom</emph> 是名义利率。"
@@ -7316,7 +6684,6 @@ msgstr "<emph>Nom</emph> 是名义利率。"
msgctxt ""
"04060103.xhp\n"
"par_id3149334\n"
-"94\n"
"help.text"
msgid "<emph>P</emph> is the number of interest payment periods per year."
msgstr "<emph>P</emph> 指定的是每年支付利息的次数。"
@@ -7325,7 +6692,6 @@ msgstr "<emph>P</emph> 指定的是每年支付利息的次数。"
msgctxt ""
"04060103.xhp\n"
"hd_id3154223\n"
-"95\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -7334,7 +6700,6 @@ msgstr "示例"
msgctxt ""
"04060103.xhp\n"
"par_id3144499\n"
-"96\n"
"help.text"
msgid "If the annual nominal interest rate is 9.75% and four interest calculation periods are defined, what is the actual interest rate (effective rate)?"
msgstr "假设年名义利率为9.75%,且每年支付利息的次数设定为4次,那么实际利率应该是多少呢?"
@@ -7343,7 +6708,6 @@ msgstr "假设年名义利率为9.75%,且每年支付利息的次数设定为4
msgctxt ""
"04060103.xhp\n"
"par_id3150772\n"
-"97\n"
"help.text"
msgid "<item type=\"input\">=EFFECTIVE(9.75%;4)</item> = 10.11% The annual effective rate is therefore 10.11%."
msgstr "<item type=\"input\">=EFFECTIVE(9.75%;4)</item> = 10.11% 也就是说,年实际利率为 10.11%。"
@@ -7360,7 +6724,6 @@ msgstr "<bookmark_value>有效利率</bookmark_value><bookmark_value>EFFECT_ADD
msgctxt ""
"04060103.xhp\n"
"hd_id3147241\n"
-"414\n"
"help.text"
msgid "EFFECT_ADD"
msgstr "EFFECT_ADD"
@@ -7369,7 +6732,6 @@ msgstr "EFFECT_ADD"
msgctxt ""
"04060103.xhp\n"
"par_id3147524\n"
-"415\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_EFFECT\">Calculates the effective annual rate of interest on the basis of the nominal interest rate and the number of interest payments per annum.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_EFFECT\">根据名义年利率和年付息次数计算实际年利率。</ahelp>"
@@ -7378,7 +6740,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_EFFECT\">根据名义年利率和年付息次
msgctxt ""
"04060103.xhp\n"
"hd_id3155364\n"
-"416\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -7387,7 +6748,6 @@ msgstr "语法"
msgctxt ""
"04060103.xhp\n"
"par_id3155118\n"
-"417\n"
"help.text"
msgid "EFFECT_ADD(NominalRate; NPerY)"
msgstr "EFFECT_ADD(NominalRate; NPerY)"
@@ -7396,7 +6756,6 @@ msgstr "EFFECT_ADD(NominalRate; NPerY)"
msgctxt ""
"04060103.xhp\n"
"par_id3148907\n"
-"418\n"
"help.text"
msgid "<emph>NominalRate</emph> is the annual nominal rate of interest."
msgstr "<emph>NominalRate</emph> 年名义利率。"
@@ -7405,7 +6764,6 @@ msgstr "<emph>NominalRate</emph> 年名义利率。"
msgctxt ""
"04060103.xhp\n"
"par_id3154274\n"
-"419\n"
"help.text"
msgid "<emph>NPerY </emph>is the number of interest payments per year."
msgstr "<emph>NPerY</emph> 是每年支付利息的次数。"
@@ -7414,7 +6772,6 @@ msgstr "<emph>NPerY</emph> 是每年支付利息的次数。"
msgctxt ""
"04060103.xhp\n"
"hd_id3149156\n"
-"420\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -7423,7 +6780,6 @@ msgstr "示例"
msgctxt ""
"04060103.xhp\n"
"par_id3158426\n"
-"421\n"
"help.text"
msgid "What is the effective annual rate of interest for a 5.25% nominal rate and quarterly payment."
msgstr "名义利率为 5.25%,且每季度支付,实际年利率为多少?"
@@ -7432,7 +6788,6 @@ msgstr "名义利率为 5.25%,且每季度支付,实际年利率为多少?
msgctxt ""
"04060103.xhp\n"
"par_id3148927\n"
-"422\n"
"help.text"
msgid "<item type=\"input\">=EFFECT_ADD(0.0525;4)</item> returns 0.053543 or 5.3543%."
msgstr "<item type=\"input\">=EFFECT_ADD(0.0525;4)</item> 返回 0.053543 或 5.3534%。"
@@ -7449,7 +6804,6 @@ msgstr "<bookmark_value>计算; 算术递减折旧</bookmark_value><bookmark_val
msgctxt ""
"04060103.xhp\n"
"hd_id3149998\n"
-"99\n"
"help.text"
msgid "DDB"
msgstr "DDB"
@@ -7458,7 +6812,6 @@ msgstr "DDB"
msgctxt ""
"04060103.xhp\n"
"par_id3159190\n"
-"100\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GDA\">Returns the depreciation of an asset for a specified period using the arithmetic-declining method.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GDA\">使用算术递减法,计算指定期限内资产的折旧额。</ahelp>"
@@ -7467,7 +6820,6 @@ msgstr "<ahelp hid=\"HID_FUNC_GDA\">使用算术递减法,计算指定期限
msgctxt ""
"04060103.xhp\n"
"par_id3152361\n"
-"101\n"
"help.text"
msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
msgstr "如果希望获得比线性折旧法高的初始折旧额,请采用这种资产折旧方式。采用此折旧方式时,折旧金额按折旧周期依次递减,这种方式通常用于在使用初期价值损失非常快的资产(例如汽车、计算机)。值得注意的是,采用这种折旧方式计算的帐面价值永远不可能为零。"
@@ -7476,7 +6828,6 @@ msgstr "如果希望获得比线性折旧法高的初始折旧额,请采用这
msgctxt ""
"04060103.xhp\n"
"hd_id3156038\n"
-"102\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -7485,7 +6836,6 @@ msgstr "语法"
msgctxt ""
"04060103.xhp\n"
"par_id3166452\n"
-"103\n"
"help.text"
msgid "DDB(Cost; Salvage; Life; Period; Factor)"
msgstr "DDB(Cost; Salvage; Life; Period; Factor)"
@@ -7494,7 +6844,6 @@ msgstr "DDB(Cost; Salvage; Life; Period; Factor)"
msgctxt ""
"04060103.xhp\n"
"par_id3153237\n"
-"104\n"
"help.text"
msgid "<emph>Cost</emph> fixes the initial cost of an asset."
msgstr "<emph>Cost</emph> 处输入的是资产的购入价。"
@@ -7503,7 +6852,6 @@ msgstr "<emph>Cost</emph> 处输入的是资产的购入价。"
msgctxt ""
"04060103.xhp\n"
"par_id3149787\n"
-"105\n"
"help.text"
msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
msgstr "<emph>Salvage</emph> 栏位输入的是资产在使用期限终止时的残值。"
@@ -7512,7 +6860,6 @@ msgstr "<emph>Salvage</emph> 栏位输入的是资产在使用期限终止时的
msgctxt ""
"04060103.xhp\n"
"par_id3152945\n"
-"106\n"
"help.text"
msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
msgstr "<emph>Life</emph> 定义资产使用的时间长度(如年或月)。"
@@ -7521,7 +6868,6 @@ msgstr "<emph>Life</emph> 定义资产使用的时间长度(如年或月)。
msgctxt ""
"04060103.xhp\n"
"par_id3149736\n"
-"107\n"
"help.text"
msgid "<emph>Period</emph> states the period for which the value is to be calculated."
msgstr "<emph>Period</emph> 表示计算该值的周期。"
@@ -7530,7 +6876,6 @@ msgstr "<emph>Period</emph> 表示计算该值的周期。"
msgctxt ""
"04060103.xhp\n"
"par_id3150243\n"
-"108\n"
"help.text"
msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
msgstr "<emph>Factor</emph>(可选择的)是一个用于折旧计算的余额递减因子。若省略这个参数,程序便会采用默认设定,即 factor = 2。"
@@ -7539,7 +6884,6 @@ msgstr "<emph>Factor</emph>(可选择的)是一个用于折旧计算的余
msgctxt ""
"04060103.xhp\n"
"hd_id3159274\n"
-"109\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -7548,7 +6892,6 @@ msgstr "示例"
msgctxt ""
"04060103.xhp\n"
"par_id3152882\n"
-"110\n"
"help.text"
msgid "A computer system with an initial cost of 75,000 currency units is to be depreciated monthly over 5 years. The value at the end of the depreciation is to be 1 currency unit. The factor is 2."
msgstr "初始成本为 75,000 个货币单位的计算机系统在 5 年内按月折旧。折旧后的最终价值为 1 个货币单位。系数为 2。"
@@ -7557,7 +6900,6 @@ msgstr "初始成本为 75,000 个货币单位的计算机系统在 5 年内按
msgctxt ""
"04060103.xhp\n"
"par_id3154106\n"
-"111\n"
"help.text"
msgid "<item type=\"input\">=DDB(75000;1;60;12;2) </item>= 1,721.81 currency units. Therefore, the double-declining depreciation in the twelfth month after purchase is 1,721.81 currency units."
msgstr "<item type=\"input\">=DDB(75000;1;60;12;2) </item>= 1,721.81 个货币单位。因此,在购买后第一个月,双倍递减折旧后为 1,721.81 个货币单位。"
@@ -7574,7 +6916,6 @@ msgstr "<bookmark_value>计算; 几何递减折旧</bookmark_value><bookmark_val
msgctxt ""
"04060103.xhp\n"
"hd_id3149962\n"
-"113\n"
"help.text"
msgid "DB"
msgstr "DB"
@@ -7583,7 +6924,6 @@ msgstr "DB"
msgctxt ""
"04060103.xhp\n"
"par_id3148989\n"
-"114\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GDA2\">Returns the depreciation of an asset for a specified period using the fixed-declining balance method.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GDA2\">返回采用固定余额递减法计算的某项资产在给定期间的折旧额。</ahelp>"
@@ -7592,7 +6932,6 @@ msgstr "<ahelp hid=\"HID_FUNC_GDA2\">返回采用固定余额递减法计算的
msgctxt ""
"04060103.xhp\n"
"par_id3156213\n"
-"115\n"
"help.text"
msgid "This form of depreciation is used if you want to get a higher depreciation value at the beginning of the depreciation (as opposed to linear depreciation). The depreciation value is reduced with every depreciation period by the depreciation already deducted from the initial cost."
msgstr "与直线法不同,固定余额递减法在开始期间的折旧额更高,并在折旧期间内依次递减。"
@@ -7601,7 +6940,6 @@ msgstr "与直线法不同,固定余额递减法在开始期间的折旧额更
msgctxt ""
"04060103.xhp\n"
"hd_id3149807\n"
-"116\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -7610,7 +6948,6 @@ msgstr "语法"
msgctxt ""
"04060103.xhp\n"
"par_id3153349\n"
-"117\n"
"help.text"
msgid "DB(Cost; Salvage; Life; Period; Month)"
msgstr "DB(成本; 残值; 折旧期限; 期间; 首年月数)"
@@ -7619,7 +6956,6 @@ msgstr "DB(成本; 残值; 折旧期限; 期间; 首年月数)"
msgctxt ""
"04060103.xhp\n"
"par_id3148462\n"
-"118\n"
"help.text"
msgid "<emph>Cost</emph> is the initial cost of an asset."
msgstr "<emph>成本</emph> 是指资产的初始成本。"
@@ -7628,7 +6964,6 @@ msgstr "<emph>成本</emph> 是指资产的初始成本。"
msgctxt ""
"04060103.xhp\n"
"par_id3148658\n"
-"119\n"
"help.text"
msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
msgstr "<emph>残值</emph> 是指资产使用寿命终止时的剩余价值。"
@@ -7637,7 +6972,6 @@ msgstr "<emph>残值</emph> 是指资产使用寿命终止时的剩余价值。"
msgctxt ""
"04060103.xhp\n"
"par_id3145371\n"
-"120\n"
"help.text"
msgid "<emph>Life</emph> defines the period over which an asset is depreciated."
msgstr "<emph>折旧期限</emph> 定义资产将要被折旧的期间。"
@@ -7646,7 +6980,6 @@ msgstr "<emph>折旧期限</emph> 定义资产将要被折旧的期间。"
msgctxt ""
"04060103.xhp\n"
"par_id3154608\n"
-"121\n"
"help.text"
msgid "<emph>Period</emph> is the length of each period. The length must be entered in the same date unit as the depreciation period."
msgstr "<emph>期间</emph> 是每个期间的长度。该长度必须输入与折旧周期相同的时间单位。"
@@ -7655,7 +6988,6 @@ msgstr "<emph>期间</emph> 是每个期间的长度。该长度必须输入与
msgctxt ""
"04060103.xhp\n"
"par_id3150829\n"
-"122\n"
"help.text"
msgid "<emph>Month</emph> (optional) denotes the number of months for the first year of depreciation. If an entry is not defined, 12 is used as the default."
msgstr "<emph>首年月数</emph>(可选)折旧计算时首年的月份数。若省略,则使用默认值,即 首年月数 = 12。"
@@ -7664,7 +6996,6 @@ msgstr "<emph>首年月数</emph>(可选)折旧计算时首年的月份数
msgctxt ""
"04060103.xhp\n"
"hd_id3151130\n"
-"123\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -7673,7 +7004,6 @@ msgstr "示例"
msgctxt ""
"04060103.xhp\n"
"par_id3156147\n"
-"124\n"
"help.text"
msgid "A computer system with an initial cost of 25,000 currency units is to be depreciated over a three year period. The salvage value is to be 1,000 currency units. One period is 30 days."
msgstr "初始成本为25,000的计算机,折旧期限为三年,残值为1,000,每个期间为30天。"
@@ -7682,7 +7012,6 @@ msgstr "初始成本为25,000的计算机,折旧期限为三年,残值为1,0
msgctxt ""
"04060103.xhp\n"
"par_id3149513\n"
-"125\n"
"help.text"
msgid "<item type=\"input\">=DB(25000;1000;36;1;6)</item> = 1,075.00 currency units"
msgstr "<item type=\"input\">=DB(25000;1000;36;1;6)</item> = 1,075.00"
@@ -7691,7 +7020,6 @@ msgstr "<item type=\"input\">=DB(25000;1000;36;1;6)</item> = 1,075.00"
msgctxt ""
"04060103.xhp\n"
"par_id3159242\n"
-"126\n"
"help.text"
msgid "The fixed-declining depreciation of the computer system is 1,075.00 currency units."
msgstr "该计算机的固定余额递减折额为1,075.00 ."
@@ -7708,7 +7036,6 @@ msgstr "<bookmark_value>IRR 函数</bookmark_value><bookmark_value>计算; 内
msgctxt ""
"04060103.xhp\n"
"hd_id3153948\n"
-"128\n"
"help.text"
msgid "IRR"
msgstr "IRR"
@@ -7717,7 +7044,6 @@ msgstr "IRR"
msgctxt ""
"04060103.xhp\n"
"par_id3143282\n"
-"129\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_IKV\">Calculates the internal rate of return for an investment.</ahelp> The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
msgstr "<ahelp hid=\"HID_FUNC_IKV\">计算投资回报的内部收益率。</ahelp>这些数值表示一段时间内的现金流金额,其中至少有一个数值必须为负(支出),至少有一个数值必须为正(收入)。"
@@ -7734,7 +7060,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"hd_id3150599\n"
-"130\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -7743,7 +7068,6 @@ msgstr "语法"
msgctxt ""
"04060103.xhp\n"
"par_id3155427\n"
-"131\n"
"help.text"
msgid "IRR(Values; Guess)"
msgstr "IRR(Values; Guess)"
@@ -7752,7 +7076,6 @@ msgstr "IRR(Values; Guess)"
msgctxt ""
"04060103.xhp\n"
"par_id3144758\n"
-"132\n"
"help.text"
msgid "<emph>Values</emph> represents an array containing the values."
msgstr "<emph>Values</emph> 代表含有数值的数组。"
@@ -7761,7 +7084,6 @@ msgstr "<emph>Values</emph> 代表含有数值的数组。"
msgctxt ""
"04060103.xhp\n"
"par_id3149233\n"
-"133\n"
"help.text"
msgid "<emph>Guess</emph> (optional) is the estimated value. An iterative method is used to calculate the internal rate of return. If you can provide only few values, you should provide an initial guess to enable the iteration."
msgstr "<emph>Guess</emph>(可选择的)是估计值。使用迭代的方法计算回报的内部收益率。如果只能提供少量数值,则应该提供一个初始估计值以启用迭代。"
@@ -7770,7 +7092,6 @@ msgstr "<emph>Guess</emph>(可选择的)是估计值。使用迭代的方法
msgctxt ""
"04060103.xhp\n"
"hd_id3151258\n"
-"134\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -7779,7 +7100,6 @@ msgstr "示例"
msgctxt ""
"04060103.xhp\n"
"par_id3150630\n"
-"135\n"
"help.text"
msgid "Under the assumption that cell contents are A1=<item type=\"input\">-10000</item>, A2=<item type=\"input\">3500</item>, A3=<item type=\"input\">7600</item> and A4=<item type=\"input\">1000</item>, the formula <item type=\"input\">=IRR(A1:A4)</item> gives a result of 11,33%."
msgstr "假设单元格内容是 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>,公式 <item type=\"input\">=IRR(A1:A4)</item> 的结果为 11,33%。"
@@ -7796,7 +7116,6 @@ msgstr "<bookmark_value>计算; 分期偿还恒定时的利率</bookmark_value><
msgctxt ""
"04060103.xhp\n"
"hd_id3151012\n"
-"314\n"
"help.text"
msgid "ISPMT"
msgstr "ISPMT"
@@ -7805,7 +7124,6 @@ msgstr "ISPMT"
msgctxt ""
"04060103.xhp\n"
"par_id3148693\n"
-"315\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ISPMT\">Calculates the level of interest for unchanged amortization installments.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_ISPMT\">计算分期偿还额恒定时的利率。</ahelp>"
@@ -7814,7 +7132,6 @@ msgstr "<ahelp hid=\"HID_FUNC_ISPMT\">计算分期偿还额恒定时的利率。
msgctxt ""
"04060103.xhp\n"
"hd_id3154661\n"
-"316\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -7823,7 +7140,6 @@ msgstr "语法"
msgctxt ""
"04060103.xhp\n"
"par_id3146070\n"
-"317\n"
"help.text"
msgid "ISPMT(Rate; Period; TotalPeriods; Invest)"
msgstr "ISPMT(Rate; Period; TotalPeriods; Invest)"
@@ -7832,7 +7148,6 @@ msgstr "ISPMT(Rate; Period; TotalPeriods; Invest)"
msgctxt ""
"04060103.xhp\n"
"par_id3148672\n"
-"318\n"
"help.text"
msgid "<emph>Rate</emph> sets the periodic interest rate."
msgstr "<emph>Rate</emph> 指定每个周期的利率。"
@@ -7841,7 +7156,6 @@ msgstr "<emph>Rate</emph> 指定每个周期的利率。"
msgctxt ""
"04060103.xhp\n"
"par_id3145777\n"
-"319\n"
"help.text"
msgid "<emph>Period</emph> is the number of installments for calculation of interest."
msgstr "<emph>Period</emph> 是用于计算利息的分期付款周期。"
@@ -7850,7 +7164,6 @@ msgstr "<emph>Period</emph> 是用于计算利息的分期付款周期。"
msgctxt ""
"04060103.xhp\n"
"par_id3153678\n"
-"320\n"
"help.text"
msgid "<emph>TotalPeriods</emph> is the total number of installment periods."
msgstr "<emph>TotalPeriods</emph> 是分期付款周期的总数。"
@@ -7859,7 +7172,6 @@ msgstr "<emph>TotalPeriods</emph> 是分期付款周期的总数。"
msgctxt ""
"04060103.xhp\n"
"par_id3159390\n"
-"321\n"
"help.text"
msgid "<emph>Invest</emph> is the amount of the investment."
msgstr "<emph>Invest</emph> 是一项投资的金额。"
@@ -7868,7 +7180,6 @@ msgstr "<emph>Invest</emph> 是一项投资的金额。"
msgctxt ""
"04060103.xhp\n"
"hd_id3156162\n"
-"322\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -7877,7 +7188,6 @@ msgstr "示例"
msgctxt ""
"04060103.xhp\n"
"par_id3149558\n"
-"323\n"
"help.text"
msgid "For a credit amount of 120,000 currency units with a two-year term and monthly installments, at a yearly interest rate of 12% the level of interest after 1.5 years is required."
msgstr "一笔按月偿还的总额为 120,000 货币单位的贷款,偿还期限为两年,计算利率为 12% 时 1.5 年后的利息总额。"
@@ -7886,7 +7196,6 @@ msgstr "一笔按月偿还的总额为 120,000 货币单位的贷款,偿还期
msgctxt ""
"04060103.xhp\n"
"par_id3150949\n"
-"324\n"
"help.text"
msgid "<item type=\"input\">=ISPMT(1%;18;24;120000)</item> = -300 currency units. The monthly interest after 1.5 years amounts to 300 currency units."
msgstr "<item type=\"input\">=ISPMT(1%;18;24;120000)</item> = -300 个货币单位。1.5 年后每月利息总额为 300 个货币单位。"
@@ -7895,7 +7204,6 @@ msgstr "<item type=\"input\">=ISPMT(1%;18;24;120000)</item> = -300 个货币单
msgctxt ""
"04060103.xhp\n"
"par_id3146812\n"
-"426\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060119.xhp\" name=\"Forward to Financial Functions Part Two\">Financial Functions Part Two</link>"
msgstr "<link href=\"text/scalc/01/04060119.xhp\" name=\"Forward to Financial Functions Part Two\">转至财务函数第二部分</link>"
@@ -7904,7 +7212,6 @@ msgstr "<link href=\"text/scalc/01/04060119.xhp\" name=\"Forward to Financial Fu
msgctxt ""
"04060103.xhp\n"
"par_id3154411\n"
-"427\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Financial Functions Part Three</link>"
msgstr "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">转至财务函数第三部分</link>"
@@ -7918,7 +7225,6 @@ msgid "Information Functions"
msgstr "信息函数"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id3147247\n"
@@ -7935,7 +7241,6 @@ msgid "Information Functions"
msgstr "信息函数"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"par_id3147499\n"
@@ -8432,7 +7737,6 @@ msgid "The example returns choochoo."
msgstr "该示例返回 choochoo。"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id3150688\n"
@@ -8513,7 +7817,6 @@ msgid "<item type=\"input\">=FORMULA(A8)</item> returns the text =SUM(1;2;3)."
msgstr "<item type=\"input\">=FORMULA(A8)</item> 返回文本 =SUM(1;2;3)。"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id3155409\n"
@@ -8610,7 +7913,6 @@ msgid "<item type=\"input\">=ISREF(ADDRESS(1; 1; 2;\"Sheet2\"))</item> returns F
msgstr "<item type=\"input\">=ISREF(ADDRESS(1; 1; 2;\"Sheet2\"))</item> 返回 FALSE,因为 ADDRESS 是返回文本的函数,尽管它看起来像引用。"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id3154812\n"
@@ -8683,7 +7985,6 @@ msgid "<item type=\"input\">=ISERR(C9)</item> where cell C9 contains <item type=
msgstr "<item type=\"input\">=ISERR(C9)</item> 返回 FALSE,其中单元格 C9 包含 <item type=\"input\">=NA()</item>,因为 ISERR() 忽略 #N/A 错误。"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id3147081\n"
@@ -8756,7 +8057,6 @@ msgid "<item type=\"input\">=ISERROR(C9)</item> where cell C9 contains <item typ
msgstr "<item type=\"input\">=ISERROR(C9)</item> 返回 TRUE,其中单元格 C9 包含 <item type=\"input\">=NA()</item>。"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id31470811\n"
@@ -8765,7 +8065,6 @@ msgid "<bookmark_value>IFERROR function</bookmark_value> <bookmark_value>testin
msgstr "<bookmark_value>ISERROR 函数</bookmark_value><bookmark_value>识别; 一般错误</bookmark_value>"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"hd_id31470811\n"
@@ -8822,7 +8121,6 @@ msgid "Example"
msgstr "示例"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"par_id31502561\n"
@@ -8831,7 +8129,6 @@ msgid "<item type=\"input\">=IFERROR(C8;C9)</item> where cell C8 contains <item
msgstr "<item type=\"input\">=ISERROR(C8)</item> 返回 TRUE,其中单元格 C8 包含 <item type=\"input\">=1/0</item>,因为 1/0 是错误值。"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"par_id18890951\n"
@@ -8840,7 +8137,6 @@ msgid "<item type=\"input\">=IFERROR(C8;C9)</item> where cell C8 contains <item
msgstr "<item type=\"input\">=ISERROR(C8)</item> 返回 TRUE,其中单元格 C8 包含 <item type=\"input\">=1/0</item>,因为 1/0 是错误值。"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id3153618\n"
@@ -8905,7 +8201,6 @@ msgid "<item type=\"input\">=ISFORMULA(C4)</item> returns FALSE if the cell C4 c
msgstr "如果单元格 C4 包含数字 <item type=\"input\">5</item>,则 <item type=\"input\">=ISFORMULA(C4)</item> 返回 FALSE。"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id3156048\n"
@@ -8922,7 +8217,6 @@ msgid "ISEVEN"
msgstr "ISEVEN"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"par_id3149170\n"
@@ -8955,7 +8249,6 @@ msgid "<emph>Value</emph> is the value to be checked."
msgstr "<emph>Value</emph> 是要检查的数值。"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"par_id3445844\n"
@@ -9084,7 +8377,6 @@ msgid "<item type=\"input\">=ISEVEN_ADD(A1)</item> returns 1 if cell A1 contains
msgstr "如果单元格 A1 包含数字 <item type=\"input\">2</item>,则 <item type=\"input\">=ISEVEN_ADD(A1)</item> 返回 1。"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id3154692\n"
@@ -9165,7 +8457,6 @@ msgid "<item type=\"input\">=ISNONTEXT(D9)</item> returns TRUE if cell D9 contai
msgstr "如果单元格 D9 包含数字 <item type=\"input\">8</item>,则 <item type=\"input\">=ISNONTEXT(D9)</item> 返回 TRUE。"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id3159148\n"
@@ -9230,7 +8521,6 @@ msgid "<item type=\"input\">=ISBLANK(D2)</item> returns FALSE as a result."
msgstr "<item type=\"input\">=ISBLANK(D2)</item> 返回 FALSE 作为结果。"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id3155356\n"
@@ -9311,7 +8601,6 @@ msgid "<item type=\"input\">=ISLOGICAL(ISNA(D4))</item> returns TRUE whatever th
msgstr "<item type=\"input\">=ISLOGICAL(ISNA(D4))</item> 返回 TRUE,而不考虑单元格 D4 的内容,因为 ISNA() 返回逻辑值。"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id3153685\n"
@@ -9384,7 +8673,6 @@ msgid "<item type=\"input\">=ISNA(D3)</item> returns FALSE as a result."
msgstr "<item type=\"input\">=ISNA(D3)</item> 返回 FALSE 作为结果。"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id31536851\n"
@@ -9393,7 +8681,6 @@ msgid "<bookmark_value>IFNA function</bookmark_value> <bookmark_value>#N/A erro
msgstr "<bookmark_value>ISNA 函数</bookmark_value><bookmark_value>#N/A 错误; 识别</bookmark_value>"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"hd_id31536851\n"
@@ -9458,7 +8745,6 @@ msgid "<item type=\"input\">=IFNA(D3;D4)</item> returns the value of D3 if D3 do
msgstr ""
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id3149426\n"
@@ -9539,7 +8825,6 @@ msgid "<item type=\"input\">=ISTEXT(C3)</item> returns FALSE if cell C3 contains
msgstr "如果单元格 C3 包含数字 <item type=\"input\">3</item>,则 <item type=\"input\">=ISTEXT(C3)</item> 返回 FALSE。"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id3156034\n"
@@ -9556,7 +8841,6 @@ msgid "ISODD"
msgstr "ISODD"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"par_id3155920\n"
@@ -9589,7 +8873,6 @@ msgid "<emph>Value</emph> is the value to be checked."
msgstr "<emph>Value</emph> 是要检查的数值。"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"par_id9027680\n"
@@ -9702,7 +8985,6 @@ msgid "<item type=\"input\">=ISODD_ADD(5)</item> returns 1."
msgstr "<item type=\"input\">=ISODD_ADD(5)</item> 返回 1。"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id3148688\n"
@@ -9847,7 +9129,6 @@ msgid "<item type=\"input\">=N(123)</item> returns 123"
msgstr "<item type=\"input\">=N(123)</item> 返回 123"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"par_id2337717\n"
@@ -9856,7 +9137,6 @@ msgid "<item type=\"input\">=N(TRUE())</item> returns 1"
msgstr "<item type=\"input\">=N(TRUE)</item> 返回 1"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"par_id3153781\n"
@@ -9881,7 +9161,6 @@ msgid "=N(1/0) returns #DIV/0!"
msgstr "=N(1/0) returns #DIV/0!"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id3156275\n"
@@ -10010,7 +9289,6 @@ msgid "<item type=\"input\">=TYPE(D9)</item> returns 1 as a result."
msgstr "<item type=\"input\">=TYPE(D9)</item> 返回 1 作为结果。"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id3155509\n"
@@ -10622,7 +9900,6 @@ msgstr "<bookmark_value>逻辑函数</bookmark_value> <bookmark_value>函
msgctxt ""
"04060105.xhp\n"
"hd_id3153484\n"
-"1\n"
"help.text"
msgid "Logical Functions"
msgstr "逻辑函数"
@@ -10631,7 +9908,6 @@ msgstr "逻辑函数"
msgctxt ""
"04060105.xhp\n"
"par_id3149312\n"
-"2\n"
"help.text"
msgid "<variable id=\"logischtext\">This category contains the <emph>Logical</emph> functions. </variable>"
msgstr "<variable id=\"logischtext\">该类中包含<emph>逻辑</emph>函数。</variable>"
@@ -10648,7 +9924,6 @@ msgstr "<bookmark_value>AND 函数</bookmark_value>"
msgctxt ""
"04060105.xhp\n"
"hd_id3147505\n"
-"29\n"
"help.text"
msgid "AND"
msgstr "AND"
@@ -10657,7 +9932,6 @@ msgstr "AND"
msgctxt ""
"04060105.xhp\n"
"par_id3153959\n"
-"65\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_UND\">Returns TRUE if all arguments are TRUE.</ahelp> If one of the elements is FALSE, this function returns the FALSE value."
msgstr "<ahelp hid=\"HID_FUNC_UND\">如果所有参数都为 TRUE,则返回 TRUE。</ahelp>如果某个参数为 FALSE,则该函数返回 FALSE。"
@@ -10666,7 +9940,6 @@ msgstr "<ahelp hid=\"HID_FUNC_UND\">如果所有参数都为 TRUE,则返回 TR
msgctxt ""
"04060105.xhp\n"
"par_id3146100\n"
-"66\n"
"help.text"
msgid "The arguments are either logical expressions themselves (TRUE, 1<5, 2+3=7, B8<10) that return logical values, or arrays (A1:C3) containing logical values."
msgstr "参数应该是能返回逻辑值的逻辑表达式 (TRUE, 1<5, 2+3=7, B8<10),或包含逻辑值的矩阵 (A1:C3)。"
@@ -10675,7 +9948,6 @@ msgstr "参数应该是能返回逻辑值的逻辑表达式 (TRUE, 1<5, 2+3=7, B
msgctxt ""
"04060105.xhp\n"
"hd_id3150374\n"
-"31\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -10684,7 +9956,6 @@ msgstr "语法"
msgctxt ""
"04060105.xhp\n"
"par_id3159123\n"
-"32\n"
"help.text"
msgid "AND(LogicalValue1; LogicalValue2 ...LogicalValue30)"
msgstr "AND(LogicalValue1; LogicalValue2 ...LogicalValue30)"
@@ -10693,7 +9964,6 @@ msgstr "AND(LogicalValue1; LogicalValue2 ...LogicalValue30)"
msgctxt ""
"04060105.xhp\n"
"par_id3150038\n"
-"33\n"
"help.text"
msgid "<emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> are conditions to be checked. All conditions can be either TRUE or FALSE. If a range is entered as a parameter, the function uses the value from the range that is in the current column or row. The result is TRUE if the logical value in all cells within the cell range is TRUE."
msgstr "<emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> 是要检查的条件。所有条件可以是 TRUE 或 FALSE。如果输入一个区域作为参数,函数将使用处于当前列或行的区域的值。如果单元格区域内的所有单元格的逻辑值都是 TRUE,则结果为 TRUE。"
@@ -10702,7 +9972,6 @@ msgstr "<emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> 是要检查
msgctxt ""
"04060105.xhp\n"
"hd_id3149143\n"
-"34\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -10711,7 +9980,6 @@ msgstr "示例"
msgctxt ""
"04060105.xhp\n"
"par_id3153123\n"
-"35\n"
"help.text"
msgid "The logical values of entries 12<13; 14>12, and 7<6 are to be checked:"
msgstr "检查 12<13; 14>12 和 7<6 的逻辑值:"
@@ -10720,7 +9988,6 @@ msgstr "检查 12<13; 14>12 和 7<6 的逻辑值:"
msgctxt ""
"04060105.xhp\n"
"par_id3145632\n"
-"36\n"
"help.text"
msgid "<item type=\"input\">=AND(12<13;14>12;7<6)</item> returns FALSE."
msgstr "<item type=\"input\">=AND(12<13;14>12;7<6)</item> 返回 FALSE."
@@ -10729,7 +9996,6 @@ msgstr "<item type=\"input\">=AND(12<13;14>12;7<6)</item> 返回 FALSE."
msgctxt ""
"04060105.xhp\n"
"par_id3149946\n"
-"60\n"
"help.text"
msgid "<item type=\"input\">=AND (FALSE;TRUE)</item> returns FALSE."
msgstr "<item type=\"input\">=AND (FALSE;TRUE)</item> 返回 FALSE."
@@ -10746,7 +10012,6 @@ msgstr "<bookmark_value>FALSE 函数</bookmark_value>"
msgctxt ""
"04060105.xhp\n"
"hd_id3149015\n"
-"3\n"
"help.text"
msgid "FALSE"
msgstr "FALSE"
@@ -10755,7 +10020,6 @@ msgstr "FALSE"
msgctxt ""
"04060105.xhp\n"
"par_id3149890\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FALSCH\">Returns the logical value FALSE.</ahelp> The FALSE() function does not require any arguments, and always returns the logical value FALSE."
msgstr "<ahelp hid=\"HID_FUNC_FALSCH\">返回逻辑值 FALSE。</ahelp>函数 FALSE() 不需要任何参数,并始终返回逻辑值 FALSE。"
@@ -10764,7 +10028,6 @@ msgstr "<ahelp hid=\"HID_FUNC_FALSCH\">返回逻辑值 FALSE。</ahelp>函数 FA
msgctxt ""
"04060105.xhp\n"
"hd_id3146939\n"
-"5\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -10773,7 +10036,6 @@ msgstr "语法"
msgctxt ""
"04060105.xhp\n"
"par_id3150030\n"
-"6\n"
"help.text"
msgid "FALSE()"
msgstr "FALSE()"
@@ -10782,7 +10044,6 @@ msgstr "FALSE()"
msgctxt ""
"04060105.xhp\n"
"hd_id3150697\n"
-"7\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -10791,7 +10052,6 @@ msgstr "示例"
msgctxt ""
"04060105.xhp\n"
"par_id3154842\n"
-"8\n"
"help.text"
msgid "<item type=\"input\">=FALSE()</item> returns FALSE"
msgstr "<item type=\"input\">=FALSE()</item> 返回 FALSE"
@@ -10800,7 +10060,6 @@ msgstr "<item type=\"input\">=FALSE()</item> 返回 FALSE"
msgctxt ""
"04060105.xhp\n"
"par_id3147468\n"
-"9\n"
"help.text"
msgid "<item type=\"input\">=NOT(FALSE())</item> returns TRUE"
msgstr "<item type=\"input\">=NOT(FALSE())</item> 返回 TRUE"
@@ -10817,7 +10076,6 @@ msgstr "<bookmark_value>IF 函数</bookmark_value>"
msgctxt ""
"04060105.xhp\n"
"hd_id3150141\n"
-"48\n"
"help.text"
msgid "IF"
msgstr "IF"
@@ -10826,7 +10084,6 @@ msgstr "IF"
msgctxt ""
"04060105.xhp\n"
"par_id3148740\n"
-"49\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_WENN\">Specifies a logical test to be performed.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_WENN\">指定要执行的逻辑测试。</ahelp>"
@@ -10835,7 +10092,6 @@ msgstr "<ahelp hid=\"HID_FUNC_WENN\">指定要执行的逻辑测试。</ahelp>"
msgctxt ""
"04060105.xhp\n"
"hd_id3153325\n"
-"50\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -10844,7 +10100,6 @@ msgstr "语法"
msgctxt ""
"04060105.xhp\n"
"par_id3154558\n"
-"51\n"
"help.text"
msgid "IF(Test; ThenValue; OtherwiseValue)"
msgstr "IF(Test; ThenValue; OtherwiseValue)"
@@ -10853,7 +10108,6 @@ msgstr "IF(Test; ThenValue; OtherwiseValue)"
msgctxt ""
"04060105.xhp\n"
"par_id3149727\n"
-"52\n"
"help.text"
msgid "<emph>Test</emph> is any value or expression that can be TRUE or FALSE."
msgstr "<emph>Test</emph> 是 TRUE 或 FALSE 的任意值或表达式。"
@@ -10862,7 +10116,6 @@ msgstr "<emph>Test</emph> 是 TRUE 或 FALSE 的任意值或表达式。"
msgctxt ""
"04060105.xhp\n"
"par_id3155828\n"
-"53\n"
"help.text"
msgid "<emph>ThenValue</emph> (optional) is the value that is returned if the logical test is TRUE."
msgstr "<emph>ThenValue</emph> (可选择的)是逻辑测试结果为 TRUE 时返回的值。"
@@ -10871,7 +10124,6 @@ msgstr "<emph>ThenValue</emph> (可选择的)是逻辑测试结果为 TRUE
msgctxt ""
"04060105.xhp\n"
"par_id3154811\n"
-"54\n"
"help.text"
msgid "<emph>OtherwiseValue</emph> (optional) is the value that is returned if the logical test is FALSE."
msgstr "<emph>OtherwiseValue</emph>(可选择的)是逻辑测试结果为 FALSE 时返回的值。"
@@ -10880,7 +10132,6 @@ msgstr "<emph>OtherwiseValue</emph>(可选择的)是逻辑测试结果为 FA
msgctxt ""
"04060105.xhp\n"
"hd_id3149507\n"
-"55\n"
"help.text"
msgid "Examples"
msgstr "示例"
@@ -10889,7 +10140,6 @@ msgstr "示例"
msgctxt ""
"04060105.xhp\n"
"par_id3150867\n"
-"57\n"
"help.text"
msgid "<item type=\"input\">=IF(A1>5;100;\"too small\")</item> If the value in A1 is higher than 5, the value 100 is entered in the current cell; otherwise, the text “too small” (without quotes) is entered."
msgstr "<item type=\"input\">=IF(A1>5;100;\"太小\")</item> 如果单元格 A1 的值大于 5,则在当前单元格中输入值 100;否则以文本格式输入“太小”(无引号)。"
@@ -10906,7 +10156,6 @@ msgstr "<bookmark_value>NOT 函数</bookmark_value>"
msgctxt ""
"04060105.xhp\n"
"hd_id3155954\n"
-"12\n"
"help.text"
msgid "NOT"
msgstr "NOT"
@@ -10915,7 +10164,6 @@ msgstr "NOT"
msgctxt ""
"04060105.xhp\n"
"par_id3153570\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_NICHT\">Complements (inverts) a logical value.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_NICHT\">补余(反转)一个逻辑值。</ahelp>"
@@ -10924,7 +10172,6 @@ msgstr "<ahelp hid=\"HID_FUNC_NICHT\">补余(反转)一个逻辑值。</ahel
msgctxt ""
"04060105.xhp\n"
"hd_id3147372\n"
-"14\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -10933,7 +10180,6 @@ msgstr "语法"
msgctxt ""
"04060105.xhp\n"
"par_id3157996\n"
-"15\n"
"help.text"
msgid "NOT(LogicalValue)"
msgstr "NOT(LogicalValue)"
@@ -10942,7 +10188,6 @@ msgstr "NOT(LogicalValue)"
msgctxt ""
"04060105.xhp\n"
"par_id3148766\n"
-"16\n"
"help.text"
msgid "<emph>LogicalValue</emph> is any value to be complemented."
msgstr "<emph>LogicalValue</emph> 是要补余的数值。"
@@ -10951,7 +10196,6 @@ msgstr "<emph>LogicalValue</emph> 是要补余的数值。"
msgctxt ""
"04060105.xhp\n"
"hd_id3149884\n"
-"17\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -10960,7 +10204,6 @@ msgstr "示例"
msgctxt ""
"04060105.xhp\n"
"par_id3150132\n"
-"18\n"
"help.text"
msgid "<item type=\"input\">=NOT(A)</item>. If A=TRUE then NOT(A) will evaluate FALSE."
msgstr "<item type=\"input\">=NOT(A)</item>。如果 A=TRUE,则 NOT(A) 为 FALSE。"
@@ -10977,7 +10220,6 @@ msgstr "<bookmark_value>OR 函数</bookmark_value>"
msgctxt ""
"04060105.xhp\n"
"hd_id3148394\n"
-"20\n"
"help.text"
msgid "OR"
msgstr "OR"
@@ -10986,7 +10228,6 @@ msgstr "OR"
msgctxt ""
"04060105.xhp\n"
"par_id3156060\n"
-"61\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ODER\">Returns TRUE if at least one argument is TRUE.</ahelp> This function returns the value FALSE, if all the arguments have the logical value FALSE."
msgstr "<ahelp hid=\"HID_FUNC_ODER\">至少有一个参数为 TRUE 时,函数返回 TRUE。</ahelp>如果所有参数的逻辑值都为 FALSE,该函数返回 FALSE。"
@@ -10995,7 +10236,6 @@ msgstr "<ahelp hid=\"HID_FUNC_ODER\">至少有一个参数为 TRUE 时,函数
msgctxt ""
"04060105.xhp\n"
"par_id3148771\n"
-"62\n"
"help.text"
msgid "The arguments are either logical expressions themselves (TRUE, 1<5, 2+3=7, B8<10) that return logical values, or arrays (A1:C3) containing logical values."
msgstr "参数应该是能返回逻辑值的逻辑表达式 (TRUE, 1<5, 2+3=7, B8<10),或包含逻辑值的矩阵 (A1:C3)。"
@@ -11004,7 +10244,6 @@ msgstr "参数应该是能返回逻辑值的逻辑表达式 (TRUE, 1<5, 2+3=7, B
msgctxt ""
"04060105.xhp\n"
"hd_id3155517\n"
-"22\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -11013,7 +10252,6 @@ msgstr "语法"
msgctxt ""
"04060105.xhp\n"
"par_id3150468\n"
-"23\n"
"help.text"
msgid "OR(LogicalValue1; LogicalValue2 ...LogicalValue30)"
msgstr "OR(LogicalValue1; LogicalValue2 ...LogicalValue30)"
@@ -11022,7 +10260,6 @@ msgstr "OR(LogicalValue1; LogicalValue2 ...LogicalValue30)"
msgctxt ""
"04060105.xhp\n"
"par_id3155819\n"
-"24\n"
"help.text"
msgid "<emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> are conditions to be checked. All conditions can be either TRUE or FALSE. If a range is entered as a parameter, the function uses the value from the range that is in the current column or row."
msgstr "<emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> 是要检查的条件。所有条件可以是 TRUE 或 FALSE。如果输入一个区域作为参数,函数将使用处于当前列或行的区域的值。"
@@ -11031,7 +10268,6 @@ msgstr "<emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> 是要检查
msgctxt ""
"04060105.xhp\n"
"hd_id3153228\n"
-"25\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -11040,7 +10276,6 @@ msgstr "示例"
msgctxt ""
"04060105.xhp\n"
"par_id3154870\n"
-"26\n"
"help.text"
msgid "The logical values of entries 12<11; 13>22, and 45=45 are to be checked."
msgstr "检查 12<11; 13>22 以及 45=45 的逻辑值。"
@@ -11049,7 +10284,6 @@ msgstr "检查 12<11; 13>22 以及 45=45 的逻辑值。"
msgctxt ""
"04060105.xhp\n"
"par_id3155371\n"
-"27\n"
"help.text"
msgid "<item type=\"input\">=OR(12<11;13>22;45=45)</item> returns TRUE."
msgstr "<item type=\"input\">=OR(12<11;13>22;45=45)</item> 返回 TRUE."
@@ -11058,7 +10292,6 @@ msgstr "<item type=\"input\">=OR(12<11;13>22;45=45)</item> 返回 TRUE."
msgctxt ""
"04060105.xhp\n"
"par_id3158412\n"
-"59\n"
"help.text"
msgid "<item type=\"input\">=OR(FALSE;TRUE)</item> returns TRUE."
msgstr "<item type=\"input\">=OR(FALSE;TRUE)</item> 返回 TRUE."
@@ -11075,7 +10308,6 @@ msgstr "<bookmark_value>TRUE 函数</bookmark_value>"
msgctxt ""
"04060105.xhp\n"
"hd_id3156256\n"
-"38\n"
"help.text"
msgid "TRUE"
msgstr "TRUE"
@@ -11084,7 +10316,6 @@ msgstr "TRUE"
msgctxt ""
"04060105.xhp\n"
"par_id3155985\n"
-"39\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_WAHR\">The logical value is set to TRUE.</ahelp> The TRUE() function does not require any arguments, and always returns the logical value TRUE."
msgstr "<ahelp hid=\"HID_FUNC_WAHR\">逻辑值设置为 TRUE。</ahelp>函数 TRUE() 不需要任何参数,并始终返回逻辑值 TRUE。"
@@ -11093,7 +10324,6 @@ msgstr "<ahelp hid=\"HID_FUNC_WAHR\">逻辑值设置为 TRUE。</ahelp>函数 TR
msgctxt ""
"04060105.xhp\n"
"hd_id3153717\n"
-"40\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -11102,7 +10332,6 @@ msgstr "语法"
msgctxt ""
"04060105.xhp\n"
"par_id3152590\n"
-"41\n"
"help.text"
msgid "TRUE()"
msgstr "TRUE()"
@@ -11111,7 +10340,6 @@ msgstr "TRUE()"
msgctxt ""
"04060105.xhp\n"
"hd_id3147175\n"
-"42\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -11120,7 +10348,6 @@ msgstr "示例"
msgctxt ""
"04060105.xhp\n"
"par_id3146148\n"
-"43\n"
"help.text"
msgid "If A=TRUE and B=FALSE the following examples appear:"
msgstr "当 A=TRUE 且 B=FALSE 时,出现下列结果:"
@@ -11129,7 +10356,6 @@ msgstr "当 A=TRUE 且 B=FALSE 时,出现下列结果:"
msgctxt ""
"04060105.xhp\n"
"par_id3083285\n"
-"44\n"
"help.text"
msgid "<item type=\"input\">=AND(A;B)</item> returns FALSE"
msgstr "<item type=\"input\">=AND(A;B)</item> 返回 FALSE"
@@ -11138,7 +10364,6 @@ msgstr "<item type=\"input\">=AND(A;B)</item> 返回 FALSE"
msgctxt ""
"04060105.xhp\n"
"par_id3083444\n"
-"45\n"
"help.text"
msgid "<item type=\"input\">=OR(A;B)</item> returns TRUE"
msgstr "<item type=\"input\">=OR(A;B)</item> 返回 TRUE"
@@ -11147,7 +10372,6 @@ msgstr "<item type=\"input\">=OR(A;B)</item> 返回 TRUE"
msgctxt ""
"04060105.xhp\n"
"par_id3154314\n"
-"46\n"
"help.text"
msgid "<item type=\"input\">=NOT(AND(A;B))</item> returns TRUE"
msgstr "<item type=\"input\">=NOT(AND(A;B))</item> 返回 TRUE"
@@ -11241,7 +10465,6 @@ msgid "Mathematical Functions"
msgstr "数学函数"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3147124\n"
@@ -11266,7 +10489,6 @@ msgid "<variable id=\"mathematiktext\">This category contains the <emph>Mathemat
msgstr "<variable id=\"mathematiktext\">此类别包含 Calc 的<emph>数学</emph>函数。</variable>要打开<emph>函数向导</emph>,请选择<link href=\"text/scalc/01/04060000.xhp\" name=\"插入 - 函数\"><emph>插入 - 函数</emph></link>。"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3146944\n"
@@ -12131,7 +11353,6 @@ msgid "Examples"
msgstr "示例"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"par_id3147241\n"
@@ -12508,7 +11729,6 @@ msgid "<item type=\"input\">=CSCH(1)</item> returns approximately 0.8509181282,
msgstr "<item type=\"input\">=CSCH(1)</item> 的返回值约为 0.8509181282,即 1 的双曲余割。"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3145314\n"
@@ -12637,7 +11857,6 @@ msgid "<item type=\"input\">=EXP(1)</item> returns 2.71828182845904, the mathema
msgstr "<item type=\"input\">=EXP(1)</item> 返回 2.71828182845904,数学常量 e 的值根据 Calc 的精度而定。"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3145781\n"
@@ -12726,7 +11945,6 @@ msgid "<item type=\"input\">=FACT(0)</item> returns 1."
msgstr "<item type=\"input\">=FACT(0)</item> 返回 1。"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3159084\n"
@@ -12807,7 +12025,6 @@ msgid "<item type=\"input\">=INT(-1.3)</item> returns -2."
msgstr "<item type=\"input\">=INT(-1.3)</item> 返回 -2。"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3150938\n"
@@ -12896,7 +12113,6 @@ msgid "<item type=\"input\">=EVEN(-0.5)</item> returns -2."
msgstr "<item type=\"input\">=EVEN(-0.5)</item> 返回 -2。"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3147356\n"
@@ -13041,7 +12257,6 @@ msgid "<item type=\"input\">=GCD_EXCEL2003(5;15;25)</item> returns 5."
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3145213\n"
@@ -13170,7 +12385,6 @@ msgid "<item type=\"input\">=LCM_EXCEL2003(5;15;25)</item> returns 75."
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3155802\n"
@@ -13259,7 +12473,6 @@ msgid "<item type=\"input\">=COMBIN(3;2)</item> returns 3."
msgstr "<item type=\"input\">=COMBIN(3;2)</item> 返回 3。"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3150284\n"
@@ -13348,7 +12561,6 @@ msgid "<item type=\"input\">=COMBINA(3;2)</item> returns 6."
msgstr "<item type=\"input\">=COMBINA(3;2)</item> 返回 6。"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3156086\n"
@@ -13437,7 +12649,6 @@ msgid "<item type=\"input\">=TRUNC(-1.234999;3)</item> returns -1.234. All the 9
msgstr "<item type=\"input\">=TRUNC(-1.234999;3)</item> 返回 -1.234。所有的 9 都舍去。"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3153601\n"
@@ -13510,7 +12721,6 @@ msgid "<item type=\"input\">=LN(EXP(321))</item> returns 321."
msgstr "<item type=\"input\">=LN(EXP(321))</item> 返回 321。"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3109813\n"
@@ -13591,7 +12801,6 @@ msgid "<item type=\"input\">=LOG(7^4;7)</item> returns 4."
msgstr "<item type=\"input\">=LOG(7^4;7)</item> 返回 4。"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3154187\n"
@@ -13656,7 +12865,6 @@ msgid "<item type=\"input\">=LOG10(5)</item> returns the base-10 logarithm of 5
msgstr "<item type=\"input\">=LOG10(5)</item> 返回底数为 -10 的 5 的对数值(近似值 0.69897)。"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3152518\n"
@@ -13761,7 +12969,6 @@ msgid "<item type=\"input\">=CEILING(-11;-2;1)</item> returns -12"
msgstr "<item type=\"input\">=CEILING(-11;-2;1)</item> 返回 -12"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id2952518\n"
@@ -13834,7 +13041,6 @@ msgid "<item type=\"input\">=CEILING.PRECISE(-11;-2)</item> returns -10"
msgstr "<item type=\"input\">=CEILING.PRECISE(-11,-2)</item> 返回 -10"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id8952518\n"
@@ -14195,7 +13401,6 @@ msgid "<emph>Coefficients</emph> is a series of coefficients. For each coefficie
msgstr "<emph>Coefficients</emph> 是一系列的系数。每多一个系数,该幂级数便增加一项。"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3144386\n"
@@ -14268,7 +13473,6 @@ msgid "<item type=\"input\">=PRODUCT(2;3;4)</item> returns 24."
msgstr "<item type=\"input\">=PRODUCT(2;3;4)</item> 返回 24。"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3160340\n"
@@ -14333,7 +13537,6 @@ msgid "If you enter the numbers <item type=\"input\">2</item>; <item type=\"inpu
msgstr "如果在 Number 1、2 和 3 文本框中分别输入数字 <item type=\"input\">2</item>;<item type=\"input\">3</item> 和 <item type=\"input\">4</item>,则结果是 29。"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3158247\n"
@@ -14414,7 +13617,6 @@ msgid "<item type=\"input\">=MOD(11.25;2.5)</item> returns 1.25."
msgstr "<item type=\"input\">=MOD(11.25;2.5)</item> 返回 1.25。"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3144592\n"
@@ -14487,7 +13689,6 @@ msgid "<item type=\"input\">=QUOTIENT(11;3)</item> returns 3. The remainder of 2
msgstr "<item type=\"input\">=QUOTIENT(11;3)</item> 返回 3。余数 2 被省略。"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3144702\n"
@@ -15144,7 +14345,6 @@ msgid "<item type=\"input\">=SINH(0)</item> returns 0, the hyperbolic sine of 0.
msgstr "<item type=\"input\">=SINH(0)</item> 返回 0,0 的双曲正弦值。"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3163596\n"
@@ -15249,7 +14449,6 @@ msgid "<item type=\"input\">=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)</item>"
msgstr "<item type=\"input\">=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)</item>"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"par_id3151828\n"
@@ -15274,7 +14473,6 @@ msgid "The formula is based on the fact that the result of a comparison is 1 if
msgstr "此公式建立在比较结果的基础上,如果符合条件,则比较结果为 1,反之为 0。单个的比较结果将被视为数组,并用于计算矩阵乘积,最后将计算各个值的总和以得到结果矩阵。"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3151957\n"
@@ -15523,7 +14721,6 @@ msgid "<item type=\"input\">=TANH(0)</item> returns 0, the hyperbolic tangent of
msgstr "<item type=\"input\">=TANH(0)</item> 返回 0,0 的双曲正切值。"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3165633\n"
@@ -15796,7 +14993,6 @@ msgid "<item type=\"input\">=SUBTOTAL(9;B2:B5)</item>"
msgstr "<item type=\"input\">=SUBTOTAL(9;B2:B5)</item>"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3143672\n"
@@ -15965,7 +15161,6 @@ msgid "=CONVERT(100;\"EUR\";\"DEM\") converts 100 Euros into German Marks."
msgstr "=CONVERT(100;\"EUR\";\"DEM\") 将 100 欧元换算成德国马克。"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3157177\n"
@@ -16054,7 +15249,6 @@ msgid "<item type=\"input\">=ODD(-3.1)</item> returns -5."
msgstr "<item type=\"input\">=ODD(-3.1)</item> 返回 -5。"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id2957404\n"
@@ -16127,7 +15321,6 @@ msgid "<item type=\"input\">=FLOOR.PRECISE( -11;-2)</item> returns -12"
msgstr "<item type=\"input\">=FLOOR.PRECISE( -11,-2)</item> 返回 -12"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3157404\n"
@@ -16168,7 +15361,6 @@ msgid "FLOOR(Number; Significance; Mode)"
msgstr "FLOOR(数字, Significance, 模式)"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"par_id3157478\n"
@@ -16177,7 +15369,6 @@ msgid "<emph>Number</emph> is the number that is to be rounded down."
msgstr "<emph>数字</emph> 表示将要被向下舍入的数字。"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"par_id3157497\n"
@@ -16234,7 +15425,6 @@ msgid "<item type=\"input\">=FLOOR( -11;-2;1)</item> returns -10"
msgstr "<item type=\"input\">=FLOOR( -11,-2,1)</item> 返回 -10"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3164086\n"
@@ -16307,7 +15497,6 @@ msgid "<item type=\"input\">=SIGN(-4.5)</item> returns -1."
msgstr "<item type=\"input\">=SIGN(-4.5)</item> 返回 -1。"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3164252\n"
@@ -16388,7 +15577,6 @@ msgid "<item type=\"input\">=MROUND(1.4;0.5)</item> returns 1.5 (= 0.5*3)."
msgstr "<item type=\"input\">=MROUND(1.4,0.5)</item> 返回 1.5 (= 0.5*3)。"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3164375\n"
@@ -16469,7 +15657,6 @@ msgid "<item type=\"input\">=SQRT(-16)</item> returns an <item type=\"literal\">
msgstr "<item type=\"input\">=SQRT(-16)</item> 返回<item type=\"literal\">无效参数</item>错误。"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3164560\n"
@@ -16542,7 +15729,6 @@ msgid "<item type=\"input\">=SQRTPI(2)</item> returns the squareroot of (2PI), a
msgstr "<item type=\"input\">=SQRTPI(2)</item> 返回 (2PI) 的平方根,约等于 2.506628。"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3164669\n"
@@ -16591,7 +15777,6 @@ msgid "Returns an integer random number between integers <emph>Bottom</emph> and
msgstr "返回一个介于 <emph>Bottom</emph> 和 <emph>Top</emph>(全部包含)之间的随机整数。"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"par_id2855616\n"
@@ -16624,7 +15809,6 @@ msgid "<item type=\"input\">=RANDBETWEEN(20;30)</item> returns an integer of bet
msgstr "<item type=\"input\">=RANDBETWEEN(20;30)</item> 返回介于 20 到 30 之间的整数。"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3164800\n"
@@ -16705,7 +15889,6 @@ msgid "Array Functions"
msgstr "矩阵函数"
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"bm_id3147273\n"
@@ -16722,7 +15905,6 @@ msgid "Array Functions"
msgstr "矩阵函数"
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"par_id3154744\n"
@@ -16739,7 +15921,6 @@ msgid "What is an Array?"
msgstr "什么是矩阵?"
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"par_id3154298\n"
@@ -18060,7 +17241,6 @@ msgid "Select a single column range in which to enter the frequency according to
msgstr "选择单列区域,在其中根据类的限制输入频率数。您必须比分类上限多选一个字段。在本例中,选择区域 C1:C6。在<emph>函数向导</emph>中调用 FREQUENCY 函数。在 (A1:A11) 中选择<emph>数据</emph>范围,然后选择<emph>分类</emph>范围,在其中输入分类限制值 (B1:B6) 。选中<emph>数组</emph>复选框并单击<emph>确定</emph>。将在 C1:C6 区域中看到频率计数。"
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"bm_id3151030\n"
@@ -18117,7 +17297,6 @@ msgid "You can find a general introduction to using Array functions on top of th
msgstr ""
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"bm_id3151348\n"
@@ -18566,7 +17745,6 @@ msgid "<item type=\"input\">y</item>"
msgstr "<item type=\"input\">y</item>"
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"par_id3163766\n"
@@ -18975,7 +18153,6 @@ msgid "<emph>This represents the calculated LINEST values:</emph>"
msgstr "<emph>以下是对 LINEST 计算结果的说明:</emph>"
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"bm_id3158146\n"
@@ -19168,7 +18345,6 @@ msgid "See LINEST. However, no square sum will be returned."
msgstr "请参阅 LINEST。但它不返回平方和。"
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"bm_id3163286\n"
@@ -19673,7 +18849,6 @@ msgid "Select a spreadsheet range in which the trend data will appear. Select th
msgstr "选择一个用于显示回归数据的电子表格区域,选择函数,键入输出数据或利用鼠标将其选定,选中<emph>矩阵</emph>字段,然后单击<emph>确定</emph>,将显示根据输出数据计算的回归数据。"
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"bm_id3166317\n"
@@ -19781,7 +18956,6 @@ msgstr "<bookmark_value>统计函数</bookmark_value><bookmark_value>函数向
msgctxt ""
"04060108.xhp\n"
"hd_id3153018\n"
-"1\n"
"help.text"
msgid "<variable id=\"head_statistic\"><link href=\"text/scalc/01/04060108.xhp\" name=\"Statistics Functions\">Statistics Functions</link></variable>"
msgstr ""
@@ -19790,7 +18964,6 @@ msgstr ""
msgctxt ""
"04060108.xhp\n"
"par_id3157874\n"
-"2\n"
"help.text"
msgid "<variable id=\"statistiktext\">This category contains the <emph>Statistics</emph> functions. </variable>"
msgstr "<variable id=\"statistiktext\">此类别包含<emph>统计</emph>函数。 </variable>"
@@ -19799,7 +18972,6 @@ msgstr "<variable id=\"statistiktext\">此类别包含<emph>统计</emph>函数
msgctxt ""
"04060108.xhp\n"
"par_id3149001\n"
-"9\n"
"help.text"
msgid "Some of the examples use the following data table:"
msgstr "某些示例使用了下面的数据表格:"
@@ -19808,7 +18980,6 @@ msgstr "某些示例使用了下面的数据表格:"
msgctxt ""
"04060108.xhp\n"
"par_id3148775\n"
-"10\n"
"help.text"
msgid "C"
msgstr "C"
@@ -19817,7 +18988,6 @@ msgstr "C"
msgctxt ""
"04060108.xhp\n"
"par_id3145297\n"
-"11\n"
"help.text"
msgid "D"
msgstr "D"
@@ -19826,7 +18996,6 @@ msgstr "D"
msgctxt ""
"04060108.xhp\n"
"par_id3150661\n"
-"12\n"
"help.text"
msgid "2"
msgstr "2"
@@ -19835,7 +19004,6 @@ msgstr "2"
msgctxt ""
"04060108.xhp\n"
"par_id3153551\n"
-"13\n"
"help.text"
msgid "x value"
msgstr "x 值"
@@ -19844,7 +19012,6 @@ msgstr "x 值"
msgctxt ""
"04060108.xhp\n"
"par_id3147536\n"
-"14\n"
"help.text"
msgid "y value"
msgstr "y 值"
@@ -19853,7 +19020,6 @@ msgstr "y 值"
msgctxt ""
"04060108.xhp\n"
"par_id3153224\n"
-"15\n"
"help.text"
msgid "3"
msgstr "3"
@@ -19862,7 +19028,6 @@ msgstr "3"
msgctxt ""
"04060108.xhp\n"
"par_id3150475\n"
-"16\n"
"help.text"
msgid "-5"
msgstr "-5"
@@ -19871,7 +19036,6 @@ msgstr "-5"
msgctxt ""
"04060108.xhp\n"
"par_id3155367\n"
-"17\n"
"help.text"
msgid "-3"
msgstr "-3"
@@ -19880,7 +19044,6 @@ msgstr "-3"
msgctxt ""
"04060108.xhp\n"
"par_id3149783\n"
-"18\n"
"help.text"
msgid "4"
msgstr "4"
@@ -19889,7 +19052,6 @@ msgstr "4"
msgctxt ""
"04060108.xhp\n"
"par_id3153181\n"
-"19\n"
"help.text"
msgid "-2"
msgstr "-2"
@@ -19898,7 +19060,6 @@ msgstr "-2"
msgctxt ""
"04060108.xhp\n"
"par_id3148429\n"
-"20\n"
"help.text"
msgid "0"
msgstr "0"
@@ -19907,7 +19068,6 @@ msgstr "0"
msgctxt ""
"04060108.xhp\n"
"par_id3152588\n"
-"21\n"
"help.text"
msgid "5"
msgstr "5"
@@ -19916,7 +19076,6 @@ msgstr "5"
msgctxt ""
"04060108.xhp\n"
"par_id3147483\n"
-"22\n"
"help.text"
msgid "-1"
msgstr "-1"
@@ -19925,7 +19084,6 @@ msgstr "-1"
msgctxt ""
"04060108.xhp\n"
"par_id3083443\n"
-"23\n"
"help.text"
msgid "1"
msgstr "1"
@@ -19934,7 +19092,6 @@ msgstr "1"
msgctxt ""
"04060108.xhp\n"
"par_id3149826\n"
-"24\n"
"help.text"
msgid "6"
msgstr "6"
@@ -19943,7 +19100,6 @@ msgstr "6"
msgctxt ""
"04060108.xhp\n"
"par_id3163820\n"
-"25\n"
"help.text"
msgid "0"
msgstr "0"
@@ -19952,7 +19108,6 @@ msgstr "0"
msgctxt ""
"04060108.xhp\n"
"par_id3154816\n"
-"26\n"
"help.text"
msgid "3"
msgstr "3"
@@ -19961,7 +19116,6 @@ msgstr "3"
msgctxt ""
"04060108.xhp\n"
"par_id3149276\n"
-"27\n"
"help.text"
msgid "7"
msgstr "7"
@@ -19970,7 +19124,6 @@ msgstr "7"
msgctxt ""
"04060108.xhp\n"
"par_id3149267\n"
-"28\n"
"help.text"
msgid "2"
msgstr "2"
@@ -19979,7 +19132,6 @@ msgstr "2"
msgctxt ""
"04060108.xhp\n"
"par_id3156310\n"
-"29\n"
"help.text"
msgid "4"
msgstr "4"
@@ -19988,7 +19140,6 @@ msgstr "4"
msgctxt ""
"04060108.xhp\n"
"par_id3154639\n"
-"30\n"
"help.text"
msgid "8"
msgstr "8"
@@ -19997,7 +19148,6 @@ msgstr "8"
msgctxt ""
"04060108.xhp\n"
"par_id3145205\n"
-"31\n"
"help.text"
msgid "4"
msgstr "4"
@@ -20006,7 +19156,6 @@ msgstr "4"
msgctxt ""
"04060108.xhp\n"
"par_id3153276\n"
-"32\n"
"help.text"
msgid "6"
msgstr "6"
@@ -20015,7 +19164,6 @@ msgstr "6"
msgctxt ""
"04060108.xhp\n"
"par_id3150756\n"
-"33\n"
"help.text"
msgid "9"
msgstr "9"
@@ -20024,7 +19172,6 @@ msgstr "9"
msgctxt ""
"04060108.xhp\n"
"par_id3156095\n"
-"34\n"
"help.text"
msgid "6"
msgstr "6"
@@ -20033,7 +19180,6 @@ msgstr "6"
msgctxt ""
"04060108.xhp\n"
"par_id3152929\n"
-"35\n"
"help.text"
msgid "8"
msgstr "8"
@@ -20042,7 +19188,6 @@ msgstr "8"
msgctxt ""
"04060108.xhp\n"
"par_id3156324\n"
-"36\n"
"help.text"
msgid "The statistical functions are described in the following subsections."
msgstr "以下几节分段介绍了这些统计函数。"
@@ -20067,7 +19212,6 @@ msgstr "<bookmark_value>电子表格; 函数</bookmark_value><bookmark_value>函
msgctxt ""
"04060109.xhp\n"
"hd_id3148522\n"
-"1\n"
"help.text"
msgid "Spreadsheet Functions"
msgstr "电子表格函数"
@@ -20076,7 +19220,6 @@ msgstr "电子表格函数"
msgctxt ""
"04060109.xhp\n"
"par_id3144508\n"
-"2\n"
"help.text"
msgid "<variable id=\"tabelletext\">This section contains descriptions of the <emph>Spreadsheet</emph> functions together with an example.</variable>"
msgstr "<variable id=\"tabelletext\">本节介绍<emph>电子表格</emph>函数并提供相关示例。 </variable>"
@@ -20093,7 +19236,6 @@ msgstr "<bookmark_value>ADDRESS 函数</bookmark_value>"
msgctxt ""
"04060109.xhp\n"
"hd_id3146968\n"
-"3\n"
"help.text"
msgid "ADDRESS"
msgstr "ADDRESS"
@@ -20102,7 +19244,6 @@ msgstr "ADDRESS"
msgctxt ""
"04060109.xhp\n"
"par_id3155762\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ADRESSE\">Returns a cell address (reference) as text, according to the specified row and column numbers.</ahelp> You can determine whether the address is interpreted as an absolute address (for example, $A$1) or as a relative address (as A1) or in a mixed form (A$1 or $A1). You can also specify the name of the sheet."
msgstr "<ahelp hid=\"HID_FUNC_ADRESSE\">按照指定行编号和列编号,返回文字格式的单元格引用地址。</ahelp> 您可以自己决定是采用绝对地址(如 $A$1)还是相对地址(如 A1)或是综合型地址(A$1 或 $A1)来表示引用的单元格,还可以指定工作表的名称。"
@@ -20183,7 +19324,6 @@ msgstr "INDIRECT 函数会被保存,但不会被转换为 ODF 1.0/1.1 格式
msgctxt ""
"04060109.xhp\n"
"hd_id3151196\n"
-"5\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -20192,7 +19332,6 @@ msgstr "语法"
msgctxt ""
"04060109.xhp\n"
"par_id3154707\n"
-"6\n"
"help.text"
msgid "ADDRESS(Row; Column; Abs; A1; \"Sheet\")"
msgstr "ADDRESS(Row; Column; Abs; A1; )"
@@ -20201,7 +19340,6 @@ msgstr "ADDRESS(Row; Column; Abs; A1; )"
msgctxt ""
"04060109.xhp\n"
"par_id3147505\n"
-"7\n"
"help.text"
msgid "<emph>Row</emph> represents the row number for the cell reference"
msgstr "<emph>Row</emph> 表示引用的单元格的行号"
@@ -20210,7 +19348,6 @@ msgstr "<emph>Row</emph> 表示引用的单元格的行号"
msgctxt ""
"04060109.xhp\n"
"par_id3145323\n"
-"8\n"
"help.text"
msgid "<emph>Column</emph> represents the column number for the cell reference (the number, not the letter)"
msgstr "<emph>Column</emph> 表示引用的单元格的列号(是数字,而非字母)"
@@ -20219,7 +19356,6 @@ msgstr "<emph>Column</emph> 表示引用的单元格的列号(是数字,而
msgctxt ""
"04060109.xhp\n"
"par_id3153074\n"
-"9\n"
"help.text"
msgid "<emph>Abs</emph> determines the type of reference:"
msgstr "<emph>Abs</emph> 确定引用类型:"
@@ -20228,7 +19364,6 @@ msgstr "<emph>Abs</emph> 确定引用类型:"
msgctxt ""
"04060109.xhp\n"
"par_id3153298\n"
-"10\n"
"help.text"
msgid "1: absolute ($A$1)"
msgstr "1: absolute ($A$1)"
@@ -20237,7 +19372,6 @@ msgstr "1: absolute ($A$1)"
msgctxt ""
"04060109.xhp\n"
"par_id3150431\n"
-"11\n"
"help.text"
msgid "2: row reference type is absolute; column reference is relative (A$1)"
msgstr "2:行号采用绝对引用;列号采用相对引用(A$1)"
@@ -20246,7 +19380,6 @@ msgstr "2:行号采用绝对引用;列号采用相对引用(A$1)"
msgctxt ""
"04060109.xhp\n"
"par_id3146096\n"
-"12\n"
"help.text"
msgid "3: row (relative); column (absolute) ($A1)"
msgstr "3:行号采用相对引用;列号采用绝对引用($A1)"
@@ -20255,7 +19388,6 @@ msgstr "3:行号采用相对引用;列号采用绝对引用($A1)"
msgctxt ""
"04060109.xhp\n"
"par_id3153334\n"
-"13\n"
"help.text"
msgid "4: relative (A1)"
msgstr "4:相对引用(A1)"
@@ -20272,7 +19404,6 @@ msgstr "<emph>A1</emph>(可选的)- 如果设置为 0,使用 R1C1 符号
msgctxt ""
"04060109.xhp\n"
"par_id3153962\n"
-"14\n"
"help.text"
msgid "<emph>Sheet</emph> represents the name of the sheet. It must be placed in double quotes."
msgstr "<emph>Sheet</emph> 代表工作表的名称。必须放在双引号中。"
@@ -20281,7 +19412,6 @@ msgstr "<emph>Sheet</emph> 代表工作表的名称。必须放在双引号中
msgctxt ""
"04060109.xhp\n"
"hd_id3147299\n"
-"15\n"
"help.text"
msgid "Example:"
msgstr "示例"
@@ -20290,7 +19420,6 @@ msgstr "示例"
msgctxt ""
"04060109.xhp\n"
"par_id3148744\n"
-"16\n"
"help.text"
msgid "<item type=\"input\">=ADDRESS(1;1;2;;\"Sheet2\")</item> returns the following: Sheet2.A$1"
msgstr "<item type=\"input\">=ADDRESS(1;1;2;\"Sheet2\")</item> 返回:Sheet2.A$1"
@@ -20299,7 +19428,6 @@ msgstr "<item type=\"input\">=ADDRESS(1;1;2;\"Sheet2\")</item> 返回:Sheet2.A
msgctxt ""
"04060109.xhp\n"
"par_id3159260\n"
-"17\n"
"help.text"
msgid "If the cell A1 in sheet 2 contains the value <item type=\"input\">-6</item>, you can refer indirectly to the referenced cell using a function in B2 by entering <item type=\"input\">=ABS(INDIRECT(B2))</item>. The result is the absolute value of the cell reference specified in B2, which in this case is 6."
msgstr "如果工作表 sheet 2 中的单元格 A1 包含数值 <item type=\"input\">-6</item>,通过输入 <item type=\"input\">=ABS(INDIRECT(B2))</item>,使用 B2 中的函数间接引用单元格。结果是单元格 B2 中给出的单元格引用的绝对值,即等于 6。"
@@ -20316,7 +19444,6 @@ msgstr "<bookmark_value>AREAS 函数</bookmark_value>"
msgctxt ""
"04060109.xhp\n"
"hd_id3150372\n"
-"19\n"
"help.text"
msgid "AREAS"
msgstr "AREAS"
@@ -20325,7 +19452,6 @@ msgstr "AREAS"
msgctxt ""
"04060109.xhp\n"
"par_id3150036\n"
-"20\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BEREICHE\">Returns the number of individual ranges that belong to a multiple range.</ahelp> A range can consist of contiguous cells or a single cell."
msgstr "<ahelp hid=\"HID_FUNC_BEREICHE\">返回多重区域中含有的单个区域的数目。</ahelp>一个区域可以由多个邻近的单元格组成,也可以由一个单元格组成。"
@@ -20342,7 +19468,6 @@ msgstr "此函数需要一个单独的参数。如果您声明了多个范围,
msgctxt ""
"04060109.xhp\n"
"hd_id3145222\n"
-"21\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -20351,7 +19476,6 @@ msgstr "语法"
msgctxt ""
"04060109.xhp\n"
"par_id3155907\n"
-"22\n"
"help.text"
msgid "AREAS(Reference)"
msgstr "AREAS(reference)"
@@ -20360,7 +19484,6 @@ msgstr "AREAS(reference)"
msgctxt ""
"04060109.xhp\n"
"par_id3153118\n"
-"23\n"
"help.text"
msgid "Reference represents the reference to a cell or cell range."
msgstr "Reference 表示对一个单元格或者一个单元格区域的引用。"
@@ -20369,7 +19492,6 @@ msgstr "Reference 表示对一个单元格或者一个单元格区域的引用
msgctxt ""
"04060109.xhp\n"
"hd_id3148891\n"
-"24\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -20378,7 +19500,6 @@ msgstr "示例"
msgctxt ""
"04060109.xhp\n"
"par_id3149946\n"
-"25\n"
"help.text"
msgid "<item type=\"input\">=AREAS((A1:B3;F2;G1))</item> returns 3, as it is a reference to three cells and/or areas. After entry this gets converted to =AREAS((A1:B3~F2~G1))."
msgstr "<item type=\"input\">=AREAS((A1:B3;F2;G1))</item> 返回 3,因为它引用了三个单元格和/或区域。此项在输入后会转换为 =AREAS((A1:B3~F2~G1))。"
@@ -20387,7 +19508,6 @@ msgstr "<item type=\"input\">=AREAS((A1:B3;F2;G1))</item> 返回 3,因为它
msgctxt ""
"04060109.xhp\n"
"par_id3146820\n"
-"26\n"
"help.text"
msgid "<item type=\"input\">=AREAS(All)</item> returns 1 if you have defined an area named All under <emph>Data - Define Range</emph>."
msgstr "如果通过<emph>数据 - 定义范围</emph>定义名称为 All 的区域,则 <item type=\"input\">=AREAS(All)</item> 返回 1。"
@@ -20404,7 +19524,6 @@ msgstr "<bookmark_value>DDE 函数</bookmark_value>"
msgctxt ""
"04060109.xhp\n"
"hd_id3148727\n"
-"28\n"
"help.text"
msgid "DDE"
msgstr "DDE"
@@ -20413,7 +19532,6 @@ msgstr "DDE"
msgctxt ""
"04060109.xhp\n"
"par_id3149434\n"
-"29\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DDE\">Returns the result of a DDE-based link.</ahelp> If the contents of the linked range or section changes, the returned value will also change. You must reload the spreadsheet or choose <emph>Edit - Links</emph> to see the updated links. Cross-platform links, for example from a <item type=\"productname\">%PRODUCTNAME</item> installation running on a Windows machine to a document created on a Linux machine, are not allowed."
msgstr "<ahelp hid=\"HID_FUNC_DDE\">返回一个基于 DDE 的链接。</ahelp>如果链接区域或区域中的内容发生变化,公式的结果也会相应地发生变化。您必须重新装入工作表或选择<emph>编辑 - 链接</emph>来查看更新后的链接。不支持跨平台链接,例如从运行于 Windows 计算机上安装的 <item type=\"productname\">%PRODUCTNAME</item> 链接到 Linux 计算机上创建的文档。"
@@ -20422,7 +19540,6 @@ msgstr "<ahelp hid=\"HID_FUNC_DDE\">返回一个基于 DDE 的链接。</ahelp>
msgctxt ""
"04060109.xhp\n"
"hd_id3150700\n"
-"30\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -20431,7 +19548,6 @@ msgstr "语法"
msgctxt ""
"04060109.xhp\n"
"par_id3148886\n"
-"31\n"
"help.text"
msgid "DDE(\"Server\"; \"File\"; \"Range\"; Mode)"
msgstr "DDE(\"Server\"; \"File\"; \"Range\"; Mode)"
@@ -20440,16 +19556,14 @@ msgstr "DDE(\"Server\"; \"File\"; \"Range\"; Mode)"
msgctxt ""
"04060109.xhp\n"
"par_id3154842\n"
-"32\n"
"help.text"
-msgid "<emph>Server</emph> is the name of a server application. <item type=\"productname\">%PRODUCTNAME</item>applications have the server name \"soffice\"."
-msgstr "<emph>服务器</emph> 是服务器应用程序的名称。<item type=\"productname\">%PRODUCTNAME</item> 应用程序拥有服务器名称为 \"soffice\"。"
+msgid "<emph>Server</emph> is the name of a server application. <item type=\"productname\">%PRODUCTNAME</item> applications have the server name \"soffice\"."
+msgstr ""
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id3153034\n"
-"33\n"
"help.text"
msgid "<emph>File</emph> is the complete file name, including path specification."
msgstr "<emph>file</emph> 是具备完整路径的文件名。"
@@ -20458,7 +19572,6 @@ msgstr "<emph>file</emph> 是具备完整路径的文件名。"
msgctxt ""
"04060109.xhp\n"
"par_id3147472\n"
-"34\n"
"help.text"
msgid "<emph>Range</emph> is the area containing the data to be evaluated."
msgstr "<emph>range</emph> 是一个要读取数据的区域。"
@@ -20467,7 +19580,6 @@ msgstr "<emph>range</emph> 是一个要读取数据的区域。"
msgctxt ""
"04060109.xhp\n"
"par_id3152773\n"
-"184\n"
"help.text"
msgid "<emph>Mode</emph> is an optional parameter that controls the method by which the DDE server converts its data into numbers."
msgstr "<emph>mode</emph> 是一个可选参数,用来控制 DDE 服务器中的数据与数字的转换方式。"
@@ -20476,7 +19588,6 @@ msgstr "<emph>mode</emph> 是一个可选参数,用来控制 DDE 服务器中
msgctxt ""
"04060109.xhp\n"
"par_id3154383\n"
-"185\n"
"help.text"
msgid "<emph>Mode</emph>"
msgstr "<emph>模式</emph>"
@@ -20485,7 +19596,6 @@ msgstr "<emph>模式</emph>"
msgctxt ""
"04060109.xhp\n"
"par_id3145146\n"
-"186\n"
"help.text"
msgid "<emph>Effect</emph>"
msgstr "<emph>效果</emph>"
@@ -20494,7 +19604,6 @@ msgstr "<emph>效果</emph>"
msgctxt ""
"04060109.xhp\n"
"par_id3154558\n"
-"187\n"
"help.text"
msgid "0 or missing"
msgstr "0 或空缺"
@@ -20503,7 +19612,6 @@ msgstr "0 或空缺"
msgctxt ""
"04060109.xhp\n"
"par_id3145596\n"
-"188\n"
"help.text"
msgid "Number format from the \"Default\" cell style"
msgstr "采用“默认”单元格样式中的数字格式"
@@ -20512,7 +19620,6 @@ msgstr "采用“默认”单元格样式中的数字格式"
msgctxt ""
"04060109.xhp\n"
"par_id3152785\n"
-"189\n"
"help.text"
msgid "1"
msgstr "1"
@@ -20521,7 +19628,6 @@ msgstr "1"
msgctxt ""
"04060109.xhp\n"
"par_id3154380\n"
-"190\n"
"help.text"
msgid "Data are always interpreted in the standard format for US English"
msgstr "采用英语(美国)标准格式来表示数据"
@@ -20530,7 +19636,6 @@ msgstr "采用英语(美国)标准格式来表示数据"
msgctxt ""
"04060109.xhp\n"
"par_id3150279\n"
-"191\n"
"help.text"
msgid "2"
msgstr "2"
@@ -20539,7 +19644,6 @@ msgstr "2"
msgctxt ""
"04060109.xhp\n"
"par_id3153775\n"
-"192\n"
"help.text"
msgid "Data are retrieved as text; no conversion to numbers"
msgstr "数据只是当作文字采用,而不转化成数字。"
@@ -20548,7 +19652,6 @@ msgstr "数据只是当作文字采用,而不转化成数字。"
msgctxt ""
"04060109.xhp\n"
"hd_id3149546\n"
-"35\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -20557,7 +19660,6 @@ msgstr "示例"
msgctxt ""
"04060109.xhp\n"
"par_id3148734\n"
-"36\n"
"help.text"
msgid "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\data1.ods\";\"sheet1.A1\")</item> reads the contents of cell A1 in sheet1 of the <item type=\"productname\">%PRODUCTNAME</item> Calc spreadsheet data1.ods."
msgstr ""
@@ -20566,7 +19668,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3153081\n"
-"37\n"
"help.text"
msgid "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\motto.odt\";\"Today's motto\")</item> returns a motto in the cell containing this formula. First, you must enter a line in the motto.odt document containing the motto text and define it as the first line of a section named <item type=\"literal\">Today's Motto</item> (in <item type=\"productname\">%PRODUCTNAME</item> Writer under <emph>Insert - Section</emph>). If the motto is modified (and saved) in the <item type=\"productname\">%PRODUCTNAME</item> Writer document, the motto is updated in all <item type=\"productname\">%PRODUCTNAME</item> Calc cells in which this DDE link is defined."
msgstr ""
@@ -20583,7 +19684,6 @@ msgstr "<bookmark_value>ERRORTYPE 函数</bookmark_value>"
msgctxt ""
"04060109.xhp\n"
"hd_id3153114\n"
-"38\n"
"help.text"
msgid "ERRORTYPE"
msgstr "ERRORTYPE"
@@ -20592,7 +19692,6 @@ msgstr "ERRORTYPE"
msgctxt ""
"04060109.xhp\n"
"par_id3148568\n"
-"39\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEHLERTYP\">Returns the number corresponding to an <link href=\"text/scalc/05/02140000.xhp\" name=\"error value\">error value</link> occurring in a different cell.</ahelp> With the aid of this number, you can generate an error message text."
msgstr "<ahelp hid=\"HID_FUNC_FEHLERTYP\">返回与不同单元格中出现的<link href=\"text/scalc/05/02140000.xhp\" name=\"错误值\">错误值</link>相对应的数字。</ahelp>可以利用此数字生成错误消息文本。"
@@ -20601,7 +19700,6 @@ msgstr "<ahelp hid=\"HID_FUNC_FEHLERTYP\">返回与不同单元格中出现的<l
msgctxt ""
"04060109.xhp\n"
"par_id3149877\n"
-"40\n"
"help.text"
msgid "The Status Bar displays the predefined error code from <item type=\"productname\">%PRODUCTNAME</item> if you click the cell containing the error."
msgstr "如果单击含有错误值的单元格,预设的错误码就会显示在 <item type=\"productname\">%PRODUCTNAME</item> 状态栏中。"
@@ -20610,7 +19708,6 @@ msgstr "如果单击含有错误值的单元格,预设的错误码就会显示
msgctxt ""
"04060109.xhp\n"
"hd_id3154327\n"
-"41\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -20619,7 +19716,6 @@ msgstr "语法"
msgctxt ""
"04060109.xhp\n"
"par_id3151322\n"
-"42\n"
"help.text"
msgid "ERRORTYPE(Reference)"
msgstr "ERRORTYPE(reference)"
@@ -20628,7 +19724,6 @@ msgstr "ERRORTYPE(reference)"
msgctxt ""
"04060109.xhp\n"
"par_id3150132\n"
-"43\n"
"help.text"
msgid "<emph>Reference</emph> contains the address of the cell in which the error occurs."
msgstr "<emph>reference</emph> 是一个出现错误值的单元格引用。"
@@ -20637,7 +19732,6 @@ msgstr "<emph>reference</emph> 是一个出现错误值的单元格引用。"
msgctxt ""
"04060109.xhp\n"
"hd_id3145248\n"
-"44\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -20646,7 +19740,6 @@ msgstr "示例"
msgctxt ""
"04060109.xhp\n"
"par_id3146904\n"
-"45\n"
"help.text"
msgid "If cell A1 displays Err:518, the function <item type=\"input\">=ERRORTYPE(A1)</item> returns the number 518."
msgstr "如果单元格 A1 显示 Err:518,该函数 <item type=\"input\">=ERRORTYPE(A1)</item> 返回数字 518。"
@@ -20663,7 +19756,6 @@ msgstr "<bookmark_value>INDEX 函数</bookmark_value>"
msgctxt ""
"04060109.xhp\n"
"hd_id3151221\n"
-"47\n"
"help.text"
msgid "INDEX"
msgstr "INDEX"
@@ -20672,7 +19764,6 @@ msgstr "INDEX"
msgctxt ""
"04060109.xhp\n"
"par_id3150268\n"
-"48\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_INDEX\">INDEX returns a sub range, specified by row and column number, or an optional range index. Depending on context, INDEX returns a reference or content.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_INDEX\">INDEX 返回子区域,该区域由行号和列号或者可选的区域索引指定。依赖于上下文,INDEX 返回一个引用或内容。</ahelp>"
@@ -20681,7 +19772,6 @@ msgstr "<ahelp hid=\"HID_FUNC_INDEX\">INDEX 返回子区域,该区域由行号
msgctxt ""
"04060109.xhp\n"
"hd_id3156063\n"
-"49\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -20690,7 +19780,6 @@ msgstr "语法"
msgctxt ""
"04060109.xhp\n"
"par_id3149007\n"
-"50\n"
"help.text"
msgid "INDEX(Reference; Row; Column; Range)"
msgstr "INDEX(Reference; Row; Column; Range)"
@@ -20699,7 +19788,6 @@ msgstr "INDEX(Reference; Row; Column; Range)"
msgctxt ""
"04060109.xhp\n"
"par_id3153260\n"
-"51\n"
"help.text"
msgid "<emph>Reference</emph> is a reference, entered either directly or by specifying a range name. If the reference consists of multiple ranges, you must enclose the reference or range name in parentheses."
msgstr "<emph>Reference</emph> 是一个单元格引用,可以直接输入,也可以通过指定区域名称来输入。如果该引用含有多重区域,则必须用圆括号将引用或区域名称括起来。"
@@ -20708,7 +19796,6 @@ msgstr "<emph>Reference</emph> 是一个单元格引用,可以直接输入,
msgctxt ""
"04060109.xhp\n"
"par_id3145302\n"
-"52\n"
"help.text"
msgid "<emph>Row</emph> (optional) represents the row index of the reference range, for which to return a value. In case of zero (no specific row) all referenced rows are returned."
msgstr "<emph>Row</emph> (可选的)代表所引用区域的行索引,将为该行返回一个值。若为零(未指定行),则返回所有引用行。"
@@ -20717,7 +19804,6 @@ msgstr "<emph>Row</emph> (可选的)代表所引用区域的行索引,将
msgctxt ""
"04060109.xhp\n"
"par_id3154628\n"
-"53\n"
"help.text"
msgid "<emph>Column</emph> (optional) represents the column index of the reference range, for which to return a value. In case of zero (no specific column) all referenced columns are returned."
msgstr "<emph>Column</emph> (可选择的)代表所引用区域的列索引,将为该列标返回一个值。若为零(未指定列),则返回所有引用的列。"
@@ -20726,7 +19812,6 @@ msgstr "<emph>Column</emph> (可选择的)代表所引用区域的列索引
msgctxt ""
"04060109.xhp\n"
"par_id3155514\n"
-"54\n"
"help.text"
msgid "<emph>Range</emph> (optional) represents the index of the subrange if referring to a multiple range."
msgstr "如果引用了多重区域,则 <emph>Range</emph> (可选择的)代表子区域的索引。"
@@ -20735,7 +19820,6 @@ msgstr "如果引用了多重区域,则 <emph>Range</emph> (可选择的)
msgctxt ""
"04060109.xhp\n"
"hd_id3145264\n"
-"55\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -20744,7 +19828,6 @@ msgstr "示例"
msgctxt ""
"04060109.xhp\n"
"par_id3159112\n"
-"56\n"
"help.text"
msgid "<item type=\"input\">=INDEX(Prices;4;1)</item> returns the value from row 4 and column 1 of the database range defined in <emph>Data - Define</emph> as <emph>Prices</emph>."
msgstr "<item type=\"input\">=INDEX(Prices;4;1)</item> 返回通过菜单<emph>数据 - 定义</emph>所定义的数据库区域 <emph>Prices</emph> 中的第 4 行第 1 列的值。"
@@ -20753,7 +19836,6 @@ msgstr "<item type=\"input\">=INDEX(Prices;4;1)</item> 返回通过菜单<emph>
msgctxt ""
"04060109.xhp\n"
"par_id3150691\n"
-"57\n"
"help.text"
msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Sheet - Named Ranges and Expressions - Define</emph>."
msgstr ""
@@ -20778,7 +19860,6 @@ msgstr "<item type=\"input\">=INDEX(A1:B6;0;1)</item> 返回 A1:B6 中第一列
msgctxt ""
"04060109.xhp\n"
"par_id3158419\n"
-"58\n"
"help.text"
msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Sheet - Named Ranges and Expressions - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
msgstr ""
@@ -20787,7 +19868,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3148595\n"
-"59\n"
"help.text"
msgid "<item type=\"input\">=INDEX(A1:B6;1;1)</item> indicates the value in the upper-left of the A1:B6 range."
msgstr "<item type=\"input\">=INDEX(A1:B6;1;1)</item> 的结果是 A1:B6 区域中左上角单元格处的数值。"
@@ -20812,7 +19892,6 @@ msgstr "<bookmark_value>INDIRECT 函数</bookmark_value>"
msgctxt ""
"04060109.xhp\n"
"hd_id3153181\n"
-"62\n"
"help.text"
msgid "INDIRECT"
msgstr "INDIRECT"
@@ -20821,7 +19900,6 @@ msgstr "INDIRECT"
msgctxt ""
"04060109.xhp\n"
"par_id3147169\n"
-"63\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_INDIREKT\">Returns the <emph>reference</emph> specified by a text string.</ahelp> This function can also be used to return the area of a corresponding string."
msgstr "<ahelp hid=\"HID_FUNC_INDIREKT\">返回文本字符串指定的<emph>引用</emph>。</ahelp>此函数也可用于返回相应字符串的区域。"
@@ -20830,7 +19908,6 @@ msgstr "<ahelp hid=\"HID_FUNC_INDIREKT\">返回文本字符串指定的<emph>引
msgctxt ""
"04060109.xhp\n"
"hd_id3153717\n"
-"64\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -20839,7 +19916,6 @@ msgstr "语法"
msgctxt ""
"04060109.xhp\n"
"par_id3149824\n"
-"65\n"
"help.text"
msgid "INDIRECT(Ref; A1)"
msgstr "INDIRECT(Ref; A1)"
@@ -20848,7 +19924,6 @@ msgstr "INDIRECT(Ref; A1)"
msgctxt ""
"04060109.xhp\n"
"par_id3154317\n"
-"66\n"
"help.text"
msgid "<emph>Ref</emph> represents a reference to a cell or an area (in text form) for which to return the contents."
msgstr "<emph>Ref</emph> 表示对要返回其内容的单元格或区域的引用 (以文字格式表示)。"
@@ -20873,7 +19948,6 @@ msgstr "如果您打开了一个使用字符串函数计算间接地址的 Excel
msgctxt ""
"04060109.xhp\n"
"hd_id3150389\n"
-"67\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -20882,7 +19956,6 @@ msgstr "示例"
msgctxt ""
"04060109.xhp\n"
"par_id3150608\n"
-"68\n"
"help.text"
msgid "<item type=\"input\">=INDIRECT(A1)</item> equals 100 if A1 contains C108 as a reference and cell C108 contains a value of <item type=\"input\">100</item>."
msgstr "如果 A1 引用的是 C108,而单元格 C108 内含有数值 <item type=\"input\">100</item>,则 <item type=\"input\">=INDIRECT(A1)</item> 等于 100。"
@@ -20891,7 +19964,6 @@ msgstr "如果 A1 引用的是 C108,而单元格 C108 内含有数值 <item ty
msgctxt ""
"04060109.xhp\n"
"par_id3083286\n"
-"181\n"
"help.text"
msgid "<item type=\"input\">=SUM(INDIRECT(\"a1:\" & ADDRESS(1;3)))</item> totals the cells in the area of A1 up to the cell with the address defined by row 1 and column 3. This means that area A1:C1 is totaled."
msgstr "<item type=\"input\">=SUM(INDIRECT(\"a1:\" & ADDRESS(1;3)))</item> 计算单元格 A1 与地址定义为第 1 行第 3 列的单元格之间的单元格总和。即计算区域 A1:C1 的总和。"
@@ -20908,7 +19980,6 @@ msgstr "<bookmark_value>COLUMN 函数</bookmark_value>"
msgctxt ""
"04060109.xhp\n"
"hd_id3154818\n"
-"70\n"
"help.text"
msgid "COLUMN"
msgstr "COLUMN"
@@ -20917,7 +19988,6 @@ msgstr "COLUMN"
msgctxt ""
"04060109.xhp\n"
"par_id3149711\n"
-"193\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_SPALTE\">Returns the column number of a cell reference.</ahelp> If the reference is a cell the column number of the cell is returned; if the parameter is a cell area, the corresponding column numbers are returned in a single-row <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"array\">array</link> if the formula is entered <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">as an array formula</link>. If the COLUMN function with an area reference parameter is not used for an array formula, only the column number of the first cell within the area is determined."
msgstr "<ahelp hid=\"HID_FUNC_SPALTE\">返回单元格引用的列号。</ahelp> 如果引用的是一个单元格,函数返回的是单元格的列号;如果参数是一个单元格区域,则以一个单行<link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"矩阵\">矩阵</link>来返回相应的列号。如果函数公式<link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"作为矩阵公式\">作为矩阵公式</link>使用。 如果函数 COLUMN 引用的是一个单元格范围,且函数不是作为矩阵公式使用的,则只返回范围中第一个单元格的列号。"
@@ -20926,7 +19996,6 @@ msgstr "<ahelp hid=\"HID_FUNC_SPALTE\">返回单元格引用的列号。</ahelp>
msgctxt ""
"04060109.xhp\n"
"hd_id3149283\n"
-"72\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -20935,7 +20004,6 @@ msgstr "语法"
msgctxt ""
"04060109.xhp\n"
"par_id3149447\n"
-"73\n"
"help.text"
msgid "COLUMN(Reference)"
msgstr "COLUMN(Reference)"
@@ -20944,7 +20012,6 @@ msgstr "COLUMN(Reference)"
msgctxt ""
"04060109.xhp\n"
"par_id3156310\n"
-"74\n"
"help.text"
msgid "<emph>Reference</emph> is the reference to a cell or cell area whose first column number is to be found."
msgstr "<emph>reference</emph>是一个要获得其列号的单元格或单元格区域。"
@@ -20953,7 +20020,6 @@ msgstr "<emph>reference</emph>是一个要获得其列号的单元格或单元
msgctxt ""
"04060109.xhp\n"
"par_id3155837\n"
-"194\n"
"help.text"
msgid "If no reference is entered, the column number of the cell in which the formula is entered is found. <item type=\"productname\">%PRODUCTNAME</item> Calc automatically sets the reference to the current cell."
msgstr "在省略对参数 reference 的输入时,函数反馈的便是公式所在处的单元格列号(<item type=\"productname\">%PRODUCTNAME</item> Calc 会自动引用光标所在之处的单元格)。"
@@ -20962,7 +20028,6 @@ msgstr "在省略对参数 reference 的输入时,函数反馈的便是公式
msgctxt ""
"04060109.xhp\n"
"hd_id3152932\n"
-"75\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -20971,7 +20036,6 @@ msgstr "示例"
msgctxt ""
"04060109.xhp\n"
"par_id3147571\n"
-"76\n"
"help.text"
msgid "<item type=\"input\">=COLUMN(A1)</item> equals 1. Column A is the first column in the table."
msgstr "<item type=\"input\">=COLUMNS(A1)</item> 等于 1。A 列是表格中的第一列。"
@@ -20980,7 +20044,6 @@ msgstr "<item type=\"input\">=COLUMNS(A1)</item> 等于 1。A 列是表格中的
msgctxt ""
"04060109.xhp\n"
"par_id3147079\n"
-"77\n"
"help.text"
msgid "<item type=\"input\">=COLUMN(C3:E3)</item> equals 3. Column C is the third column in the table."
msgstr "<item type=\"input\">=COLUMNS(C3:E3)</item> 等于 3。C 列是表格中的第三列。"
@@ -20989,7 +20052,6 @@ msgstr "<item type=\"input\">=COLUMNS(C3:E3)</item> 等于 3。C 列是表格中
msgctxt ""
"04060109.xhp\n"
"par_id3146861\n"
-"195\n"
"help.text"
msgid "<item type=\"input\">=COLUMN(D3:G10)</item> returns 4 because column D is the fourth column in the table and the COLUMN function is not used as an array formula. (In this case, the first value of the array is always used as the result.)"
msgstr "<item type=\"input\">=COLUMN(D3:G10)</item> 返回 4,因为 D 列是表格中的第四列,并且函数 COLUMN 不能用作数组公式。(在这种情况下,数组的第一个数值被作为结果。)"
@@ -20998,7 +20060,6 @@ msgstr "<item type=\"input\">=COLUMN(D3:G10)</item> 返回 4,因为 D 列是
msgctxt ""
"04060109.xhp\n"
"par_id3156320\n"
-"196\n"
"help.text"
msgid "<item type=\"input\">{=COLUMN(B2:B7)}</item> and <item type=\"input\">=COLUMN(B2:B7)</item> both return 2 because the reference only contains column B as the second column in the table. Because single-column areas have only one column number, it does not make a difference whether or not the formula is used as an array formula."
msgstr "<item type=\"input\">{=COLUMN(B2:B7)}</item> 和 <item type=\"input\">=COLUMN(B2:B7)</item> 都返回 2,因为引用仅包含在表格中作为第二列的 B 列。由于单列区域仅有一个列编号,所以公式是否作为数组公式使用对结果没有影响。"
@@ -21007,7 +20068,6 @@ msgstr "<item type=\"input\">{=COLUMN(B2:B7)}</item> 和 <item type=\"input\">=C
msgctxt ""
"04060109.xhp\n"
"par_id3150872\n"
-"197\n"
"help.text"
msgid "<item type=\"input\">=COLUMN()</item> returns 3 if the formula was entered in column C."
msgstr "如果在列 C 中输入公式,则 <item type=\"input\">=COLUMN()</item> 返回 3。"
@@ -21016,7 +20076,6 @@ msgstr "如果在列 C 中输入公式,则 <item type=\"input\">=COLUMN()</ite
msgctxt ""
"04060109.xhp\n"
"par_id3153277\n"
-"198\n"
"help.text"
msgid "<item type=\"input\">{=COLUMN(Rabbit)}</item> returns the single-row array (3, 4) if \"Rabbit\" is the named area (C1:D3)."
msgstr "如果 \"Rabbit\" 是命名的区域 (C1:D3),则 <item type=\"input\">{=COLUMN(Rabbit)}</item> 返回单行数组 (3, 4)。"
@@ -21033,7 +20092,6 @@ msgstr "<bookmark_value>COLUMNS 函数</bookmark_value>"
msgctxt ""
"04060109.xhp\n"
"hd_id3154643\n"
-"79\n"
"help.text"
msgid "COLUMNS"
msgstr "COLUMNS"
@@ -21042,7 +20100,6 @@ msgstr "COLUMNS"
msgctxt ""
"04060109.xhp\n"
"par_id3151182\n"
-"80\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_SPALTEN\">Returns the number of columns in the given reference.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_SPALTEN\">返回给定引用中的列数。</ahelp>"
@@ -21051,7 +20108,6 @@ msgstr "<ahelp hid=\"HID_FUNC_SPALTEN\">返回给定引用中的列数。</ahelp
msgctxt ""
"04060109.xhp\n"
"hd_id3149141\n"
-"81\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -21060,7 +20116,6 @@ msgstr "语法"
msgctxt ""
"04060109.xhp\n"
"par_id3154047\n"
-"82\n"
"help.text"
msgid "COLUMNS(Array)"
msgstr "COLUMNS(Array)"
@@ -21069,7 +20124,6 @@ msgstr "COLUMNS(Array)"
msgctxt ""
"04060109.xhp\n"
"par_id3154745\n"
-"83\n"
"help.text"
msgid "<emph>Array</emph> is the reference to a cell range whose total number of columns is to be found. The argument can also be a single cell."
msgstr "<emph>Array</emph> 用于指定要计算其列数的单元格区域,该参数也可以是一个单元格"
@@ -21078,7 +20132,6 @@ msgstr "<emph>Array</emph> 用于指定要计算其列数的单元格区域,
msgctxt ""
"04060109.xhp\n"
"hd_id3153622\n"
-"84\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -21087,7 +20140,6 @@ msgstr "示例"
msgctxt ""
"04060109.xhp\n"
"par_id3149577\n"
-"200\n"
"help.text"
msgid "<item type=\"input\">=COLUMNS(B5)</item> returns 1 because a cell only contains one column."
msgstr "<item type=\"input\">=COLUMNS(B5)</item> 返回 1,因为单元格仅包含 1 列。"
@@ -21096,7 +20148,6 @@ msgstr "<item type=\"input\">=COLUMNS(B5)</item> 返回 1,因为单元格仅
msgctxt ""
"04060109.xhp\n"
"par_id3145649\n"
-"85\n"
"help.text"
msgid "<item type=\"input\">=COLUMNS(A1:C5)</item> equals 3. The reference comprises three columns."
msgstr "<item type=\"input\">=COLUMNS(A1:C5)</item> 等于 3。该引用包含 3 列。"
@@ -21105,7 +20156,6 @@ msgstr "<item type=\"input\">=COLUMNS(A1:C5)</item> 等于 3。该引用包含 3
msgctxt ""
"04060109.xhp\n"
"par_id3155846\n"
-"201\n"
"help.text"
msgid "<item type=\"input\">=COLUMNS(Rabbit)</item> returns 2 if <item type=\"literal\">Rabbit</item> is the named range (C1:D3)."
msgstr "如果 <item type=\"literal\">Rabbit</item> 是命名的区域 (C1:D3),则 <item type=\"input\">=COLUMNS(Rabbit)</item> 返回 2。"
@@ -21122,7 +20172,6 @@ msgstr "<bookmark_value>垂直查找函数</bookmark_value><bookmark_value>VLOOK
msgctxt ""
"04060109.xhp\n"
"hd_id3153152\n"
-"87\n"
"help.text"
msgid "VLOOKUP"
msgstr "VLOOKUP"
@@ -21131,7 +20180,6 @@ msgstr "VLOOKUP"
msgctxt ""
"04060109.xhp\n"
"par_id3149984\n"
-"88\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_SVERWEIS\">Vertical search with reference to adjacent cells to the right.</ahelp> This function checks if a specific value is contained in the first column of an array. The function then returns the value in the same row of the column named by <item type=\"literal\">Index</item>. If the <item type=\"literal\">Sorted</item> parameter is omitted or set to TRUE or one, it is assumed that the data is sorted in ascending order. In this case, if the exact <item type=\"literal\">SearchCriterion</item> is not found, the last value that is smaller than the criterion will be returned. If <item type=\"literal\">Sorted</item> is set to FALSE or zero, an exact match must be found, otherwise the error <emph>Error: Value Not Available</emph> will be the result. Thus with a value of zero the data does not need to be sorted in ascending order."
msgstr ""
@@ -21140,7 +20188,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"hd_id3146898\n"
-"89\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -21149,7 +20196,6 @@ msgstr "语法"
msgctxt ""
"04060109.xhp\n"
"par_id3150156\n"
-"90\n"
"help.text"
msgid "=VLOOKUP(SearchCriterion; Array; Index; Sorted)"
msgstr ""
@@ -21158,7 +20204,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3149289\n"
-"91\n"
"help.text"
msgid "<emph>SearchCriterion</emph> is the value searched for in the first column of the array."
msgstr "<emph>SearchCriterion</emph> 是在数组的第一列中要查找的值。"
@@ -21167,7 +20212,6 @@ msgstr "<emph>SearchCriterion</emph> 是在数组的第一列中要查找的值
msgctxt ""
"04060109.xhp\n"
"par_id3153884\n"
-"92\n"
"help.text"
msgid "<emph>Array</emph> is the reference, which is to comprise at least two columns."
msgstr "<emph>Array</emph> 是至少包括两列的引用。"
@@ -21176,7 +20220,6 @@ msgstr "<emph>Array</emph> 是至少包括两列的引用。"
msgctxt ""
"04060109.xhp\n"
"par_id3156005\n"
-"93\n"
"help.text"
msgid "<emph>Index</emph> is the number of the column in the array that contains the value to be returned. The first column has the number 1."
msgstr "<emph>Index</emph> 是数组中的列编号,该数组包含要返回的数值。第一列编号为 1。"
@@ -21185,7 +20228,6 @@ msgstr "<emph>Index</emph> 是数组中的列编号,该数组包含要返回
msgctxt ""
"04060109.xhp\n"
"par_id3151208\n"
-"94\n"
"help.text"
msgid "<emph>Sorted</emph> is an optional parameter that indicates whether the first column in the array is sorted in ascending order. Enter the Boolean value FALSE or zero if the first column is not sorted in ascending order. Sorted columns can be searched much faster and the function always returns a value, even if the search value was not matched exactly, if it is between the lowest and highest value of the sorted list. In unsorted lists, the search value must be matched exactly. Otherwise the function will return this message: <emph>Error: Value Not Available</emph>."
msgstr ""
@@ -21194,7 +20236,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"hd_id3147487\n"
-"95\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -21203,7 +20244,6 @@ msgstr "示例"
msgctxt ""
"04060109.xhp\n"
"par_id3154129\n"
-"96\n"
"help.text"
msgid "You want to enter the number of a dish on the menu in cell A1, and the name of the dish is to appear as text in the neighboring cell (B1) immediately. The Number to Name assignment is contained in the D1:E100 array. D1 contains <item type=\"input\">100</item>, E1 contains the name <item type=\"input\">Vegetable Soup</item>, and so forth, for 100 menu items. The numbers in column D are sorted in ascending order; thus, the optional <item type=\"literal\">Sorted</item> parameter is not necessary."
msgstr ""
@@ -21212,7 +20252,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3145663\n"
-"97\n"
"help.text"
msgid "Enter the following formula in B1:"
msgstr "请在 B1 处输入下列公式:"
@@ -21221,7 +20260,6 @@ msgstr "请在 B1 处输入下列公式:"
msgctxt ""
"04060109.xhp\n"
"par_id3151172\n"
-"98\n"
"help.text"
msgid "<item type=\"input\">=VLOOKUP(A1;D1:E100;2)</item>"
msgstr "<item type=\"input\">=VLOOKUP(A1;D1:E100;2)</item>"
@@ -21230,7 +20268,6 @@ msgstr "<item type=\"input\">=VLOOKUP(A1;D1:E100;2)</item>"
msgctxt ""
"04060109.xhp\n"
"par_id3149200\n"
-"99\n"
"help.text"
msgid "As soon as you enter a number in A1 B1 will show the corresponding text contained in the second column of reference D1:E100. Entering a nonexistent number displays the text with the next number down. To prevent this, enter FALSE as the last parameter in the formula so that an error message is generated when a nonexistent number is entered."
msgstr "这样一旦您在单元格A1处键入一道菜的号码后,单元格B1处便会显示这道菜的名称(菜的名称在单元格区域 D1:E100 的第2列内)。键入一个在单元格区域 D1:E100 内不存在的号码,单元格B1处显示的便是小于等于此号码的最大值。如果您不希望这种近似匹配,可在公式的可选参数sort order处键入逻辑值FALSE,这样在键入一个单元格区域 D1:E100 内不存在的号码时,函数便会反馈一个错误值。"
@@ -21247,7 +20284,6 @@ msgstr "<bookmark_value>工作表数目;查找</bookmark_value><bookmark_value>S
msgctxt ""
"04060109.xhp\n"
"hd_id3153905\n"
-"215\n"
"help.text"
msgid "SHEET"
msgstr "SHEET"
@@ -21256,7 +20292,6 @@ msgstr "SHEET"
msgctxt ""
"04060109.xhp\n"
"par_id3150309\n"
-"216\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TABELLE\">Returns the sheet number of a reference or a string representing a sheet name.</ahelp> If you do not enter any parameters, the result is the sheet number of the spreadsheet containing the formula."
msgstr "<ahelp hid=\"HID_FUNC_TABELLE\">返回引用的工作表号或代表工作表名称的字符串。</ahelp>如果不输入任何参数,返回的将是包含公式的电子表格的工作表号。"
@@ -21265,7 +20300,6 @@ msgstr "<ahelp hid=\"HID_FUNC_TABELLE\">返回引用的工作表号或代表工
msgctxt ""
"04060109.xhp\n"
"hd_id3148564\n"
-"217\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -21274,7 +20308,6 @@ msgstr "语法"
msgctxt ""
"04060109.xhp\n"
"par_id3153095\n"
-"218\n"
"help.text"
msgid "SHEET(Reference)"
msgstr "SHEET(Reference)"
@@ -21283,7 +20316,6 @@ msgstr "SHEET(Reference)"
msgctxt ""
"04060109.xhp\n"
"par_id3154588\n"
-"219\n"
"help.text"
msgid "<emph>Reference</emph> is optional and is the reference to a cell, an area, or a sheet name string."
msgstr "<emph>Reference</emph> 是一个可选参数,是对单元格、区域或工作表名称字符串的引用。"
@@ -21292,7 +20324,6 @@ msgstr "<emph>Reference</emph> 是一个可选参数,是对单元格、区域
msgctxt ""
"04060109.xhp\n"
"hd_id3155399\n"
-"220\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -21301,7 +20332,6 @@ msgstr "示例"
msgctxt ""
"04060109.xhp\n"
"par_id3146988\n"
-"221\n"
"help.text"
msgid "<item type=\"input\">=SHEET(Sheet2.A1)</item> returns 2 if Sheet2 is the second sheet in the spreadsheet document."
msgstr "如果工作表 Sheet2 是电子表格文档的第二个工作表,则 <item type=\"input\">=SHEET(Sheet2.A1)</item> 返回 2。"
@@ -21318,7 +20348,6 @@ msgstr "<bookmark_value>工作表数目; 函数</bookmark_value><bookmark_value>
msgctxt ""
"04060109.xhp\n"
"hd_id3148829\n"
-"222\n"
"help.text"
msgid "SHEETS"
msgstr "SHEETS"
@@ -21327,7 +20356,6 @@ msgstr "SHEETS"
msgctxt ""
"04060109.xhp\n"
"par_id3148820\n"
-"223\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TABELLEN\">Determines the number of sheets in a reference.</ahelp> If you do not enter any parameters, it returns the number of sheets in the current document."
msgstr "<ahelp hid=\"HID_FUNC_TABELLEN\">确定引用中工作表的数目。</ahelp> 如果不输入任何参数,将返回当前文档中的工作表数目。"
@@ -21336,7 +20364,6 @@ msgstr "<ahelp hid=\"HID_FUNC_TABELLEN\">确定引用中工作表的数目。</a
msgctxt ""
"04060109.xhp\n"
"hd_id3154220\n"
-"224\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -21345,7 +20372,6 @@ msgstr "语法"
msgctxt ""
"04060109.xhp\n"
"par_id3150777\n"
-"225\n"
"help.text"
msgid "SHEETS(Reference)"
msgstr "SHEETS(Reference)"
@@ -21354,7 +20380,6 @@ msgstr "SHEETS(Reference)"
msgctxt ""
"04060109.xhp\n"
"par_id3153060\n"
-"226\n"
"help.text"
msgid "<emph>Reference</emph> is the reference to a sheet or an area. This parameter is optional."
msgstr "<emph>Reference</emph> 是对工作表或区域的引用,这是一个可选参数。"
@@ -21363,7 +20388,6 @@ msgstr "<emph>Reference</emph> 是对工作表或区域的引用,这是一个
msgctxt ""
"04060109.xhp\n"
"hd_id3149766\n"
-"227\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -21372,7 +20396,6 @@ msgstr "示例"
msgctxt ""
"04060109.xhp\n"
"par_id3150507\n"
-"228\n"
"help.text"
msgid "<item type=\"input\">=SHEETS(Sheet1.A1:Sheet3.G12)</item> returns 3 if Sheet1, Sheet2, and Sheet3 exist in the sequence indicated."
msgstr "如果工作表依次为 Sheet1、Sheet2 和 Sheet3,则 <item type=\"input\">=SHEETS(Sheet1.A1:Sheet3.G12)</item> 返回 3。"
@@ -21389,7 +20412,6 @@ msgstr "<bookmark_value>MATCH 函数</bookmark_value>"
msgctxt ""
"04060109.xhp\n"
"hd_id3158407\n"
-"101\n"
"help.text"
msgid "MATCH"
msgstr "MATCH"
@@ -21398,7 +20420,6 @@ msgstr "MATCH"
msgctxt ""
"04060109.xhp\n"
"par_id3154896\n"
-"102\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VERGLEICH\">Returns the relative position of an item in an array that matches a specified value.</ahelp> The function returns the position of the value found in the lookup_array as a number."
msgstr "<ahelp hid=\"HID_FUNC_VERGLEICH\">返回与指定值匹配的项在矩阵中的相对位置。</ahelp>此函数以数字形式返回找到的数值在 lookup_array 中的位置。"
@@ -21407,7 +20428,6 @@ msgstr "<ahelp hid=\"HID_FUNC_VERGLEICH\">返回与指定值匹配的项在矩
msgctxt ""
"04060109.xhp\n"
"hd_id3153834\n"
-"103\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -21416,7 +20436,6 @@ msgstr "语法"
msgctxt ""
"04060109.xhp\n"
"par_id3159152\n"
-"104\n"
"help.text"
msgid "MATCH(SearchCriterion; LookupArray; Type)"
msgstr "MATCH(SearchCriterion; LookupArray; Type)"
@@ -21425,7 +20444,6 @@ msgstr "MATCH(SearchCriterion; LookupArray; Type)"
msgctxt ""
"04060109.xhp\n"
"par_id3149336\n"
-"105\n"
"help.text"
msgid "<emph>SearchCriterion</emph> is the value which is to be searched for in the single-row or single-column array."
msgstr "<emph>SearchCriterion</emph> 是在单行或单列数组中要查找的数值。"
@@ -21434,7 +20452,6 @@ msgstr "<emph>SearchCriterion</emph> 是在单行或单列数组中要查找的
msgctxt ""
"04060109.xhp\n"
"par_id3159167\n"
-"106\n"
"help.text"
msgid "<emph>LookupArray</emph> is the reference searched. A lookup array can be a single row or column, or part of a single row or column."
msgstr "<emph>LookupArray</emph> 是查找的引用。查找数组可以是单行或单列,或者是单行或单列的一部分。"
@@ -21443,7 +20460,6 @@ msgstr "<emph>LookupArray</emph> 是查找的引用。查找数组可以是单
msgctxt ""
"04060109.xhp\n"
"par_id3147239\n"
-"107\n"
"help.text"
msgid "<emph>Type</emph> may take the values 1, 0, or -1. If Type = 1 or if this optional parameter is missing, it is assumed that the first column of the search array is sorted in ascending order. If Type = -1 it is assumed that the column in sorted in descending order. This corresponds to the same function in Microsoft Excel."
msgstr "<emph>Type</emph>可取值为 1, 0, 或 -1。如果 Type = 1 或未设置这个可选参数,则认为查找矩阵的第一列按升序排列。如果 Type = -1,则认为列按降序排列。这与 Microsoft Excel 中相同的函数一致。"
@@ -21452,7 +20468,6 @@ msgstr "<emph>Type</emph>可取值为 1, 0, 或 -1。如果 Type = 1 或未设
msgctxt ""
"04060109.xhp\n"
"par_id3154265\n"
-"231\n"
"help.text"
msgid "If Type = 0, only exact matches are found. If the search criterion is found more than once, the function returns the index of the first matching value. Only if Type = 0 can you search for regular expressions (if enabled in calculation options) or wildcards (if enabled in calculation options)."
msgstr ""
@@ -21461,7 +20476,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3147528\n"
-"232\n"
"help.text"
msgid "If Type = 1 or the third parameter is missing, the index of the last value that is smaller or equal to the search criterion is returned. This applies even when the search array is not sorted. For Type = -1, the first value that is larger or equal is returned."
msgstr "如果 Type = 1 或者 未指定第三个参数,将返回最后一个小于或等于查找条件的数值。即使查找的数组未排序也同样适用。对于 Type = -1,将返回第一个大于或等于查找条件的数值。"
@@ -21470,7 +20484,6 @@ msgstr "如果 Type = 1 或者 未指定第三个参数,将返回最后一个
msgctxt ""
"04060109.xhp\n"
"hd_id3155119\n"
-"108\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -21479,7 +20492,6 @@ msgstr "示例"
msgctxt ""
"04060109.xhp\n"
"par_id3155343\n"
-"109\n"
"help.text"
msgid "<item type=\"input\">=MATCH(200;D1:D100)</item> searches the area D1:D100, which is sorted by column D, for the value 200. As soon as this value is reached, the number of the row in which it was found is returned. If a higher value is found during the search in the column, the number of the previous row is returned."
msgstr "<item type=\"input\">=MATCH(200;D1:D100)</item> 在按列 D 排序的 D1:D100 区域中查找数值 200。一旦找到这个数值,就会返回该数值所在的行号。如果在搜寻该列的过程中发现了一个更大的数值,将返回它前一行的编号。"
@@ -21496,7 +20508,6 @@ msgstr "<bookmark_value>OFFSET 函数</bookmark_value>"
msgctxt ""
"04060109.xhp\n"
"hd_id3158430\n"
-"111\n"
"help.text"
msgid "OFFSET"
msgstr "OFFSET"
@@ -21505,7 +20516,6 @@ msgstr "OFFSET"
msgctxt ""
"04060109.xhp\n"
"par_id3149167\n"
-"112\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VERSCHIEBUNG\">Returns the value of a cell offset by a certain number of rows and columns from a given reference point.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_VERSCHIEBUNG\">返回从指定引用点偏移特定行数及列数的单元格值。</ahelp>"
@@ -21514,7 +20524,6 @@ msgstr "<ahelp hid=\"HID_FUNC_VERSCHIEBUNG\">返回从指定引用点偏移特
msgctxt ""
"04060109.xhp\n"
"hd_id3146952\n"
-"113\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -21523,7 +20532,6 @@ msgstr "语法"
msgctxt ""
"04060109.xhp\n"
"par_id3159194\n"
-"114\n"
"help.text"
msgid "OFFSET(Reference; Rows; Columns; Height; Width)"
msgstr "OFFSET(Reference; Rows; Columns; Height; Width)"
@@ -21532,27 +20540,22 @@ msgstr "OFFSET(Reference; Rows; Columns; Height; Width)"
msgctxt ""
"04060109.xhp\n"
"par_id3152360\n"
-"115\n"
"help.text"
msgid "<emph>Reference</emph> is the reference from which the function searches for the new reference."
msgstr "<emph>Reference</emph> 是函数查找新引用点的位置。"
#: 04060109.xhp
-#, fuzzy
msgctxt ""
"04060109.xhp\n"
"par_id3156032\n"
-"116\n"
"help.text"
msgid "<emph>Rows</emph> is the number of rows by which the reference was corrected up (negative value) or down. Use 0 to stay in the same row."
msgstr "<emph>Rows</emph> 是单元格向上(负数)或向下移动的行数。"
#: 04060109.xhp
-#, fuzzy
msgctxt ""
"04060109.xhp\n"
"par_id3166458\n"
-"117\n"
"help.text"
msgid "<emph>Columns</emph> is the number of columns by which the reference was corrected to the left (negative value) or to the right. Use 0 to stay in the same column"
msgstr "<emph>Rows</emph> 是单元格向上(负数)或向下移动的行数。"
@@ -21561,7 +20564,6 @@ msgstr "<emph>Rows</emph> 是单元格向上(负数)或向下移动的行数
msgctxt ""
"04060109.xhp\n"
"par_id3150708\n"
-"118\n"
"help.text"
msgid "<emph>Height</emph> (optional) is the vertical height for an area that starts at the new reference position."
msgstr "<emph>Height</emph> (可选择的)是从新引用位置开始的区域的垂直高度。"
@@ -21570,7 +20572,6 @@ msgstr "<emph>Height</emph> (可选择的)是从新引用位置开始的区
msgctxt ""
"04060109.xhp\n"
"par_id3147278\n"
-"119\n"
"help.text"
msgid "<emph>Width</emph> (optional) is the horizontal width for an area that starts at the new reference position."
msgstr "<emph>Width</emph> (可选择的)是从新引用位置开始的区域的水平宽度。"
@@ -21595,7 +20596,6 @@ msgstr "参数 <emph>Height</emph> 和 <emph>Width</emph> 不能为零或者以
msgctxt ""
"04060109.xhp\n"
"hd_id3155586\n"
-"120\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -21604,7 +20604,6 @@ msgstr "示例"
msgctxt ""
"04060109.xhp\n"
"par_id3149744\n"
-"121\n"
"help.text"
msgid "<item type=\"input\">=OFFSET(A1;2;2)</item> returns the value in cell C3 (A1 moved by two rows and two columns down). If C3 contains the value <item type=\"input\">100</item> this function returns the value 100."
msgstr "<item type=\"input\">=OFFSET(A1;2;2)</item> 返回单元格 C3 的值(A1 向下移动两行两列)。如果 C3 包含数值 <item type=\"input\">100</item>,此函数返回 100。"
@@ -21634,7 +20633,6 @@ msgid "<item type=\"input\">=OFFSET(B2:C3;0;0;3;4)</item> returns a reference to
msgstr "<item type=\"input\">=OFFSET(B2:C3;0;0;3;4)</item> 返回从 B2:C3 开始,大小为 3 行 4 列 的引用区域 (B2:E4)。"
#: 04060109.xhp
-#, fuzzy
msgctxt ""
"04060109.xhp\n"
"par_id6668599\n"
@@ -21646,7 +20644,6 @@ msgstr "<item type=\"input\">=OFFSET(B2:C3;1;0;3;4)</item> 返回从 B2:C3 向
msgctxt ""
"04060109.xhp\n"
"par_id3153739\n"
-"122\n"
"help.text"
msgid "<item type=\"input\">=SUM(OFFSET(A1;2;2;5;6))</item> determines the total of the area that starts in cell C3 and has a height of 5 rows and a width of 6 columns (area=C3:H7)."
msgstr "<item type=\"input\">=SUM(OFFSET(A1;2;2;5;6))</item> 确定以单元格 C3 为出发点,共包含五行六列的单元格区域,即单元格区域 C3:H7。"
@@ -21671,7 +20668,6 @@ msgstr "<bookmark_value>LOOKUP 函数</bookmark_value>"
msgctxt ""
"04060109.xhp\n"
"hd_id3159273\n"
-"123\n"
"help.text"
msgid "LOOKUP"
msgstr "LOOKUP"
@@ -21680,7 +20676,6 @@ msgstr "LOOKUP"
msgctxt ""
"04060109.xhp\n"
"par_id3153389\n"
-"124\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VERWEIS\">Returns the contents of a cell either from a one-row or one-column range.</ahelp> Optionally, the assigned value (of the same index) is returned in a different column and row. As opposed to <link href=\"text/scalc/01/04060109.xhp#Section9\" name=\"VLOOKUP\">VLOOKUP</link> and <link href=\"text/scalc/01/04060109.xhp#Section17\" name=\"HLOOKUP\">HLOOKUP</link>, search and result vector may be at different positions; they do not have to be adjacent. Additionally, the search vector for the LOOKUP must be sorted ascending, otherwise the search will not return any usable results."
msgstr ""
@@ -21697,7 +20692,6 @@ msgstr "如果 LOOKUP 找不到搜索条件,将与小于或等于搜索条件
msgctxt ""
"04060109.xhp\n"
"hd_id3152947\n"
-"125\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -21706,7 +20700,6 @@ msgstr "语法"
msgctxt ""
"04060109.xhp\n"
"par_id3154104\n"
-"126\n"
"help.text"
msgid "LOOKUP(SearchCriterion; SearchVector; ResultVector)"
msgstr "LOOKUP(SearchCriterion; SearchVector; ResultVector)"
@@ -21715,7 +20708,6 @@ msgstr "LOOKUP(SearchCriterion; SearchVector; ResultVector)"
msgctxt ""
"04060109.xhp\n"
"par_id3150646\n"
-"127\n"
"help.text"
msgid "<emph>SearchCriterion</emph> is the value to be searched for; entered either directly or as a reference."
msgstr "<emph>SearchCriterion</emph> 是要查找的数值;直接输入或作为引用输入。"
@@ -21724,7 +20716,6 @@ msgstr "<emph>SearchCriterion</emph> 是要查找的数值;直接输入或作
msgctxt ""
"04060109.xhp\n"
"par_id3154854\n"
-"128\n"
"help.text"
msgid "<emph>SearchVector</emph> is the single-row or single-column area to be searched."
msgstr "<emph>SearchVector</emph> 是要查找的单行或单列区域。"
@@ -21733,7 +20724,6 @@ msgstr "<emph>SearchVector</emph> 是要查找的单行或单列区域。"
msgctxt ""
"04060109.xhp\n"
"par_id3149925\n"
-"129\n"
"help.text"
msgid "<emph>ResultVector</emph> is another single-row or single-column range from which the result of the function is taken. The result is the cell of the result vector with the same index as the instance found in the search vector."
msgstr "<emph>ResultVector</emph> 是另一个单行或单列区域,用于存放函数的结果。结果是结果向量单元格中的与在搜索向量中找到的向量具有相同的索引。"
@@ -21742,7 +20732,6 @@ msgstr "<emph>ResultVector</emph> 是另一个单行或单列区域,用于存
msgctxt ""
"04060109.xhp\n"
"hd_id3148624\n"
-"130\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -21751,7 +20740,6 @@ msgstr "示例"
msgctxt ""
"04060109.xhp\n"
"par_id3149809\n"
-"131\n"
"help.text"
msgid "<item type=\"input\">=LOOKUP(A1;D1:D100;F1:F100)</item> searches the corresponding cell in range D1:D100 for the number you entered in A1. For the instance found, the index is determined, for example, the 12th cell in this range. Then, the contents of the 12th cell are returned as the value of the function (in the result vector)."
msgstr "<item type=\"input\">=LOOKUP(A1;D1:D100;F1:F100)</item> 根据单元格 A1 中输入的数值,在区域 D1:D100 查找相应的单元格。如果找到匹配的单元格,则确定其索引。例如,如果找到的是该区域中第十二个单元格,则将第十二个单元格的内容作为函数值返回到结果向量中。"
@@ -21768,7 +20756,6 @@ msgstr "<bookmark_value>STYLE 函数</bookmark_value>"
msgctxt ""
"04060109.xhp\n"
"hd_id3149425\n"
-"133\n"
"help.text"
msgid "STYLE"
msgstr "STYLE"
@@ -21777,7 +20764,6 @@ msgstr "STYLE"
msgctxt ""
"04060109.xhp\n"
"par_id3150826\n"
-"134\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VORLAGE\">Applies a style to the cell containing the formula.</ahelp> After a set amount of time, another style can be applied. This function always returns the value 0, allowing you to add it to another function without changing the value. Together with the CURRENT function you can apply a color to a cell regardless of the value. For example: =...+STYLE(IF(CURRENT()>3;\"red\";\"green\")) applies the style \"red\" to the cell if the value is greater than 3, otherwise the style \"green\" is applied. Both cell formats have to be defined beforehand."
msgstr "<ahelp hid=\"HID_FUNC_VORLAGE\">将样式应用到包含公式的单元格。</ahelp> 一定时间之后,可以再应用另一个样式。此函数始终返回值 0,您可以将该值原封不动地添加到另一个函数中。与 CURRENT 函数一起使用可以将颜色应用到单元格,而不受该值的影响。例如:=...+STYLE(IF(CURRENT()>3;\"red\";\"green\")) 在值大于 3 时将样式\"红色\"应用到单元格,否则应用\"绿色\"。两种单元格格式都必须预先定义。"
@@ -21786,7 +20772,6 @@ msgstr "<ahelp hid=\"HID_FUNC_VORLAGE\">将样式应用到包含公式的单元
msgctxt ""
"04060109.xhp\n"
"hd_id3145373\n"
-"135\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -21795,7 +20780,6 @@ msgstr "语法"
msgctxt ""
"04060109.xhp\n"
"par_id3149302\n"
-"136\n"
"help.text"
msgid "STYLE(\"Style\"; Time; \"Style2\")"
msgstr "STYLE(\"Style\"; Time; \"Style2\")"
@@ -21804,7 +20788,6 @@ msgstr "STYLE(\"Style\"; Time; \"Style2\")"
msgctxt ""
"04060109.xhp\n"
"par_id3150596\n"
-"137\n"
"help.text"
msgid "<emph>Style</emph> is the name of a cell style assigned to the cell. Style names must be entered in quotation marks."
msgstr "<emph>style</emph> 是为当前单元格指定的样式名称。样式名称前后必须加上引号。"
@@ -21813,7 +20796,6 @@ msgstr "<emph>style</emph> 是为当前单元格指定的样式名称。样式
msgctxt ""
"04060109.xhp\n"
"par_id3156149\n"
-"138\n"
"help.text"
msgid "<emph>Time</emph> is an optional time range in seconds. If this parameter is missing the style will not be changed after a certain amount of time has passed."
msgstr "<emph>Time</emph> 是一个可选式的以秒为单位的时间参数。如果不填入这个实际参数,单元格样式就不会在某一时间之后发生变化。"
@@ -21822,7 +20804,6 @@ msgstr "<emph>Time</emph> 是一个可选式的以秒为单位的时间参数。
msgctxt ""
"04060109.xhp\n"
"par_id3149520\n"
-"139\n"
"help.text"
msgid "<emph>Style2</emph> is the optional name of a cell style assigned to the cell after a certain amount of time has passed. If this parameter is missing \"Default\" is assumed."
msgstr "<emph>Style2</emph> 是一个可选的单元格样式名称,在设置的时间之后单元格就会采用这个样式。如果未设置此参数,单元格将采用“默认”样式。"
@@ -21831,7 +20812,6 @@ msgstr "<emph>Style2</emph> 是一个可选的单元格样式名称,在设置
msgctxt ""
"04060109.xhp\n"
"hd_id3159254\n"
-"140\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -21840,7 +20820,6 @@ msgstr "示例"
msgctxt ""
"04060109.xhp\n"
"par_id3151374\n"
-"141\n"
"help.text"
msgid "<item type=\"input\">=STYLE(\"Invisible\";60;\"Default\")</item> formats the cell in transparent format for 60 seconds after the document was recalculated or loaded, then the Default format is assigned. Both cell formats have to be defined beforehand."
msgstr "<item type=\"input\">=STYLE(\"Invisible\";60;\"Default\")</item> 定义单元格在重新计算或装入文档 60 秒后为透明格式,然后为该单元格指定默认格式。这两种单元格格式都必须事先定义。"
@@ -21881,7 +20860,6 @@ msgstr "<bookmark_value>CHOOSE 函数</bookmark_value>"
msgctxt ""
"04060109.xhp\n"
"hd_id3150430\n"
-"142\n"
"help.text"
msgid "CHOOSE"
msgstr "CHOOSE"
@@ -21890,7 +20868,6 @@ msgstr "CHOOSE"
msgctxt ""
"04060109.xhp\n"
"par_id3143270\n"
-"143\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_WAHL\">Uses an index to return a value from a list of up to 30 values.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_WAHL\">使用索引从多达 30 个值的列表中返回一个值。</ahelp>"
@@ -21899,7 +20876,6 @@ msgstr "<ahelp hid=\"HID_FUNC_WAHL\">使用索引从多达 30 个值的列表中
msgctxt ""
"04060109.xhp\n"
"hd_id3153533\n"
-"144\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -21908,7 +20884,6 @@ msgstr "语法"
msgctxt ""
"04060109.xhp\n"
"par_id3155425\n"
-"145\n"
"help.text"
msgid "CHOOSE(Index; Value1; ...; Value30)"
msgstr "CHOOSE(Index; Value1; ...; Value30)"
@@ -21917,7 +20892,6 @@ msgstr "CHOOSE(Index; Value1; ...; Value30)"
msgctxt ""
"04060109.xhp\n"
"par_id3144755\n"
-"146\n"
"help.text"
msgid "<emph>Index</emph> is a reference or number between 1 and 30 indicating which value is to be taken from the list."
msgstr "<emph>Index</emph> 是某一个1至30的之中的要反馈数值的引用数。"
@@ -21926,7 +20900,6 @@ msgstr "<emph>Index</emph> 是某一个1至30的之中的要反馈数值的引
msgctxt ""
"04060109.xhp\n"
"par_id3149939\n"
-"147\n"
"help.text"
msgid "<emph>Value1...Value30</emph> is the list of values entered as a reference to a cell or as individual values."
msgstr "<emph>value 1...value 30</emph> 是一个数值顺序表,它是当作一个单元格的引用参数或是一个直接输入的数值。"
@@ -21935,7 +20908,6 @@ msgstr "<emph>value 1...value 30</emph> 是一个数值顺序表,它是当作
msgctxt ""
"04060109.xhp\n"
"hd_id3151253\n"
-"148\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -21944,7 +20916,6 @@ msgstr "示例"
msgctxt ""
"04060109.xhp\n"
"par_id3150625\n"
-"149\n"
"help.text"
msgid "<item type=\"input\">=CHOOSE(A1;B1;B2;B3;\"Today\";\"Yesterday\";\"Tomorrow\")</item>, for example, returns the contents of cell B2 for A1 = 2; for A1 = 4, the function returns the text \"Today\"."
msgstr "例如,<item type=\"input\">=CHOOSE(A1;B1;B2;B3;\"Today\";\"Yesterday\";\"Tomorrow\")</item>,若 A1 = 2,返回单元格 B2 的内容;若 A1 = 4,函数返回文本 \"Today\"。"
@@ -21961,7 +20932,6 @@ msgstr "<bookmark_value>HLOOKUP 函数</bookmark_value>"
msgctxt ""
"04060109.xhp\n"
"hd_id3151001\n"
-"151\n"
"help.text"
msgid "HLOOKUP"
msgstr "HLOOKUP"
@@ -21970,7 +20940,6 @@ msgstr "HLOOKUP"
msgctxt ""
"04060109.xhp\n"
"par_id3148688\n"
-"152\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_WVERWEIS\">Searches for a value and reference to the cells below the selected area.</ahelp> This function verifies if the first row of an array contains a certain value. The function returns then the value in a row of the array, named in the <emph>Index</emph>, in the same column."
msgstr "<ahelp hid=\"HID_FUNC_WVERWEIS\">在选定区域的下方搜索某个数值和对单元格的引用。</ahelp>此函数检验矩阵的第一行是否含有特定数值,然后返回由 <emph>Index</emph> 指定的矩阵行中、与搜索到的数值在同一列中的数值。"
@@ -21979,7 +20948,6 @@ msgstr "<ahelp hid=\"HID_FUNC_WVERWEIS\">在选定区域的下方搜索某个数
msgctxt ""
"04060109.xhp\n"
"hd_id3154661\n"
-"153\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -21988,7 +20956,6 @@ msgstr "语法"
msgctxt ""
"04060109.xhp\n"
"par_id3146070\n"
-"154\n"
"help.text"
msgid "HLOOKUP(SearchCriterion; Array; Index; Sorted)"
msgstr ""
@@ -21997,7 +20964,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3148672\n"
-"155\n"
"help.text"
msgid "See also: <link href=\"text/scalc/01/04060109.xhp#Section9\" name=\"VLOOKUP\">VLOOKUP</link> (columns and rows are exchanged)"
msgstr ""
@@ -22014,7 +20980,6 @@ msgstr "<bookmark_value>ROW 函数</bookmark_value>"
msgctxt ""
"04060109.xhp\n"
"hd_id3147321\n"
-"157\n"
"help.text"
msgid "ROW"
msgstr "ROW"
@@ -22023,7 +20988,6 @@ msgstr "ROW"
msgctxt ""
"04060109.xhp\n"
"par_id3154564\n"
-"203\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ZEILE\">Returns the row number of a cell reference.</ahelp> If the reference is a cell, it returns the row number of the cell. If the reference is a cell range, it returns the corresponding row numbers in a one-column <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"Array\">Array</link> if the formula is entered <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">as an array formula</link>. If the ROW function with a range reference is not used in an array formula, only the row number of the first range cell will be returned."
msgstr "<ahelp hid=\"HID_FUNC_ZEILE\">返回单元格引用的行号。</ahelp>如果引用的是单元格,函数返回单元格的行号。如果引用的是单元格范围,将在一个单列<link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"矩阵\">矩阵</link> 中返回相应的行号(如果公式是<link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"作为矩阵公式\">作为矩阵公式</link>输入)。如果 ROW 函数引用的是一个单元格范围,且函数不是作为矩阵公式输入的,则只返回范围中第一个单元格的行号。"
@@ -22032,7 +20996,6 @@ msgstr "<ahelp hid=\"HID_FUNC_ZEILE\">返回单元格引用的行号。</ahelp>
msgctxt ""
"04060109.xhp\n"
"hd_id3158439\n"
-"159\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -22041,7 +21004,6 @@ msgstr "语法"
msgctxt ""
"04060109.xhp\n"
"par_id3154916\n"
-"160\n"
"help.text"
msgid "ROW(Reference)"
msgstr "ROW(Reference)"
@@ -22050,7 +21012,6 @@ msgstr "ROW(Reference)"
msgctxt ""
"04060109.xhp\n"
"par_id3156336\n"
-"161\n"
"help.text"
msgid "<emph>Reference</emph> is a cell, an area, or the name of an area."
msgstr "<emph>reference</emph> 是指一个单元格、一个区域或一个区域的名称。"
@@ -22059,7 +21020,6 @@ msgstr "<emph>reference</emph> 是指一个单元格、一个区域或一个区
msgctxt ""
"04060109.xhp\n"
"par_id3151109\n"
-"204\n"
"help.text"
msgid "If you do not indicate a reference, the row number of the cell in which the formula is entered will be found. <item type=\"productname\">%PRODUCTNAME</item> Calc automatically sets the reference to the current cell."
msgstr "如果您没有指定引用,将找到输入公式的单元格的行号。<item type=\"productname\">%PRODUCTNAME</item> Calc 自动在当前单元格中设置引用。"
@@ -22068,7 +21028,6 @@ msgstr "如果您没有指定引用,将找到输入公式的单元格的行号
msgctxt ""
"04060109.xhp\n"
"hd_id3155609\n"
-"162\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -22077,7 +21036,6 @@ msgstr "示例"
msgctxt ""
"04060109.xhp\n"
"par_id3154830\n"
-"205\n"
"help.text"
msgid "<item type=\"input\">=ROW(B3)</item> returns 3 because the reference refers to the third row in the table."
msgstr "<item type=\"input\">=ROW(B3)</item> 返回 3,因为引用表示表格中的第三行。"
@@ -22086,7 +21044,6 @@ msgstr "<item type=\"input\">=ROW(B3)</item> 返回 3,因为引用表示表格
msgctxt ""
"04060109.xhp\n"
"par_id3147094\n"
-"206\n"
"help.text"
msgid "<item type=\"input\">{=ROW(D5:D8)}</item> returns the single-column array (5, 6, 7, 8) because the reference specified contains rows 5 through 8."
msgstr "<item type=\"input\">{=ROW(D5:D8)}</item> 返回单列数组 (5, 6, 7, 8),因为指定的引用包含行 5 至 8。"
@@ -22095,7 +21052,6 @@ msgstr "<item type=\"input\">{=ROW(D5:D8)}</item> 返回单列数组 (5, 6, 7, 8
msgctxt ""
"04060109.xhp\n"
"par_id3153701\n"
-"207\n"
"help.text"
msgid "<item type=\"input\">=ROW(D5:D8)</item> returns 5 because the ROW function is not used as array formula and only the number of the first row of the reference is returned."
msgstr "<item type=\"input\">=ROW(D5:D8)</item> 返回 5,因为函数 ROW 未作为数组公式使用,所以只返回引用的第一行的行号。"
@@ -22104,7 +21060,6 @@ msgstr "<item type=\"input\">=ROW(D5:D8)</item> 返回 5,因为函数 ROW 未
msgctxt ""
"04060109.xhp\n"
"par_id3150996\n"
-"208\n"
"help.text"
msgid "<item type=\"input\">{=ROW(A1:E1)}</item> and <item type=\"input\">=ROW(A1:E1)</item> both return 1 because the reference only contains row 1 as the first row in the table. (Because single-row areas only have one row number it does not make any difference whether or not the formula is used as an array formula.)"
msgstr "<item type=\"input\">{=ROW(A1:E1)}</item> 和 <item type=\"input\">=ROW(A1:E1)</item> 都返回 1,因为引用仅包含在表格中作为第一列的第一行。(由于单行区域只有一个行号,所以是否作为数组公式使用对结果没有影响。)"
@@ -22113,7 +21068,6 @@ msgstr "<item type=\"input\">{=ROW(A1:E1)}</item> 和 <item type=\"input\">=ROW(
msgctxt ""
"04060109.xhp\n"
"par_id3153671\n"
-"209\n"
"help.text"
msgid "<item type=\"input\">=ROW()</item> returns 3 if the formula was entered in row 3."
msgstr "如果在行 3 处输入此公式,则 <item type=\"input\">=ROW()</item> 返回 3。"
@@ -22122,7 +21076,6 @@ msgstr "如果在行 3 处输入此公式,则 <item type=\"input\">=ROW()</ite
msgctxt ""
"04060109.xhp\n"
"par_id3153790\n"
-"210\n"
"help.text"
msgid "<item type=\"input\">{=ROW(Rabbit)}</item> returns the single-column array (1, 2, 3) if \"Rabbit\" is the named area (C1:D3)."
msgstr "如果 \"Rabbit\" 是命名的区域 (C1:D3),则<item type=\"input\">{=ROW(Rabbit)}</item> 返回单列数组 (1, 2, 3)。"
@@ -22139,7 +21092,6 @@ msgstr "<bookmark_value>ROWS 函数</bookmark_value>"
msgctxt ""
"04060109.xhp\n"
"hd_id3145772\n"
-"166\n"
"help.text"
msgid "ROWS"
msgstr "ROWS"
@@ -22148,7 +21100,6 @@ msgstr "ROWS"
msgctxt ""
"04060109.xhp\n"
"par_id3148971\n"
-"167\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ZEILEN\">Returns the number of rows in a reference or array.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_ZEILEN\">返回引用或数组中的行数。</ahelp>"
@@ -22157,7 +21108,6 @@ msgstr "<ahelp hid=\"HID_FUNC_ZEILEN\">返回引用或数组中的行数。</ahe
msgctxt ""
"04060109.xhp\n"
"hd_id3156051\n"
-"168\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -22166,7 +21116,6 @@ msgstr "语法"
msgctxt ""
"04060109.xhp\n"
"par_id3154357\n"
-"169\n"
"help.text"
msgid "ROWS(Array)"
msgstr "ROWS(Array)"
@@ -22175,7 +21124,6 @@ msgstr "ROWS(Array)"
msgctxt ""
"04060109.xhp\n"
"par_id3155942\n"
-"170\n"
"help.text"
msgid "<emph>Array</emph> is the reference or named area whose total number of rows is to be determined."
msgstr "<emph>Array</emph> 是一个已确定总行数的引用或者命名区域。"
@@ -22184,7 +21132,6 @@ msgstr "<emph>Array</emph> 是一个已确定总行数的引用或者命名区
msgctxt ""
"04060109.xhp\n"
"hd_id3155869\n"
-"171\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -22193,7 +21140,6 @@ msgstr "示例"
msgctxt ""
"04060109.xhp\n"
"par_id3154725\n"
-"212\n"
"help.text"
msgid "<item type=\"input\">=Rows(B5)</item> returns 1 because a cell only contains one row."
msgstr "<item type=\"input\">=Rows(B5)</item> 返回 1,因为一个单元格仅包含一行。"
@@ -22202,7 +21148,6 @@ msgstr "<item type=\"input\">=Rows(B5)</item> 返回 1,因为一个单元格
msgctxt ""
"04060109.xhp\n"
"par_id3150102\n"
-"172\n"
"help.text"
msgid "<item type=\"input\">=ROWS(A10:B12)</item> returns 3."
msgstr "<item type=\"input\">=ROWS(A10:B12)</item> 返回 3。"
@@ -22211,7 +21156,6 @@ msgstr "<item type=\"input\">=ROWS(A10:B12)</item> 返回 3。"
msgctxt ""
"04060109.xhp\n"
"par_id3155143\n"
-"213\n"
"help.text"
msgid "<item type=\"input\">=ROWS(Rabbit)</item> returns 3 if \"Rabbit\" is the named area (C1:D3)."
msgstr "如果 \"Rabbit\" 是命名的区域 (C1:D3),则 <item type=\"input\">=ROWS(Rabbit)</item> 返回 3。"
@@ -22541,14 +21485,13 @@ msgctxt ""
"04060110.xhp\n"
"bm_id3145389\n"
"help.text"
-msgid "<bookmark_value>text in cells; functions</bookmark_value> <bookmark_value>functions; text functions</bookmark_value> <bookmark_value>Function Wizard;text</bookmark_value>"
-msgstr "<bookmark_value>单元格中的文本; 函数</bookmark_value><bookmark_value>函数; 文本函数</bookmark_value><bookmark_value>函数向导; 文本</bookmark_value>"
+msgid "<bookmark_value>text in cells; functions</bookmark_value> <bookmark_value>functions; text functions</bookmark_value> <bookmark_value>Function Wizard;text</bookmark_value>"
+msgstr ""
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"hd_id3145389\n"
-"1\n"
"help.text"
msgid "<variable id=\"head_text\"><link href=\"text/scalc/01/04060110.xhp\" name=\"Text Functions\">Text Functions</link></variable>"
msgstr ""
@@ -22557,10 +21500,9 @@ msgstr ""
msgctxt ""
"04060110.xhp\n"
"par_id3152986\n"
-"2\n"
"help.text"
-msgid "<variable id=\"texttext\">This section contains descriptions of the <emph>Text</emph> functions.</variable>"
-msgstr "<variable id=\"texttext\">本节介绍<emph>文本</emph>函数。 </variable>"
+msgid "<variable id=\"texttext\">This section contains descriptions of the <emph>Text</emph> functions. </variable>"
+msgstr ""
#: 04060110.xhp
msgctxt ""
@@ -22574,7 +21516,6 @@ msgstr "<bookmark_value>ARABIC 函数</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3149384\n"
-"239\n"
"help.text"
msgid "ARABIC"
msgstr "ARABIC"
@@ -22583,7 +21524,6 @@ msgstr "ARABIC"
msgctxt ""
"04060110.xhp\n"
"par_id3153558\n"
-"240\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ARABISCH\">Calculates the value of a Roman number. The value range must be between 0 and 3999.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_ARABISCH\">计算罗马数字的值。值的范围必须介于 0 和 3999 之间。</ahelp>"
@@ -22592,7 +21532,6 @@ msgstr "<ahelp hid=\"HID_FUNC_ARABISCH\">计算罗马数字的值。值的范围
msgctxt ""
"04060110.xhp\n"
"hd_id3153011\n"
-"241\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -22601,7 +21540,6 @@ msgstr "语法"
msgctxt ""
"04060110.xhp\n"
"par_id3155523\n"
-"242\n"
"help.text"
msgid "ARABIC(\"Text\")"
msgstr "ARABIC(\"Text\")"
@@ -22610,7 +21548,6 @@ msgstr "ARABIC(\"Text\")"
msgctxt ""
"04060110.xhp\n"
"par_id3151193\n"
-"243\n"
"help.text"
msgid "<emph>Text</emph> is the text that represents a Roman number."
msgstr "<emph>Text</emph> 是一个表示罗马数字的文字。"
@@ -22619,7 +21556,6 @@ msgstr "<emph>Text</emph> 是一个表示罗马数字的文字。"
msgctxt ""
"04060110.xhp\n"
"hd_id3155758\n"
-"244\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -22628,7 +21564,6 @@ msgstr "示例"
msgctxt ""
"04060110.xhp\n"
"par_id3154621\n"
-"245\n"
"help.text"
msgid "<item type=\"input\">=ARABIC(\"MXIV\")</item> returns 1014"
msgstr "<item type=\"input\">=ARABIC(\"MXIV\")</item> 返回 1014"
@@ -22637,7 +21572,6 @@ msgstr "<item type=\"input\">=ARABIC(\"MXIV\")</item> 返回 1014"
msgctxt ""
"04060110.xhp\n"
"par_id3147553\n"
-"246\n"
"help.text"
msgid "<item type=\"input\">=ARABIC(\"MMII\")</item> returns 2002"
msgstr "<item type=\"input\">=ARABIC(\"MMII\")</item> 返回 2002"
@@ -22782,7 +21716,6 @@ msgstr "<bookmark_value>BASE 函数</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3153072\n"
-"213\n"
"help.text"
msgid "BASE"
msgstr "BASE"
@@ -22791,7 +21724,6 @@ msgstr "BASE"
msgctxt ""
"04060110.xhp\n"
"par_id3153289\n"
-"214\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BASIS\">Converts a positive integer to a specified base into a text from the <link href=\"text/shared/00/00000005.xhp#zahlensystem\" name=\"numbering system\">numbering system</link>.</ahelp> The digits 0-9 and the letters A-Z are used."
msgstr "<ahelp hid=\"HID_FUNC_BASIS\">将以指定基数为底数的正整数通过<link href=\"text/shared/00/00000005.xhp#zahlensystem\" name=\"编号系统\">编号系统</link>转换成文本。</ahelp> 可以使用数字 0-9 和字母 A-Z。"
@@ -22800,7 +21732,6 @@ msgstr "<ahelp hid=\"HID_FUNC_BASIS\">将以指定基数为底数的正整数通
msgctxt ""
"04060110.xhp\n"
"hd_id3146097\n"
-"215\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -22809,7 +21740,6 @@ msgstr "语法"
msgctxt ""
"04060110.xhp\n"
"par_id3155743\n"
-"216\n"
"help.text"
msgid "BASE(Number; Radix; [MinimumLength])"
msgstr "BASE(Number; Radix; [MinimumLength])"
@@ -22818,7 +21748,6 @@ msgstr "BASE(Number; Radix; [MinimumLength])"
msgctxt ""
"04060110.xhp\n"
"par_id3151339\n"
-"217\n"
"help.text"
msgid "<emph>Number</emph> is the positive integer to be converted."
msgstr "<emph>Number</emph> 是要转换的正整数。"
@@ -22827,7 +21756,6 @@ msgstr "<emph>Number</emph> 是要转换的正整数。"
msgctxt ""
"04060110.xhp\n"
"par_id3159262\n"
-"218\n"
"help.text"
msgid "<emph>Radix</emph> indicates the base of the number system. It may be any positive integer between 2 and 36."
msgstr "<emph>Radix</emph> 指数字系统的基数,是一个介于 2 和 36 之间的正整数。"
@@ -22836,7 +21764,6 @@ msgstr "<emph>Radix</emph> 指数字系统的基数,是一个介于 2 和 36
msgctxt ""
"04060110.xhp\n"
"par_id3148746\n"
-"219\n"
"help.text"
msgid "<emph>MinimumLength</emph> (optional) determines the minimum length of the character sequence that has been created. If the text is shorter than the indicated minimum length, zeros are added to the left of the string."
msgstr "<emph>MinimumLength</emph>(可选)用于确定已创建的字符序列的最小长度。如果文字长度小于设置的最小长度,则会在字符串左边加零。"
@@ -22845,7 +21772,6 @@ msgstr "<emph>MinimumLength</emph>(可选)用于确定已创建的字符序
msgctxt ""
"04060110.xhp\n"
"hd_id3146323\n"
-"220\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -22862,7 +21788,6 @@ msgstr "<bookmark_value>十进制系统; 转换成</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"par_id3156399\n"
-"221\n"
"help.text"
msgid "<item type=\"input\">=BASE(17;10;4)</item> returns 0017 in the decimal system."
msgstr "<item type=\"input\">=BASE(17;10;4)</item> 返回十进制系统中的 0017。"
@@ -22879,7 +21804,6 @@ msgstr "<bookmark_value>二进制系统; 转换成</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"par_id3157871\n"
-"222\n"
"help.text"
msgid "<item type=\"input\">=BASE(17;2)</item> returns 10001 in the binary system."
msgstr "<item type=\"input\">=BASE(17;2)</item> 返回二进制系统中的 10001。"
@@ -22896,7 +21820,6 @@ msgstr "<bookmark_value>十六进制系统;转换成</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"par_id3145226\n"
-"223\n"
"help.text"
msgid "<item type=\"input\">=BASE(255;16;4)</item> returns 00FF in the hexadecimal system."
msgstr "<item type=\"input\">=BASE(255;16;4)</item> 返回十六进制系统中的 00FF。"
@@ -22913,7 +21836,6 @@ msgstr "<bookmark_value>CHAR 函数</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3149321\n"
-"201\n"
"help.text"
msgid "CHAR"
msgstr "CHAR"
@@ -22922,7 +21844,6 @@ msgstr "CHAR"
msgctxt ""
"04060110.xhp\n"
"par_id3149150\n"
-"202\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ZEICHEN\">Converts a number into a character according to the current code table.</ahelp> The number can be a two-digit or three-digit integer number."
msgstr "<ahelp hid=\"HID_FUNC_ZEICHEN\">根据当前代码表将数字转换成字符。</ahelp>数字可以是两位或三位的整数。"
@@ -22931,7 +21852,6 @@ msgstr "<ahelp hid=\"HID_FUNC_ZEICHEN\">根据当前代码表将数字转换成
msgctxt ""
"04060110.xhp\n"
"hd_id3149945\n"
-"203\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -22940,7 +21860,6 @@ msgstr "语法"
msgctxt ""
"04060110.xhp\n"
"par_id3145634\n"
-"204\n"
"help.text"
msgid "CHAR(Number)"
msgstr "CHAR(Number)"
@@ -22949,7 +21868,6 @@ msgstr "CHAR(Number)"
msgctxt ""
"04060110.xhp\n"
"par_id3155906\n"
-"205\n"
"help.text"
msgid "<emph>Number</emph> is a number between 1 and 255 representing the code value for the character."
msgstr "<emph>Number</emph> 是一个表示字符代码值的介于 1 和 255 之间的数字。"
@@ -22958,7 +21876,6 @@ msgstr "<emph>Number</emph> 是一个表示字符代码值的介于 1 和 255
msgctxt ""
"04060110.xhp\n"
"hd_id3152982\n"
-"207\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -22967,7 +21884,6 @@ msgstr "示例"
msgctxt ""
"04060110.xhp\n"
"par_id3149890\n"
-"208\n"
"help.text"
msgid "<item type=\"input\">=CHAR(100)</item> returns the character d."
msgstr "<item type=\"input\">=CHAR(100)</item> 返回字符 d。"
@@ -22992,7 +21908,6 @@ msgstr "<bookmark_value>CLEAN 函数</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3149009\n"
-"132\n"
"help.text"
msgid "CLEAN"
msgstr "CLEAN"
@@ -23001,7 +21916,6 @@ msgstr "CLEAN"
msgctxt ""
"04060110.xhp\n"
"par_id3150482\n"
-"133\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_SAEUBERN\">All non-printing characters are removed from the string.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_SAEUBERN\">所有非打印字符都被从字符串中删除。</ahelp>"
@@ -23010,7 +21924,6 @@ msgstr "<ahelp hid=\"HID_FUNC_SAEUBERN\">所有非打印字符都被从字符串
msgctxt ""
"04060110.xhp\n"
"hd_id3146880\n"
-"134\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -23019,7 +21932,6 @@ msgstr "语法"
msgctxt ""
"04060110.xhp\n"
"par_id3147472\n"
-"135\n"
"help.text"
msgid "CLEAN(\"Text\")"
msgstr "CLEAN(\"Text\")"
@@ -23028,7 +21940,6 @@ msgstr "CLEAN(\"Text\")"
msgctxt ""
"04060110.xhp\n"
"par_id3150695\n"
-"136\n"
"help.text"
msgid "<emph>Text</emph> refers to the text from which to remove all non-printable characters."
msgstr "<emph>Text</emph> 要从中删除所有不能打印的字符的文本。"
@@ -23045,7 +21956,6 @@ msgstr "<bookmark_value>CODE 函数</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3155498\n"
-"3\n"
"help.text"
msgid "CODE"
msgstr "CODE"
@@ -23054,7 +21964,6 @@ msgstr "CODE"
msgctxt ""
"04060110.xhp\n"
"par_id3152770\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_CODE\">Returns a numeric code for the first character in a text string.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_CODE\">返回文本字符串中第一个字符的数字代码。</ahelp>"
@@ -23063,7 +21972,6 @@ msgstr "<ahelp hid=\"HID_FUNC_CODE\">返回文本字符串中第一个字符的
msgctxt ""
"04060110.xhp\n"
"hd_id3155830\n"
-"5\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -23072,7 +21980,6 @@ msgstr "语法"
msgctxt ""
"04060110.xhp\n"
"par_id3149188\n"
-"6\n"
"help.text"
msgid "CODE(\"Text\")"
msgstr "CODE(\"Text\")"
@@ -23081,7 +21988,6 @@ msgstr "CODE(\"Text\")"
msgctxt ""
"04060110.xhp\n"
"par_id3154383\n"
-"7\n"
"help.text"
msgid "<emph>Text</emph> is the text for which the code of the first character is to be found."
msgstr "<emph>Text</emph> 要获得第一个字符编码的文字。"
@@ -23090,7 +21996,6 @@ msgstr "<emph>Text</emph> 要获得第一个字符编码的文字。"
msgctxt ""
"04060110.xhp\n"
"hd_id3154394\n"
-"8\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -23099,7 +22004,6 @@ msgstr "示例"
msgctxt ""
"04060110.xhp\n"
"par_id3159209\n"
-"9\n"
"help.text"
msgid "<item type=\"input\">=CODE(\"Hieronymus\")</item> returns 72, <item type=\"input\">=CODE(\"hieroglyphic\")</item> returns 104."
msgstr "<item type=\"input\">=CODE(\"Hieronymus\")</item> 返回 72,<item type=\"input\">=CODE(\"hieroglyphic\")</item> 返回 104。"
@@ -23108,7 +22012,6 @@ msgstr "<item type=\"input\">=CODE(\"Hieronymus\")</item> 返回 72,<item type
msgctxt ""
"04060110.xhp\n"
"par_id3150280\n"
-"211\n"
"help.text"
msgid "The code used here does not refer to ASCII, but to the code table currently loaded."
msgstr "在这里使用的编码并不是ASCII编码,而是当前编码表的编码。"
@@ -23125,7 +22028,6 @@ msgstr "<bookmark_value>CONCATENATE 函数</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3149688\n"
-"167\n"
"help.text"
msgid "CONCATENATE"
msgstr "CONCATENATE"
@@ -23134,7 +22036,6 @@ msgstr "CONCATENATE"
msgctxt ""
"04060110.xhp\n"
"par_id3154524\n"
-"168\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VERKETTEN\">Combines several text strings into one string.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_VERKETTEN\">将多个文本字符串合并为一个字符串。</ahelp>"
@@ -23143,7 +22044,6 @@ msgstr "<ahelp hid=\"HID_FUNC_VERKETTEN\">将多个文本字符串合并为一
msgctxt ""
"04060110.xhp\n"
"hd_id3149542\n"
-"169\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -23152,7 +22052,6 @@ msgstr "语法"
msgctxt ""
"04060110.xhp\n"
"par_id3155954\n"
-"170\n"
"help.text"
msgid "CONCATENATE(\"Text1\"; ...; \"Text30\")"
msgstr "CONCATENATE(\"Text1\"; ...; \"Text30\")"
@@ -23161,7 +22060,6 @@ msgstr "CONCATENATE(\"Text1\"; ...; \"Text30\")"
msgctxt ""
"04060110.xhp\n"
"par_id3146847\n"
-"171\n"
"help.text"
msgid "<emph>Text 1; Text 2; ...</emph> represent up to 30 text passages which are to be combined into one string."
msgstr "<emph>Text 1; Text 2; ...</emph> 是 1 至 30 个要合并成一个字符串的文本段落。"
@@ -23170,7 +22068,6 @@ msgstr "<emph>Text 1; Text 2; ...</emph> 是 1 至 30 个要合并成一个字
msgctxt ""
"04060110.xhp\n"
"hd_id3153110\n"
-"172\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -23179,7 +22076,6 @@ msgstr "示例"
msgctxt ""
"04060110.xhp\n"
"par_id3150008\n"
-"173\n"
"help.text"
msgid "<item type=\"input\">=CONCATENATE(\"Good \";\"Morning \";\"Mrs. \";\"Doe\")</item> returns: Good Morning Mrs. Doe."
msgstr "<item type=\"input\">=CONCATENATE(\"Good \";\"Morning \";\"Mrs. \";\"Doe\")</item> 返回:Good Morning Mrs. Doe。"
@@ -23196,7 +22092,6 @@ msgstr "<bookmark_value>DECIMAL 函数</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3145166\n"
-"225\n"
"help.text"
msgid "DECIMAL"
msgstr "DECIMAL"
@@ -23205,7 +22100,6 @@ msgstr "DECIMAL"
msgctxt ""
"04060110.xhp\n"
"par_id3156361\n"
-"226\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DEZIMAL\">Converts text with characters from a <link href=\"text/shared/00/00000005.xhp#zahlensystem\" name=\"number system\">number system</link> to a positive integer in the base radix given.</ahelp> The radix must be in the range 2 to 36. Spaces and tabs are ignored. The <emph>Text</emph> field is not case-sensitive."
msgstr "<ahelp hid=\"HID_FUNC_DEZIMAL\"> 从<link href=\"text/shared/00/00000005.xhp#zahlensystem\" name=\"number system\">数字系统</link>中将带有字符的文本按给定的基数转换为正整数。</ahelp>基数必须介于 2 到 36 之间。空格和制表符会被忽略。<emph>Text</emph> 字段不区分大小写。"
@@ -23214,7 +22108,6 @@ msgstr "<ahelp hid=\"HID_FUNC_DEZIMAL\"> 从<link href=\"text/shared/00/00000005
msgctxt ""
"04060110.xhp\n"
"par_id3157994\n"
-"227\n"
"help.text"
msgid "If the radix is 16, a leading x or X or 0x or 0X, and an appended h or H, is disregarded. If the radix is 2, an appended b or B is disregarded. Other characters that do not belong to the number system generate an error."
msgstr "如果 Radix 为 16,则开头的 x、X、0x 或 0X,以及结尾的 h 或 H 会被忽略。如果 Radix 为 2,则结尾的 b 或 B 会被忽略。采用其他不属于数字系统的字符将产生错误。"
@@ -23223,7 +22116,6 @@ msgstr "如果 Radix 为 16,则开头的 x、X、0x 或 0X,以及结尾的 h
msgctxt ""
"04060110.xhp\n"
"hd_id3150014\n"
-"228\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -23232,7 +22124,6 @@ msgstr "语法"
msgctxt ""
"04060110.xhp\n"
"par_id3154328\n"
-"229\n"
"help.text"
msgid "DECIMAL(\"Text\"; Radix)"
msgstr "DECIMAL(\"Text\"; Radix)"
@@ -23241,7 +22132,6 @@ msgstr "DECIMAL(\"Text\"; Radix)"
msgctxt ""
"04060110.xhp\n"
"par_id3150128\n"
-"230\n"
"help.text"
msgid "<emph>Text</emph> is the text to be converted. To differentiate between a hexadecimal number, such as A1 and the reference to cell A1, you must place the number in quotation marks, for example, \"A1\" or \"FACE\"."
msgstr "<emph>Text</emph> 是要转换的文字。为了将十六进制数与单元格引用(如 A1 与引用的单元格 A1)区分开来,必须在数字前后加上引号,例如 \"A1\" 或 \"FACE\"。"
@@ -23250,7 +22140,6 @@ msgstr "<emph>Text</emph> 是要转换的文字。为了将十六进制数与单
msgctxt ""
"04060110.xhp\n"
"par_id3145241\n"
-"231\n"
"help.text"
msgid "<emph>Radix</emph> indicates the base of the number system. It may be any positive integer between 2 and 36."
msgstr "<emph>Radix</emph> 指数字系统的基数,是一个介于 2 和 36 之间的正整数。"
@@ -23259,7 +22148,6 @@ msgstr "<emph>Radix</emph> 指数字系统的基数,是一个介于 2 和 36
msgctxt ""
"04060110.xhp\n"
"hd_id3156062\n"
-"232\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -23268,7 +22156,6 @@ msgstr "示例"
msgctxt ""
"04060110.xhp\n"
"par_id3145355\n"
-"233\n"
"help.text"
msgid "<item type=\"input\">=DECIMAL(\"17\";10)</item> returns 17."
msgstr "<item type=\"input\">=DECIMAL(\"17\";10)</item> 返回 17。"
@@ -23277,7 +22164,6 @@ msgstr "<item type=\"input\">=DECIMAL(\"17\";10)</item> 返回 17。"
msgctxt ""
"04060110.xhp\n"
"par_id3155622\n"
-"234\n"
"help.text"
msgid "<item type=\"input\">=DECIMAL(\"FACE\";16)</item> returns 64206."
msgstr "<item type=\"input\">=DECIMAL(\"FACE\";16)</item> 返回 64206。"
@@ -23286,7 +22172,6 @@ msgstr "<item type=\"input\">=DECIMAL(\"FACE\";16)</item> 返回 64206。"
msgctxt ""
"04060110.xhp\n"
"par_id3151015\n"
-"235\n"
"help.text"
msgid "<item type=\"input\">=DECIMAL(\"0101\";2)</item> returns 5."
msgstr "<item type=\"input\">=DECIMAL(\"0101\";2)</item> 返回 5。"
@@ -23303,7 +22188,6 @@ msgstr "<bookmark_value>DOLLAR 函数</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3148402\n"
-"11\n"
"help.text"
msgid "DOLLAR"
msgstr "DOLLAR"
@@ -23312,7 +22196,6 @@ msgstr "DOLLAR"
msgctxt ""
"04060110.xhp\n"
"par_id3153049\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DM\">Converts a number to an amount in the currency format, rounded to a specified decimal place.</ahelp> In the <item type=\"literal\">Value</item> field enter the number to be converted to currency. Optionally, you may enter the number of decimal places in the <item type=\"literal\">Decimals</item> field. If no value is specified, all numbers in currency format will be displayed with two decimal places."
msgstr "<ahelp hid=\"HID_FUNC_DM\"> 将数字转换为货币格式,舍入到指定的小数位。</ahelp>在<item type=\"literal\">数值</item>字段输入要转换为货币的数字。也可在<item type=\"literal\">小数</item>字段输入小数位数。如果没有指定数值,则所有货币格式的数字都显示两位小数。"
@@ -23321,7 +22204,6 @@ msgstr "<ahelp hid=\"HID_FUNC_DM\"> 将数字转换为货币格式,舍入到
msgctxt ""
"04060110.xhp\n"
"par_id3151280\n"
-"263\n"
"help.text"
msgid "You set the currency format in your system settings."
msgstr "在系统设置中设置货币格式。"
@@ -23330,7 +22212,6 @@ msgstr "在系统设置中设置货币格式。"
msgctxt ""
"04060110.xhp\n"
"hd_id3150569\n"
-"13\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -23339,7 +22220,6 @@ msgstr "语法"
msgctxt ""
"04060110.xhp\n"
"par_id3154188\n"
-"14\n"
"help.text"
msgid "DOLLAR(Value; Decimals)"
msgstr "DOLLAR(Value; Decimals)"
@@ -23348,7 +22228,6 @@ msgstr "DOLLAR(Value; Decimals)"
msgctxt ""
"04060110.xhp\n"
"par_id3145299\n"
-"15\n"
"help.text"
msgid "<emph>Value</emph> is a number, a reference to a cell containing a number, or a formula which returns a number."
msgstr "<emph>Value</emph> 是一个数值,一个含有数值的单元格引用,或一个返回数值的公式。"
@@ -23357,7 +22236,6 @@ msgstr "<emph>Value</emph> 是一个数值,一个含有数值的单元格引
msgctxt ""
"04060110.xhp\n"
"par_id3145629\n"
-"16\n"
"help.text"
msgid "<emph>Decimals</emph> is the optional number of decimal places."
msgstr "<emph>Decimals</emph> 是小数的可选位数。"
@@ -23366,7 +22244,6 @@ msgstr "<emph>Decimals</emph> 是小数的可选位数。"
msgctxt ""
"04060110.xhp\n"
"hd_id3149030\n"
-"17\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -23375,7 +22252,6 @@ msgstr "示例"
msgctxt ""
"04060110.xhp\n"
"par_id3153546\n"
-"18\n"
"help.text"
msgid "<item type=\"input\">=DOLLAR(255)</item> returns $255.00."
msgstr "<item type=\"input\">=DOLLAR(255)</item> 返回 $255.00。"
@@ -23384,7 +22260,6 @@ msgstr "<item type=\"input\">=DOLLAR(255)</item> 返回 $255.00。"
msgctxt ""
"04060110.xhp\n"
"par_id3154635\n"
-"19\n"
"help.text"
msgid "<item type=\"input\">=DOLLAR(367.456;2)</item> returns $367.46. Use the decimal separator that corresponds to the <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link>."
msgstr "<item type=\"input\">=DOLLAR(367.456;2)</item> 返回 $367.46。请使用与<link href=\"text/shared/optionen/01140000.xhp\" name=\"当前语言环境设置\">当前语言环境设置</link>相对应的小数点分隔符。"
@@ -23401,7 +22276,6 @@ msgstr "<bookmark_value>EXACT 函数</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3150685\n"
-"78\n"
"help.text"
msgid "EXACT"
msgstr "EXACT"
@@ -23410,7 +22284,6 @@ msgstr "EXACT"
msgctxt ""
"04060110.xhp\n"
"par_id3158413\n"
-"79\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_IDENTISCH\">Compares two text strings and returns TRUE if they are identical.</ahelp> This function is case-sensitive."
msgstr "<ahelp hid=\"HID_FUNC_IDENTISCH\">比较两个文本字符串,如果二者相同,则返回 TRUE。</ahelp>此函数区分大小写。"
@@ -23419,7 +22292,6 @@ msgstr "<ahelp hid=\"HID_FUNC_IDENTISCH\">比较两个文本字符串,如果
msgctxt ""
"04060110.xhp\n"
"hd_id3152817\n"
-"80\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -23428,7 +22300,6 @@ msgstr "语法"
msgctxt ""
"04060110.xhp\n"
"par_id3148594\n"
-"81\n"
"help.text"
msgid "EXACT(\"Text1\"; \"Text2\")"
msgstr "EXACT(\"Text1\"; \"Text2\")"
@@ -23437,7 +22308,6 @@ msgstr "EXACT(\"Text1\"; \"Text2\")"
msgctxt ""
"04060110.xhp\n"
"par_id3153224\n"
-"82\n"
"help.text"
msgid "<emph>Text1</emph> refers to the first text to compare."
msgstr "<emph>Text1</emph> 是要比较的第一个文本。"
@@ -23446,7 +22316,6 @@ msgstr "<emph>Text1</emph> 是要比较的第一个文本。"
msgctxt ""
"04060110.xhp\n"
"par_id3148637\n"
-"83\n"
"help.text"
msgid "<emph>Text2</emph> is the second text to compare."
msgstr "<emph>Text2</emph> 是要比较的第二个文本。"
@@ -23455,7 +22324,6 @@ msgstr "<emph>Text2</emph> 是要比较的第二个文本。"
msgctxt ""
"04060110.xhp\n"
"hd_id3149777\n"
-"84\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -23464,7 +22332,6 @@ msgstr "示例"
msgctxt ""
"04060110.xhp\n"
"par_id3156263\n"
-"85\n"
"help.text"
msgid "<item type=\"input\">=EXACT(\"microsystems\";\"Microsystems\")</item> returns FALSE."
msgstr "<item type=\"input\">=EXACT(\"microsystems\";\"Microsystems\")</item> 返回 FALSE。"
@@ -23481,7 +22348,6 @@ msgstr "<bookmark_value>FIND 函数</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3152589\n"
-"44\n"
"help.text"
msgid "FIND"
msgstr "FIND"
@@ -23490,16 +22356,14 @@ msgstr "FIND"
msgctxt ""
"04060110.xhp\n"
"par_id3146149\n"
-"45\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_FINDEN\">Looks for a string of text within another string.</ahelp> You can also define where to begin the search. The search term can be a number or any string of characters. The search is case-sensitive."
-msgstr "<ahelp hid=\"HID_FUNC_FINDEN\">在一个字符串中查找另一个文本的字符串。</ahelp>您也可以指定查找的开始位置。查找的项可以是数字或任意字符的字符串。查找区分大小写。"
+msgid "<ahelp hid=\"HID_FUNC_FINDEN\">Returns the position of a string of text within another string.</ahelp>You can also define where to begin the search. The search term can be a number or any string of characters. The search is case-sensitive."
+msgstr ""
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"hd_id3083284\n"
-"46\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -23508,7 +22372,6 @@ msgstr "语法"
msgctxt ""
"04060110.xhp\n"
"par_id3083452\n"
-"47\n"
"help.text"
msgid "FIND(\"FindText\"; \"Text\"; Position)"
msgstr "FIND(\"FindText\"; \"Text\"; Position)"
@@ -23517,7 +22380,6 @@ msgstr "FIND(\"FindText\"; \"Text\"; Position)"
msgctxt ""
"04060110.xhp\n"
"par_id3150608\n"
-"48\n"
"help.text"
msgid "<emph>FindText</emph> refers to the text to be found."
msgstr "<emph>FindText</emph> 是要查找的文字。"
@@ -23526,7 +22388,6 @@ msgstr "<emph>FindText</emph> 是要查找的文字。"
msgctxt ""
"04060110.xhp\n"
"par_id3152374\n"
-"49\n"
"help.text"
msgid "<emph>Text</emph> is the text where the search takes place."
msgstr "<emph>Text</emph> 是要进行搜索的文本。"
@@ -23535,7 +22396,6 @@ msgstr "<emph>Text</emph> 是要进行搜索的文本。"
msgctxt ""
"04060110.xhp\n"
"par_id3152475\n"
-"50\n"
"help.text"
msgid "<emph>Position</emph> (optional) is the position in the text from which the search starts."
msgstr "<emph>Position</emph>(可选)是文字中开始搜索的位置。"
@@ -23544,7 +22404,6 @@ msgstr "<emph>Position</emph>(可选)是文字中开始搜索的位置。"
msgctxt ""
"04060110.xhp\n"
"hd_id3154812\n"
-"51\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -23553,7 +22412,6 @@ msgstr "示例"
msgctxt ""
"04060110.xhp\n"
"par_id3156375\n"
-"52\n"
"help.text"
msgid "<item type=\"input\">=FIND(76;998877665544)</item> returns 6."
msgstr "<item type=\"input\">=FIND(76;998877665544)</item> 返回 6。"
@@ -23570,7 +22428,6 @@ msgstr "<bookmark_value>FIXED 函数</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3149268\n"
-"34\n"
"help.text"
msgid "FIXED"
msgstr "FIXED"
@@ -23579,7 +22436,6 @@ msgstr "FIXED"
msgctxt ""
"04060110.xhp\n"
"par_id3155833\n"
-"35\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_FEST\">以文本方式返回数字,该文本具有指定数量的小数位数以及可选的千位分隔符。</ahelp>"
@@ -23588,7 +22444,6 @@ msgstr "<ahelp hid=\"HID_FUNC_FEST\">以文本方式返回数字,该文本具
msgctxt ""
"04060110.xhp\n"
"hd_id3152470\n"
-"36\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -23597,7 +22452,6 @@ msgstr "语法"
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
-"37\n"
"help.text"
msgid "FIXED(Number; Decimals; NoThousandsSeparators)"
msgstr "FIXED(Number; Decimals; NoThousandsSeparators)"
@@ -23606,7 +22460,6 @@ msgstr "FIXED(Number; Decimals; NoThousandsSeparators)"
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
-"38\n"
"help.text"
msgid "<emph>Number</emph> refers to the number to be formatted."
msgstr "<emph>Number</emph> 是要格式化的数字。"
@@ -23615,7 +22468,6 @@ msgstr "<emph>Number</emph> 是要格式化的数字。"
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
-"39\n"
"help.text"
msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
msgstr "<emph>Decimals</emph> 是要显示的小数位数。"
@@ -23624,7 +22476,6 @@ msgstr "<emph>Decimals</emph> 是要显示的小数位数。"
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
-"40\n"
"help.text"
msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
msgstr "<emph>NoThousandsSeparators</emph>(可选)用于指定是否使用千位分隔符。如果该参数是一个不等于 0 的数字,则不显示千位分隔符。如果该参数等于 0 或没有指定,则显示<link href=\"text/shared/optionen/01140000.xhp\" name=\"当前语言环境设置\">当前语言环境设置</link>指定的千位分隔符。"
@@ -23633,7 +22484,6 @@ msgstr "<emph>NoThousandsSeparators</emph>(可选)用于指定是否使用
msgctxt ""
"04060110.xhp\n"
"hd_id3149040\n"
-"41\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -23642,7 +22492,6 @@ msgstr "示例"
msgctxt ""
"04060110.xhp\n"
"par_id3145208\n"
-"42\n"
"help.text"
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr "<item type=\"input\">=FIXED(1234567.89;3)</item> 将 1,234,567.890 作为文本字符串返回。"
@@ -23731,7 +22580,6 @@ msgstr "<bookmark_value>LEFT 函数</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3147083\n"
-"95\n"
"help.text"
msgid "LEFT"
msgstr "LEFT"
@@ -23740,7 +22588,6 @@ msgstr "LEFT"
msgctxt ""
"04060110.xhp\n"
"par_id3153622\n"
-"96\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_LINKS\">Returns the first character or characters of a text.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_LINKS\">返回文本中第一个或前几个字符。</ahelp>"
@@ -23749,7 +22596,6 @@ msgstr "<ahelp hid=\"HID_FUNC_LINKS\">返回文本中第一个或前几个字符
msgctxt ""
"04060110.xhp\n"
"hd_id3156116\n"
-"97\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -23758,7 +22604,6 @@ msgstr "语法"
msgctxt ""
"04060110.xhp\n"
"par_id3146786\n"
-"98\n"
"help.text"
msgid "LEFT(\"Text\"; Number)"
msgstr "LEFT(\"Text\"; Number)"
@@ -23767,7 +22612,6 @@ msgstr "LEFT(\"Text\"; Number)"
msgctxt ""
"04060110.xhp\n"
"par_id3147274\n"
-"99\n"
"help.text"
msgid "<emph>Text</emph> is the text where the initial partial words are to be determined."
msgstr "<emph>Text</emph> 是确定初始部分字符的文本。"
@@ -23776,7 +22620,6 @@ msgstr "<emph>Text</emph> 是确定初始部分字符的文本。"
msgctxt ""
"04060110.xhp\n"
"par_id3153152\n"
-"100\n"
"help.text"
msgid "<emph>Number</emph> (optional) specifies the number of characters for the start text. If this parameter is not defined, one character is returned."
msgstr "<emph>Number</emph>(可选)指定开始文字的字符数。如果不定义此参数,则返回一个字符。"
@@ -23785,7 +22628,6 @@ msgstr "<emph>Number</emph>(可选)指定开始文字的字符数。如果
msgctxt ""
"04060110.xhp\n"
"hd_id3150260\n"
-"101\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -23794,7 +22636,6 @@ msgstr "示例"
msgctxt ""
"04060110.xhp\n"
"par_id3149141\n"
-"102\n"
"help.text"
msgid "<item type=\"input\">=LEFT(\"output\";3)</item> returns “out”."
msgstr "<item type=\"input\">=LEFT(\"output\";3)</item> 返回 。"
@@ -23811,7 +22652,6 @@ msgstr "<bookmark_value>LEFTB 函数</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id2947083\n"
-"95\n"
"help.text"
msgid "LEFTB"
msgstr "LEFTB"
@@ -23820,7 +22660,6 @@ msgstr "LEFTB"
msgctxt ""
"04060110.xhp\n"
"par_id2953622\n"
-"96\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_LEFTB\">Returns the first characters of a DBCS text.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_LEFTB\">返回 DBCS 文本的第一个字符。</ahelp>"
@@ -23829,7 +22668,6 @@ msgstr "<ahelp hid=\"HID_FUNC_LEFTB\">返回 DBCS 文本的第一个字符。</a
msgctxt ""
"04060110.xhp\n"
"hd_id2956116\n"
-"97\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -23838,7 +22676,6 @@ msgstr "语法"
msgctxt ""
"04060110.xhp\n"
"par_id2946786\n"
-"98\n"
"help.text"
msgid "LEFTB(\"Text\"; Number_bytes)"
msgstr "LEFTB(\"文本\", 字节数)"
@@ -23847,7 +22684,6 @@ msgstr "LEFTB(\"文本\", 字节数)"
msgctxt ""
"04060110.xhp\n"
"par_id2947274\n"
-"99\n"
"help.text"
msgid "<emph>Text</emph> is the text where the initial partial words are to be determined."
msgstr "<emph>文本</emph> 是需要确定其部分字节的原始文本,"
@@ -23856,7 +22692,6 @@ msgstr "<emph>文本</emph> 是需要确定其部分字节的原始文本,"
msgctxt ""
"04060110.xhp\n"
"par_id2953152\n"
-"100\n"
"help.text"
msgid "<emph>Number_bytes</emph> (optional) specifies the number of characters you want LEFTB to extract, based on bytes. If this parameter is not defined, one character is returned."
msgstr "<emph>字节数</emph>(可选)指定您需要用LEFTB截取的字符长度,单位为字节。如果该参数未指定,则返回1个字节。"
@@ -23921,7 +22756,6 @@ msgstr "<bookmark_value>LEN 函数</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3156110\n"
-"104\n"
"help.text"
msgid "LEN"
msgstr "LEN"
@@ -23930,7 +22764,6 @@ msgstr "LEN"
msgctxt ""
"04060110.xhp\n"
"par_id3150147\n"
-"105\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_LAENGE\">Returns the length of a string including spaces.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_LAENGE\">返回字符串的长度(包括空格)。</ahelp>"
@@ -23939,7 +22772,6 @@ msgstr "<ahelp hid=\"HID_FUNC_LAENGE\">返回字符串的长度(包括空格
msgctxt ""
"04060110.xhp\n"
"hd_id3155108\n"
-"106\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -23948,7 +22780,6 @@ msgstr "语法"
msgctxt ""
"04060110.xhp\n"
"par_id3154063\n"
-"107\n"
"help.text"
msgid "LEN(\"Text\")"
msgstr "LEN(\"Text\")"
@@ -23957,7 +22788,6 @@ msgstr "LEN(\"Text\")"
msgctxt ""
"04060110.xhp\n"
"par_id3146894\n"
-"108\n"
"help.text"
msgid "<emph>Text</emph> is the text whose length is to be determined."
msgstr "<emph>Text</emph> 是需要确定长度的文本。"
@@ -23966,7 +22796,6 @@ msgstr "<emph>Text</emph> 是需要确定长度的文本。"
msgctxt ""
"04060110.xhp\n"
"hd_id3153884\n"
-"109\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -23975,7 +22804,6 @@ msgstr "示例"
msgctxt ""
"04060110.xhp\n"
"par_id3156008\n"
-"110\n"
"help.text"
msgid "<item type=\"input\">=LEN(\"Good Afternoon\")</item> returns 14."
msgstr "<item type=\"input\">=LEN(\"Good Afternoon\")</item> 返回 14。"
@@ -23984,7 +22812,6 @@ msgstr "<item type=\"input\">=LEN(\"Good Afternoon\")</item> 返回 14。"
msgctxt ""
"04060110.xhp\n"
"par_id3154300\n"
-"111\n"
"help.text"
msgid "<item type=\"input\">=LEN(12345.67)</item> returns 8."
msgstr "<item type=\"input\">=LEN(12345.67)</item> 返回 8。"
@@ -24001,7 +22828,6 @@ msgstr "<bookmark_value>LENB 函数</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id2956110\n"
-"104\n"
"help.text"
msgid "LENB"
msgstr "LENB"
@@ -24010,7 +22836,6 @@ msgstr "LENB"
msgctxt ""
"04060110.xhp\n"
"par_id2950147\n"
-"105\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_LENB\">For double-byte character set (DBCS) languages, returns the number of bytes used to represent the characters in a text string.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_LENB\">对于双字节字符集 (DBCS) 语言,返回用于表示文本字符串中的字符所使用的字节数。</ahelp>"
@@ -24019,7 +22844,6 @@ msgstr "<ahelp hid=\"HID_FUNC_LENB\">对于双字节字符集 (DBCS) 语言,
msgctxt ""
"04060110.xhp\n"
"hd_id2955108\n"
-"106\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -24028,7 +22852,6 @@ msgstr "语法"
msgctxt ""
"04060110.xhp\n"
"par_id2954063\n"
-"107\n"
"help.text"
msgid "LENB(\"Text\")"
msgstr "LENB(\"文本\")"
@@ -24037,7 +22860,6 @@ msgstr "LENB(\"文本\")"
msgctxt ""
"04060110.xhp\n"
"par_id2946894\n"
-"108\n"
"help.text"
msgid "<emph>Text</emph> is the text whose length is to be determined."
msgstr "<emph>Text</emph> 是需要确定长度的文本。"
@@ -24078,7 +22900,6 @@ msgstr ""
msgctxt ""
"04060110.xhp\n"
"par_id2956008\n"
-"110\n"
"help.text"
msgid "<item type=\"input\">=LENB(\"Good Afternoon\")</item> returns 14."
msgstr "<item type=\"input\">=LENB(\"Good Afternoon\")</item> 返回 14."
@@ -24087,7 +22908,6 @@ msgstr "<item type=\"input\">=LENB(\"Good Afternoon\")</item> 返回 14."
msgctxt ""
"04060110.xhp\n"
"par_id2954300\n"
-"111\n"
"help.text"
msgid "<item type=\"input\">=LENB(12345.67)</item> returns 8."
msgstr "<item type=\"input\">=LENB(12345.67)</item> 返回 8."
@@ -24104,7 +22924,6 @@ msgstr "<bookmark_value>LOWER 函数</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3153983\n"
-"87\n"
"help.text"
msgid "LOWER"
msgstr "LOWER"
@@ -24113,7 +22932,6 @@ msgstr "LOWER"
msgctxt ""
"04060110.xhp\n"
"par_id3152791\n"
-"88\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_KLEIN\">Converts all uppercase letters in a text string to lowercase.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KLEIN\">将文本字符串中的所有大写字母转换为小写字母。</ahelp>"
@@ -24122,7 +22940,6 @@ msgstr "<ahelp hid=\"HID_FUNC_KLEIN\">将文本字符串中的所有大写字母
msgctxt ""
"04060110.xhp\n"
"hd_id3155902\n"
-"89\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -24131,7 +22948,6 @@ msgstr "语法"
msgctxt ""
"04060110.xhp\n"
"par_id3150121\n"
-"90\n"
"help.text"
msgid "LOWER(\"Text\")"
msgstr "LOWER(\"Text\")"
@@ -24140,7 +22956,6 @@ msgstr "LOWER(\"Text\")"
msgctxt ""
"04060110.xhp\n"
"par_id3153910\n"
-"91\n"
"help.text"
msgid "<emph>Text</emph> refers to the text to be converted."
msgstr "<emph>Text</emph> 是要转换的文字。"
@@ -24149,7 +22964,6 @@ msgstr "<emph>Text</emph> 是要转换的文字。"
msgctxt ""
"04060110.xhp\n"
"hd_id3159343\n"
-"92\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -24158,7 +22972,6 @@ msgstr "示例"
msgctxt ""
"04060110.xhp\n"
"par_id3155329\n"
-"93\n"
"help.text"
msgid "<item type=\"input\">=LOWER(\"Sun\")</item> returns sun."
msgstr "<item type=\"input\">=LOWER(\"Sun\")</item> 返回 sun。"
@@ -24175,7 +22988,6 @@ msgstr "<bookmark_value>MID 函数</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3154589\n"
-"148\n"
"help.text"
msgid "MID"
msgstr "MID"
@@ -24184,7 +22996,6 @@ msgstr "MID"
msgctxt ""
"04060110.xhp\n"
"par_id3154938\n"
-"149\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TEIL\">Returns a text string of a text. The parameters specify the starting position and the number of characters.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_TEIL\">返回文本的文本字符串。参数用于指定起始位置和字符数。</ahelp>"
@@ -24193,7 +23004,6 @@ msgstr "<ahelp hid=\"HID_FUNC_TEIL\">返回文本的文本字符串。参数用
msgctxt ""
"04060110.xhp\n"
"hd_id3148829\n"
-"150\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -24202,7 +23012,6 @@ msgstr "语法"
msgctxt ""
"04060110.xhp\n"
"par_id3150526\n"
-"151\n"
"help.text"
msgid "MID(\"Text\"; Start; Number)"
msgstr "MID(\"Text\"; Start; Number)"
@@ -24211,7 +23020,6 @@ msgstr "MID(\"Text\"; Start; Number)"
msgctxt ""
"04060110.xhp\n"
"par_id3148820\n"
-"152\n"
"help.text"
msgid "<emph>Text</emph> is the text containing the characters to extract."
msgstr "<emph>Text</emph> 是包含要提取的字符的文本。"
@@ -24220,7 +23028,6 @@ msgstr "<emph>Text</emph> 是包含要提取的字符的文本。"
msgctxt ""
"04060110.xhp\n"
"par_id3150774\n"
-"153\n"
"help.text"
msgid "<emph>Start</emph> is the position of the first character in the text to extract."
msgstr "<emph>Start</emph> 是要从文字字符串中提取字符的起始位置。"
@@ -24229,7 +23036,6 @@ msgstr "<emph>Start</emph> 是要从文字字符串中提取字符的起始位
msgctxt ""
"04060110.xhp\n"
"par_id3153063\n"
-"154\n"
"help.text"
msgid "<emph>Number</emph> specifies the number of characters in the part of the text."
msgstr "<emph>Number</emph> 指定文字中字符的数目。"
@@ -24238,7 +23044,6 @@ msgstr "<emph>Number</emph> 指定文字中字符的数目。"
msgctxt ""
"04060110.xhp\n"
"hd_id3150509\n"
-"155\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -24247,7 +23052,6 @@ msgstr "示例"
msgctxt ""
"04060110.xhp\n"
"par_id3158407\n"
-"156\n"
"help.text"
msgid "<item type=\"input\">=MID(\"office\";2;2)</item> returns ff."
msgstr "<item type=\"input\">=MID(\"office\",2,2)</item> 返回 ff。"
@@ -24264,7 +23068,6 @@ msgstr "<bookmark_value>MIDB 函数</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id2954589\n"
-"148\n"
"help.text"
msgid "MIDB"
msgstr "MIDB"
@@ -24273,7 +23076,6 @@ msgstr "MIDB"
msgctxt ""
"04060110.xhp\n"
"par_id2954938\n"
-"149\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MIDB\">Returns a text string of a DBCS text. The parameters specify the starting position and the number of characters.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_MIDB\">返回DBCS文本的一个文本字符串。参数用于指定起始位置以及要返回的字节数。</ahelp>"
@@ -24282,7 +23084,6 @@ msgstr "<ahelp hid=\"HID_FUNC_MIDB\">返回DBCS文本的一个文本字符串。
msgctxt ""
"04060110.xhp\n"
"hd_id2948829\n"
-"150\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -24291,7 +23092,6 @@ msgstr "语法"
msgctxt ""
"04060110.xhp\n"
"par_id2950526\n"
-"151\n"
"help.text"
msgid "MIDB(\"Text\"; Start; Number_bytes)"
msgstr "MIDB(\"文本\", 起始, 字节数)"
@@ -24300,7 +23100,6 @@ msgstr "MIDB(\"文本\", 起始, 字节数)"
msgctxt ""
"04060110.xhp\n"
"par_id2948820\n"
-"152\n"
"help.text"
msgid "<emph>Text</emph> is the text containing the characters to extract."
msgstr "<emph>文本</emph> 是包含有要提取的字符的文本。"
@@ -24309,7 +23108,6 @@ msgstr "<emph>文本</emph> 是包含有要提取的字符的文本。"
msgctxt ""
"04060110.xhp\n"
"par_id2950774\n"
-"153\n"
"help.text"
msgid "<emph>Start</emph> is the position of the first character in the text to extract."
msgstr "<emph>起始</emph> 要提取的文本中第一个字符的位置。"
@@ -24318,7 +23116,6 @@ msgstr "<emph>起始</emph> 要提取的文本中第一个字符的位置。"
msgctxt ""
"04060110.xhp\n"
"par_id2953063\n"
-"154\n"
"help.text"
msgid "<emph>Number_bytes</emph> specifies the number of characters MIDB will return from text, in bytes."
msgstr "<emph>字节数</emph> 指定了 MIDB 将要返回的字符数,以字节为单位。"
@@ -24431,7 +23228,6 @@ msgstr "<bookmark_value>PROPER 函数</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3159143\n"
-"70\n"
"help.text"
msgid "PROPER"
msgstr "PROPER"
@@ -24440,7 +23236,6 @@ msgstr "PROPER"
msgctxt ""
"04060110.xhp\n"
"par_id3149768\n"
-"71\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GROSS2\">Capitalizes the first letter in all words of a text string.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GROSS2\">将文本字符串的所有单词的首字母转换成大写。</ahelp>"
@@ -24449,7 +23244,6 @@ msgstr "<ahelp hid=\"HID_FUNC_GROSS2\">将文本字符串的所有单词的首
msgctxt ""
"04060110.xhp\n"
"hd_id3153573\n"
-"72\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -24458,7 +23252,6 @@ msgstr "语法"
msgctxt ""
"04060110.xhp\n"
"par_id3154260\n"
-"73\n"
"help.text"
msgid "PROPER(\"Text\")"
msgstr "PROPER(\"文本\")"
@@ -24467,7 +23260,6 @@ msgstr "PROPER(\"文本\")"
msgctxt ""
"04060110.xhp\n"
"par_id3147509\n"
-"74\n"
"help.text"
msgid "<emph>Text</emph> refers to the text to be converted."
msgstr "<emph>文本</emph> 要转换的文字。"
@@ -24476,7 +23268,6 @@ msgstr "<emph>文本</emph> 要转换的文字。"
msgctxt ""
"04060110.xhp\n"
"hd_id3147529\n"
-"75\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -24485,7 +23276,6 @@ msgstr "示例"
msgctxt ""
"04060110.xhp\n"
"par_id3155364\n"
-"76\n"
"help.text"
msgid "<item type=\"input\">=PROPER(\"open office\")</item> returns Open Office."
msgstr "<item type=\"input\">=PROPER(\"open office\")</item> 返回 Open Office。"
@@ -24502,7 +23292,6 @@ msgstr "<bookmark_value>REPLACE 函数</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3149171\n"
-"22\n"
"help.text"
msgid "REPLACE"
msgstr "REPLACE"
@@ -24511,7 +23300,6 @@ msgstr "REPLACE"
msgctxt ""
"04060110.xhp\n"
"par_id3148925\n"
-"23\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ERSETZEN\">Replaces part of a text string with a different text string.</ahelp> This function can be used to replace both characters and numbers (which are automatically converted to text). The result of the function is always displayed as text. If you intend to perform further calculations with a number which has been replaced by text, you will need to convert it back to a number using the <link href=\"text/scalc/01/04060110.xhp\" name=\"VALUE\">VALUE</link> function."
msgstr "<ahelp hid=\"HID_FUNC_ERSETZEN\">将文本字符串的一部分用其他文本字符串替换。</ahelp> 此函数可用于替换字符和数字(将自动转换为文本)。函数的结果将始终显示为文本类型。如果想对已经替换成文本的数字执行进一步的计算,必须使用<link href=\"text/scalc/01/04060110.xhp\" name=\"VALUE\">VALUE</link> 函数将其转换回数字。"
@@ -24520,7 +23308,6 @@ msgstr "<ahelp hid=\"HID_FUNC_ERSETZEN\">将文本字符串的一部分用其他
msgctxt ""
"04060110.xhp\n"
"par_id3158426\n"
-"24\n"
"help.text"
msgid "Any text containing numbers must be enclosed in quotation marks if you do not want it to be interpreted as a number and automatically converted to text."
msgstr "输入含有数字的文字时,如果您希望输入的信息不被解释为数字并自动转换成文字,则需要在文字前后加上引号。"
@@ -24529,7 +23316,6 @@ msgstr "输入含有数字的文字时,如果您希望输入的信息不被解
msgctxt ""
"04060110.xhp\n"
"hd_id3149159\n"
-"25\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -24538,7 +23324,6 @@ msgstr "语法"
msgctxt ""
"04060110.xhp\n"
"par_id3147286\n"
-"26\n"
"help.text"
msgid "REPLACE(\"Text\"; Position; Length; \"NewText\")"
msgstr "REPLACE(\"文本\", 位置, 长度, \"新文本\")"
@@ -24547,7 +23332,6 @@ msgstr "REPLACE(\"文本\", 位置, 长度, \"新文本\")"
msgctxt ""
"04060110.xhp\n"
"par_id3149797\n"
-"27\n"
"help.text"
msgid "<emph>Text</emph> refers to text of which a part will be replaced."
msgstr "<emph>文本</emph> 要将其部分内容替换掉的文本。"
@@ -24556,7 +23340,6 @@ msgstr "<emph>文本</emph> 要将其部分内容替换掉的文本。"
msgctxt ""
"04060110.xhp\n"
"par_id3166451\n"
-"28\n"
"help.text"
msgid "<emph>Position</emph> refers to the position within the text where the replacement will begin."
msgstr "<emph>位置</emph> 是要替换的文本的起始位置。"
@@ -24565,7 +23348,6 @@ msgstr "<emph>位置</emph> 是要替换的文本的起始位置。"
msgctxt ""
"04060110.xhp\n"
"par_id3156040\n"
-"29\n"
"help.text"
msgid "<emph>Length</emph> is the number of characters in <emph>Text</emph> to be replaced."
msgstr "<emph>长度</emph> 是要在<emph>文本</emph> 中替换掉的字符数目。"
@@ -24574,7 +23356,6 @@ msgstr "<emph>长度</emph> 是要在<emph>文本</emph> 中替换掉的字符
msgctxt ""
"04060110.xhp\n"
"par_id3159188\n"
-"30\n"
"help.text"
msgid "<emph>NewText</emph> refers to the text which replaces <emph>Text</emph>."
msgstr "<emph>新文本</emph> 是用来替换<emph>文本</emph> 的文字。"
@@ -24583,7 +23364,6 @@ msgstr "<emph>新文本</emph> 是用来替换<emph>文本</emph> 的文字。"
msgctxt ""
"04060110.xhp\n"
"hd_id3146958\n"
-"31\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -24592,7 +23372,6 @@ msgstr "示例"
msgctxt ""
"04060110.xhp\n"
"par_id3154096\n"
-"32\n"
"help.text"
msgid "<item type=\"input\">=REPLACE(\"1234567\";1;1;\"444\")</item> returns \"444234567\". One character at position 1 is replaced by the complete <item type=\"literal\">NewText</item>."
msgstr "<item type=\"input\">=REPLACE(\"1234567\",1,1,\"444\")</item> 返回 \"444234567\"。位于位置1的一个字符整个被<item type=\"literal\">新文本</item> 替代。"
@@ -24609,7 +23388,6 @@ msgstr "<bookmark_value>REPT 函数</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3149741\n"
-"193\n"
"help.text"
msgid "REPT"
msgstr "REPT"
@@ -24618,7 +23396,6 @@ msgstr "REPT"
msgctxt ""
"04060110.xhp\n"
"par_id3153748\n"
-"194\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_WIEDERHOLEN\">Repeats a character string by the given <emph>number</emph> of copies.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_WIEDERHOLEN\">根据给定的重复<emph>次数</emph> 重复字符串。</ahelp>"
@@ -24627,7 +23404,6 @@ msgstr "<ahelp hid=\"HID_FUNC_WIEDERHOLEN\">根据给定的重复<emph>次数</e
msgctxt ""
"04060110.xhp\n"
"hd_id3152884\n"
-"195\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -24636,7 +23412,6 @@ msgstr "语法"
msgctxt ""
"04060110.xhp\n"
"par_id3150494\n"
-"196\n"
"help.text"
msgid "REPT(\"Text\"; Number)"
msgstr "REPT(\"文本\", 数量)"
@@ -24645,7 +23420,6 @@ msgstr "REPT(\"文本\", 数量)"
msgctxt ""
"04060110.xhp\n"
"par_id3154859\n"
-"197\n"
"help.text"
msgid "<emph>Text</emph> is the text to be repeated."
msgstr "<emph>文本</emph> 是要重复的文字。"
@@ -24654,7 +23428,6 @@ msgstr "<emph>文本</emph> 是要重复的文字。"
msgctxt ""
"04060110.xhp\n"
"par_id3150638\n"
-"198\n"
"help.text"
msgid "<emph>Number</emph> is the number of repetitions."
msgstr "<emph>次数</emph> 是重复的次数。"
@@ -24663,7 +23436,6 @@ msgstr "<emph>次数</emph> 是重复的次数。"
msgctxt ""
"04060110.xhp\n"
"par_id3149922\n"
-"212\n"
"help.text"
msgid "The result can be a maximum of 255 characters."
msgstr "函数 REPT 的结果不能多于 255 个字符。"
@@ -24672,7 +23444,6 @@ msgstr "函数 REPT 的结果不能多于 255 个字符。"
msgctxt ""
"04060110.xhp\n"
"hd_id3156213\n"
-"199\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -24681,7 +23452,6 @@ msgstr "示例"
msgctxt ""
"04060110.xhp\n"
"par_id3148626\n"
-"200\n"
"help.text"
msgid "<item type=\"input\">=REPT(\"Good morning\";2)</item> returns Good morningGood morning."
msgstr "<item type=\"input\">=REPT(\"Good morning\",2)</item> 返回 Good morningGood morning。"
@@ -24698,7 +23468,6 @@ msgstr "<bookmark_value>RIGHT 函数</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3149805\n"
-"113\n"
"help.text"
msgid "RIGHT"
msgstr "RIGHT"
@@ -24707,7 +23476,6 @@ msgstr "RIGHT"
msgctxt ""
"04060110.xhp\n"
"par_id3145375\n"
-"114\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_RECHTS\">Returns the last character or characters of a text.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_RECHTS\">返回文本中最后一个或多个字符。</ahelp>"
@@ -24716,7 +23484,6 @@ msgstr "<ahelp hid=\"HID_FUNC_RECHTS\">返回文本中最后一个或多个字
msgctxt ""
"04060110.xhp\n"
"hd_id3150837\n"
-"115\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -24725,7 +23492,6 @@ msgstr "语法"
msgctxt ""
"04060110.xhp\n"
"par_id3154344\n"
-"116\n"
"help.text"
msgid "RIGHT(\"Text\"; Number)"
msgstr "RIGHT(\"文本\", 字符数)"
@@ -24734,7 +23500,6 @@ msgstr "RIGHT(\"文本\", 字符数)"
msgctxt ""
"04060110.xhp\n"
"par_id3149426\n"
-"117\n"
"help.text"
msgid "<emph>Text</emph> is the text of which the right part is to be determined."
msgstr "<emph>文本</emph> 是指要确定其右侧部分字符的文字。"
@@ -24743,7 +23508,6 @@ msgstr "<emph>文本</emph> 是指要确定其右侧部分字符的文字。"
msgctxt ""
"04060110.xhp\n"
"par_id3153350\n"
-"118\n"
"help.text"
msgid "<emph>Number</emph> (optional) is the number of characters from the right part of the text."
msgstr "<emph>字符数</emph>(可选)是文本右侧的字符数。"
@@ -24752,7 +23516,6 @@ msgstr "<emph>字符数</emph>(可选)是文本右侧的字符数。"
msgctxt ""
"04060110.xhp\n"
"hd_id3148661\n"
-"119\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -24761,7 +23524,6 @@ msgstr "示例"
msgctxt ""
"04060110.xhp\n"
"par_id3151132\n"
-"120\n"
"help.text"
msgid "<item type=\"input\">=RIGHT(\"Sun\";2)</item> returns un."
msgstr "<item type=\"input\">=RIGHT(\"Sun\",2)</item> 返回 un。"
@@ -24778,7 +23540,6 @@ msgstr "<bookmark_value>RIGHTB 函数</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id2949805\n"
-"113\n"
"help.text"
msgid "RIGHTB"
msgstr "RIGHTB"
@@ -24787,7 +23548,6 @@ msgstr "RIGHTB"
msgctxt ""
"04060110.xhp\n"
"par_id2945375\n"
-"114\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_RIGHTB\">Returns the last character or characters of a text with double bytes characters sets (DBCS).</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_RIGHTB\">返回双字节字符集 (DBCS) 文本的最后一个或几个字符</ahelp>"
@@ -24796,7 +23556,6 @@ msgstr "<ahelp hid=\"HID_FUNC_RIGHTB\">返回双字节字符集 (DBCS) 文本的
msgctxt ""
"04060110.xhp\n"
"hd_id2950837\n"
-"115\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -24805,7 +23564,6 @@ msgstr "语法"
msgctxt ""
"04060110.xhp\n"
"par_id2954344\n"
-"116\n"
"help.text"
msgid "RIGHTB(\"Text\"; Number_bytes)"
msgstr "RIGHTB(\"文本\"; 字节数)"
@@ -24814,7 +23572,6 @@ msgstr "RIGHTB(\"文本\"; 字节数)"
msgctxt ""
"04060110.xhp\n"
"par_id2949426\n"
-"117\n"
"help.text"
msgid "<emph>Text</emph> is the text of which the right part is to be determined."
msgstr "<emph>文本</emph> 是需要确定其右侧字符的文本。"
@@ -24823,7 +23580,6 @@ msgstr "<emph>文本</emph> 是需要确定其右侧字符的文本。"
msgctxt ""
"04060110.xhp\n"
"par_id2953350\n"
-"118\n"
"help.text"
msgid "<emph>Number_bytes</emph> (optional) specifies the number of characters you want RIGHTB to extract, based on bytes."
msgstr "<emph>字节数</emph> (可选) 指定RIGHTB函数需要提取多少个字符,以“字节”为单位。"
@@ -24888,7 +23644,6 @@ msgstr "<bookmark_value>ROMAN 函数</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3153534\n"
-"248\n"
"help.text"
msgid "ROMAN"
msgstr "ROMAN"
@@ -24897,7 +23652,6 @@ msgstr "ROMAN"
msgctxt ""
"04060110.xhp\n"
"par_id3151256\n"
-"249\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ROEMISCH\">Converts a number into a Roman numeral. The value range must be between 0 and 3999, the modes can be integers from 0 to 4.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_ROEMISCH\">将数字转换成罗马数字。数字必须介于 0 到 3999 之间,Mode 的值可以是 0 到 4 之间的整数。</ahelp>"
@@ -24906,7 +23660,6 @@ msgstr "<ahelp hid=\"HID_FUNC_ROEMISCH\">将数字转换成罗马数字。数字
msgctxt ""
"04060110.xhp\n"
"hd_id3149299\n"
-"250\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -24915,7 +23668,6 @@ msgstr "语法"
msgctxt ""
"04060110.xhp\n"
"par_id3150593\n"
-"251\n"
"help.text"
msgid "ROMAN(Number; Mode)"
msgstr "ROMAN(Number; Mode)"
@@ -24924,7 +23676,6 @@ msgstr "ROMAN(Number; Mode)"
msgctxt ""
"04060110.xhp\n"
"par_id3156139\n"
-"252\n"
"help.text"
msgid "<emph>Number</emph> is the number that is to be converted into a Roman numeral."
msgstr "<emph>Number</emph> 是要转换成罗马数字的数字。"
@@ -24933,7 +23684,6 @@ msgstr "<emph>Number</emph> 是要转换成罗马数字的数字。"
msgctxt ""
"04060110.xhp\n"
"par_id3153318\n"
-"253\n"
"help.text"
msgid "<emph>Mode</emph> (optional) indicates the degree of simplification. The higher the value, the greater is the simplification of the Roman number."
msgstr "<emph>Mode</emph>(可选)指示简化的级别。值越高,转换成的罗马数字就越简单。"
@@ -24942,7 +23692,6 @@ msgstr "<emph>Mode</emph>(可选)指示简化的级别。值越高,转换
msgctxt ""
"04060110.xhp\n"
"hd_id3145306\n"
-"254\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -24951,7 +23700,6 @@ msgstr "示例"
msgctxt ""
"04060110.xhp\n"
"par_id3151371\n"
-"255\n"
"help.text"
msgid "<item type=\"input\">=ROMAN(999)</item> returns CMXCIX"
msgstr "<item type=\"input\">=ROMAN(999)</item> 返回 CMXCIX"
@@ -24960,7 +23708,6 @@ msgstr "<item type=\"input\">=ROMAN(999)</item> 返回 CMXCIX"
msgctxt ""
"04060110.xhp\n"
"par_id3153938\n"
-"256\n"
"help.text"
msgid "<item type=\"input\">=ROMAN(999;0)</item> returns CMXCIX"
msgstr "<item type=\"input\">=ROMAN(999;0)</item> 返回 CMXCIX"
@@ -24969,7 +23716,6 @@ msgstr "<item type=\"input\">=ROMAN(999;0)</item> 返回 CMXCIX"
msgctxt ""
"04060110.xhp\n"
"par_id3148412\n"
-"257\n"
"help.text"
msgid "<item type=\"input\">=ROMAN (999;1)</item> returns LMVLIV"
msgstr "<item type=\"input\">=ROMAN (999;1)</item> 返回 LMVLIV"
@@ -24978,7 +23724,6 @@ msgstr "<item type=\"input\">=ROMAN (999;1)</item> 返回 LMVLIV"
msgctxt ""
"04060110.xhp\n"
"par_id3155421\n"
-"258\n"
"help.text"
msgid "<item type=\"input\">=ROMAN(999;2)</item> returns XMIX"
msgstr "<item type=\"input\">=ROMAN(999;2)</item> 返回 XMIX"
@@ -24987,7 +23732,6 @@ msgstr "<item type=\"input\">=ROMAN(999;2)</item> 返回 XMIX"
msgctxt ""
"04060110.xhp\n"
"par_id3149235\n"
-"259\n"
"help.text"
msgid "<item type=\"input\">=ROMAN(999;3)</item> returns VMIV"
msgstr "<item type=\"input\">=ROMAN(999;3)</item> 返回 VMIV"
@@ -24996,7 +23740,6 @@ msgstr "<item type=\"input\">=ROMAN(999;3)</item> 返回 VMIV"
msgctxt ""
"04060110.xhp\n"
"par_id3150624\n"
-"260\n"
"help.text"
msgid "<item type=\"input\">=ROMAN(999;4)</item> returns IM"
msgstr "<item type=\"input\">=ROMAN(999;4)</item> 返回 IM"
@@ -25013,7 +23756,6 @@ msgstr "<bookmark_value>SEARCH 函数</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3151005\n"
-"122\n"
"help.text"
msgid "SEARCH"
msgstr "SEARCH"
@@ -25022,7 +23764,6 @@ msgstr "SEARCH"
msgctxt ""
"04060110.xhp\n"
"par_id3148692\n"
-"123\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_SUCHEN\">Returns the position of a text segment within a character string.</ahelp> You can set the start of the search as an option. The search text can be a number or any sequence of characters. The search is not case-sensitive."
msgstr "<ahelp hid=\"HID_FUNC_SUCHEN\">返回字符串中某个文本段的位置。</ahelp>您可以设置搜索的起始位置。搜索的文字可以是数字或任意的字符序列。搜索不区分大小写。"
@@ -25031,7 +23772,6 @@ msgstr "<ahelp hid=\"HID_FUNC_SUCHEN\">返回字符串中某个文本段的位
msgctxt ""
"04060110.xhp\n"
"hd_id3152964\n"
-"124\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -25040,7 +23780,6 @@ msgstr "语法"
msgctxt ""
"04060110.xhp\n"
"par_id3154671\n"
-"125\n"
"help.text"
msgid "SEARCH(\"FindText\"; \"Text\"; Position)"
msgstr "SEARCH(\"FindText\"; \"Text\"; Position)"
@@ -25049,7 +23788,6 @@ msgstr "SEARCH(\"FindText\"; \"Text\"; Position)"
msgctxt ""
"04060110.xhp\n"
"par_id3146080\n"
-"126\n"
"help.text"
msgid "<emph>FindText</emph> is the text to be searched for."
msgstr "<emph>FindText</emph> 是要搜索的文本。"
@@ -25058,7 +23796,6 @@ msgstr "<emph>FindText</emph> 是要搜索的文本。"
msgctxt ""
"04060110.xhp\n"
"par_id3154111\n"
-"127\n"
"help.text"
msgid "<emph>Text</emph> is the text where the search will take place."
msgstr "<emph>Text</emph> 是要在其中进行搜索的文本。"
@@ -25067,7 +23804,6 @@ msgstr "<emph>Text</emph> 是要在其中进行搜索的文本。"
msgctxt ""
"04060110.xhp\n"
"par_id3149559\n"
-"128\n"
"help.text"
msgid "<emph>Position</emph> (optional) is the position in the text where the search is to start."
msgstr "<emph>Position</emph>(可选)是开始搜索的起始字符位置。"
@@ -25076,7 +23812,6 @@ msgstr "<emph>Position</emph>(可选)是开始搜索的起始字符位置。
msgctxt ""
"04060110.xhp\n"
"hd_id3147322\n"
-"129\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -25085,7 +23820,6 @@ msgstr "示例"
msgctxt ""
"04060110.xhp\n"
"par_id3154564\n"
-"130\n"
"help.text"
msgid "<item type=\"input\">=SEARCH(54;998877665544)</item> returns 10."
msgstr "<item type=\"input\">=SEARCH(54;998877665544)</item> 返回 10。"
@@ -25102,7 +23836,6 @@ msgstr "<bookmark_value>SUBSTITUTE 函数</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3154830\n"
-"174\n"
"help.text"
msgid "SUBSTITUTE"
msgstr "SUBSTITUTE"
@@ -25111,7 +23844,6 @@ msgstr "SUBSTITUTE"
msgctxt ""
"04060110.xhp\n"
"par_id3153698\n"
-"175\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_WECHSELN\">Substitutes new text for old text in a string.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_WECHSELN\">用新文字替换字符串中的旧文字。</ahelp>"
@@ -25120,7 +23852,6 @@ msgstr "<ahelp hid=\"HID_FUNC_WECHSELN\">用新文字替换字符串中的旧文
msgctxt ""
"04060110.xhp\n"
"hd_id3150994\n"
-"176\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -25129,7 +23860,6 @@ msgstr "语法"
msgctxt ""
"04060110.xhp\n"
"par_id3147582\n"
-"177\n"
"help.text"
msgid "SUBSTITUTE(\"Text\"; \"SearchText\"; \"NewText\"; Occurrence)"
msgstr "SUBSTITUTE(\"Text\"; \"SearchText\"; \"NewText\"; Occurrence)"
@@ -25138,7 +23868,6 @@ msgstr "SUBSTITUTE(\"Text\"; \"SearchText\"; \"NewText\"; Occurrence)"
msgctxt ""
"04060110.xhp\n"
"par_id3153675\n"
-"178\n"
"help.text"
msgid "<emph>Text</emph> is the text in which text segments are to be exchanged."
msgstr "<emph>Text</emph> 是需要交换部分文字的文本。"
@@ -25147,7 +23876,6 @@ msgstr "<emph>Text</emph> 是需要交换部分文字的文本。"
msgctxt ""
"04060110.xhp\n"
"par_id3156155\n"
-"179\n"
"help.text"
msgid "<emph>SearchText </emph>is the text segment that is to be replaced (a number of times)."
msgstr "<emph>SearchText</emph> 是要(多次)替换的文本段。"
@@ -25156,7 +23884,6 @@ msgstr "<emph>SearchText</emph> 是要(多次)替换的文本段。"
msgctxt ""
"04060110.xhp\n"
"par_id3145779\n"
-"180\n"
"help.text"
msgid "<emph>NewText</emph> is the text that is to replace the text segment."
msgstr "<emph>NewText</emph> 是用于替换文本段的文本。"
@@ -25165,7 +23892,6 @@ msgstr "<emph>NewText</emph> 是用于替换文本段的文本。"
msgctxt ""
"04060110.xhp\n"
"par_id3150348\n"
-"181\n"
"help.text"
msgid "<emph>Occurrence</emph> (optional) indicates which occurrence of the search text is to be replaced. If this parameter is missing the search text is replaced throughout."
msgstr "<emph>Occurrence</emph>(可选)指出要替换第几次出现的搜索文本。如果不指定此参数,则所有搜索文本都将被替换。"
@@ -25174,7 +23900,6 @@ msgstr "<emph>Occurrence</emph>(可选)指出要替换第几次出现的搜
msgctxt ""
"04060110.xhp\n"
"hd_id3150946\n"
-"182\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -25183,7 +23908,6 @@ msgstr "示例"
msgctxt ""
"04060110.xhp\n"
"par_id3150412\n"
-"183\n"
"help.text"
msgid "<item type=\"input\">=SUBSTITUTE(\"123123123\";\"3\";\"abc\")</item> returns 12abc12abc12abc."
msgstr "<item type=\"input\">=SUBSTITUTE(\"123123123\";\"3\";\"abc\")</item> 返回 12abc12abc12abc。"
@@ -25192,7 +23916,6 @@ msgstr "<item type=\"input\">=SUBSTITUTE(\"123123123\";\"3\";\"abc\")</item> 返
msgctxt ""
"04060110.xhp\n"
"par_id3154915\n"
-"238\n"
"help.text"
msgid "<item type=\"input\">=SUBSTITUTE(\"123123123\";\"3\";\"abc\";2)</item> returns 12312abc123."
msgstr "<item type=\"input\">=SUBSTITUTE(\"123123123\";\"3\";\"abc\";2)</item> 返回 12312abc123。"
@@ -25209,7 +23932,6 @@ msgstr "<bookmark_value>T 函数</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3148977\n"
-"140\n"
"help.text"
msgid "T"
msgstr "T"
@@ -25218,7 +23940,6 @@ msgstr "T"
msgctxt ""
"04060110.xhp\n"
"par_id3154359\n"
-"141\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_T\">This function returns the target text, or a blank text string if the target is not text.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_T\">此函数返回目标文本,或者在目标不是文本时返回空白文本字符串。</ahelp>"
@@ -25227,7 +23948,6 @@ msgstr "<ahelp hid=\"HID_FUNC_T\">此函数返回目标文本,或者在目标
msgctxt ""
"04060110.xhp\n"
"hd_id3155858\n"
-"142\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -25236,7 +23956,6 @@ msgstr "语法"
msgctxt ""
"04060110.xhp\n"
"par_id3155871\n"
-"143\n"
"help.text"
msgid "T(Value)"
msgstr "T(Value)"
@@ -25245,7 +23964,6 @@ msgstr "T(Value)"
msgctxt ""
"04060110.xhp\n"
"par_id3154726\n"
-"144\n"
"help.text"
msgid "If <emph>Value</emph> is a text string or refers to a text string, T returns that text string; otherwise it returns a blank text string."
msgstr "如果 <emph>Value</emph> 是(或表示)文本字符串,则 T 返回文本字符串;否则返回空文本字符串。"
@@ -25254,7 +23972,6 @@ msgstr "如果 <emph>Value</emph> 是(或表示)文本字符串,则 T 返
msgctxt ""
"04060110.xhp\n"
"hd_id3155544\n"
-"145\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -25263,7 +23980,6 @@ msgstr "示例"
msgctxt ""
"04060110.xhp\n"
"par_id3151062\n"
-"146\n"
"help.text"
msgid "<item type=\"input\">=T(12345)</item> returns an empty string."
msgstr "<item type=\"input\">=T(12345)</item> 返回空字符串。"
@@ -25288,7 +24004,6 @@ msgstr "<bookmark_value>TEXT 函数</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3147132\n"
-"158\n"
"help.text"
msgid "TEXT"
msgstr "TEXT"
@@ -25297,7 +24012,6 @@ msgstr "TEXT"
msgctxt ""
"04060110.xhp\n"
"par_id3147213\n"
-"159\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TEXT\">Converts a number into text according to a given format.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_TEXT\">根据给定的格式将数字转换成文字。</ahelp>"
@@ -25306,7 +24020,6 @@ msgstr "<ahelp hid=\"HID_FUNC_TEXT\">根据给定的格式将数字转换成文
msgctxt ""
"04060110.xhp\n"
"hd_id3153129\n"
-"160\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -25315,7 +24028,6 @@ msgstr "语法"
msgctxt ""
"04060110.xhp\n"
"par_id3147377\n"
-"161\n"
"help.text"
msgid "TEXT(Number; Format)"
msgstr "TEXT(value; format_text)"
@@ -25324,7 +24036,6 @@ msgstr "TEXT(value; format_text)"
msgctxt ""
"04060110.xhp\n"
"par_id3147389\n"
-"162\n"
"help.text"
msgid "<emph>Number</emph> is the numerical value to be converted."
msgstr "<emph>Number</emph> 是要转换的数值。"
@@ -25333,7 +24044,6 @@ msgstr "<emph>Number</emph> 是要转换的数值。"
msgctxt ""
"04060110.xhp\n"
"par_id3156167\n"
-"163\n"
"help.text"
msgid "<emph>Format</emph> is the text which defines the format. Use decimal and thousands separators according to the language set in the cell format."
msgstr "<emph>Format</emph> 是定义格式的文字。根据单元格格式中的语言设置来使用小数点和千位分隔符。"
@@ -25374,7 +24084,6 @@ msgstr "<bookmark_value>TRIM 函数</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3151039\n"
-"54\n"
"help.text"
msgid "TRIM"
msgstr "TRIM"
@@ -25383,7 +24092,6 @@ msgstr "TRIM"
msgctxt ""
"04060110.xhp\n"
"par_id3157888\n"
-"55\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GLAETTEN\">Removes spaces from a string, leaving only a single space character between words.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GLAETTEN\">删除字符串中的空格,在字词之间只留一个空格。</ahelp>"
@@ -25392,7 +24100,6 @@ msgstr "<ahelp hid=\"HID_FUNC_GLAETTEN\">删除字符串中的空格,在字词
msgctxt ""
"04060110.xhp\n"
"hd_id3152913\n"
-"56\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -25401,7 +24108,6 @@ msgstr "语法"
msgctxt ""
"04060110.xhp\n"
"par_id3151349\n"
-"57\n"
"help.text"
msgid "TRIM(\"Text\")"
msgstr "TRIM(\"Text\")"
@@ -25410,7 +24116,6 @@ msgstr "TRIM(\"Text\")"
msgctxt ""
"04060110.xhp\n"
"par_id3151362\n"
-"58\n"
"help.text"
msgid "<emph>Text</emph> refers to text in which spaces are to be removed."
msgstr "<emph>文本</emph> 是指想要去除其中空格的文本。"
@@ -25419,7 +24124,6 @@ msgstr "<emph>文本</emph> 是指想要去除其中空格的文本。"
msgctxt ""
"04060110.xhp\n"
"hd_id3146838\n"
-"59\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -25428,10 +24132,9 @@ msgstr "示例"
msgctxt ""
"04060110.xhp\n"
"par_id3156074\n"
-"60\n"
"help.text"
-msgid "<item type=\"input\">=TRIM(\" hello world \")</item> returns hello world without leading and trailing spaces and with single space between words."
-msgstr "<item type=\"input\">=TRIM(\" hello world \")</item> 返回 “hello world”, 不包含开头和结尾的空格,但是包含单词之间的空格。"
+msgid "<item type=\"input\">=TRIM(\" hello world \")</item> returns hello world without leading and trailing spaces and with single space between words."
+msgstr ""
#: 04060110.xhp
msgctxt ""
@@ -25470,8 +24173,8 @@ msgctxt ""
"04060110.xhp\n"
"par_id0907200904123753\n"
"help.text"
-msgid "UNICHAR(number)"
-msgstr "UNICHAR(number)"
+msgid "<item type=\"literal\">UNICHAR(number)</item>"
+msgstr ""
#: 04060110.xhp
msgctxt ""
@@ -25492,6 +24195,14 @@ msgstr "=UNICHAR(169) 返回版权字符 <emph>©</emph>。"
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
+"par_id050220170755399756\n"
+"help.text"
+msgid "See also the UNICODE() function."
+msgstr ""
+
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
"bm_id0907200904033543\n"
"help.text"
msgid "<bookmark_value>UNICODE function</bookmark_value>"
@@ -25526,8 +24237,8 @@ msgctxt ""
"04060110.xhp\n"
"par_id0907200904123846\n"
"help.text"
-msgid "UNICODE(\"Text\")"
-msgstr "UNICODE(\"Text\")"
+msgid "<item type=\"literal\">UNICODE(\"Text\")</item>"
+msgstr ""
#: 04060110.xhp
msgctxt ""
@@ -25548,6 +24259,14 @@ msgstr "=UNICODE(\"©\") 返回版权字符的 Unicode 数字 169。"
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
+"par_id050220170755393174\n"
+"help.text"
+msgid "See also the UNICHAR() function."
+msgstr ""
+
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
"bm_id3145178\n"
"help.text"
msgid "<bookmark_value>UPPER function</bookmark_value>"
@@ -25557,7 +24276,6 @@ msgstr "<bookmark_value>UPPER 函数</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3145178\n"
-"62\n"
"help.text"
msgid "UPPER"
msgstr "UPPER"
@@ -25566,7 +24284,6 @@ msgstr "UPPER"
msgctxt ""
"04060110.xhp\n"
"par_id3162905\n"
-"63\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GROSS\">Converts the string specified in the <emph>text</emph> field to uppercase.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GROSS\">将<emph>文本</emph>字段中指定的字符串转换为大写形式。</ahelp>"
@@ -25575,7 +24292,6 @@ msgstr "<ahelp hid=\"HID_FUNC_GROSS\">将<emph>文本</emph>字段中指定的
msgctxt ""
"04060110.xhp\n"
"hd_id3148526\n"
-"64\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -25584,7 +24300,6 @@ msgstr "语法"
msgctxt ""
"04060110.xhp\n"
"par_id3148539\n"
-"65\n"
"help.text"
msgid "UPPER(\"Text\")"
msgstr "UPPER(\"Text\")"
@@ -25593,7 +24308,6 @@ msgstr "UPPER(\"Text\")"
msgctxt ""
"04060110.xhp\n"
"par_id3148496\n"
-"66\n"
"help.text"
msgid "<emph>Text</emph> refers to the lower case letters you want to convert to upper case."
msgstr "<emph>Text</emph> 是要将其转换为大写的小写字母。"
@@ -25602,7 +24316,6 @@ msgstr "<emph>Text</emph> 是要将其转换为大写的小写字母。"
msgctxt ""
"04060110.xhp\n"
"hd_id3148516\n"
-"67\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -25611,7 +24324,6 @@ msgstr "示例"
msgctxt ""
"04060110.xhp\n"
"par_id3146757\n"
-"68\n"
"help.text"
msgid "<item type=\"input\">=UPPER(\"Good Morning\")</item> returns GOOD MORNING."
msgstr "<item type=\"input\">=UPPER(\"Good Morning\")</item> 返回 GOOD MORNING。"
@@ -25628,7 +24340,6 @@ msgstr "<bookmark_value>VALUE 函数</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3150802\n"
-"185\n"
"help.text"
msgid "VALUE"
msgstr "VALUE"
@@ -25637,7 +24348,6 @@ msgstr "VALUE"
msgctxt ""
"04060110.xhp\n"
"par_id3152551\n"
-"186\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_WERT\">Converts a text string into a number.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_WERT\">将文本字符串转换为数字。</ahelp>"
@@ -25646,7 +24356,6 @@ msgstr "<ahelp hid=\"HID_FUNC_WERT\">将文本字符串转换为数字。</ahelp
msgctxt ""
"04060110.xhp\n"
"hd_id3152568\n"
-"187\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -25655,7 +24364,6 @@ msgstr "语法"
msgctxt ""
"04060110.xhp\n"
"par_id3153638\n"
-"188\n"
"help.text"
msgid "VALUE(\"Text\")"
msgstr "VALUE(\"Text\")"
@@ -25664,7 +24372,6 @@ msgstr "VALUE(\"Text\")"
msgctxt ""
"04060110.xhp\n"
"par_id3153651\n"
-"189\n"
"help.text"
msgid "<emph>Text</emph> is the text to be converted to a number."
msgstr "<emph>Text</emph> 是被转换为数字的文本。"
@@ -25673,7 +24380,6 @@ msgstr "<emph>Text</emph> 是被转换为数字的文本。"
msgctxt ""
"04060110.xhp\n"
"hd_id3144719\n"
-"190\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -25682,7 +24388,6 @@ msgstr "示例"
msgctxt ""
"04060110.xhp\n"
"par_id3144733\n"
-"191\n"
"help.text"
msgid "<item type=\"input\">=VALUE(\"4321\")</item> returns 4321."
msgstr "<item type=\"input\">=VALUE(\"4321\")</item> 返回 4321。"
@@ -25707,7 +24412,6 @@ msgstr "<bookmark_value>加载宏; 函数</bookmark_value><bookmark_value>函数
msgctxt ""
"04060111.xhp\n"
"hd_id3150870\n"
-"1\n"
"help.text"
msgid "<variable id=\"head_addin\"><link href=\"text/scalc/01/04060111.xhp\" name=\"Add-in Functions\">Add-in Functions</link></variable>"
msgstr ""
@@ -25716,7 +24420,6 @@ msgstr ""
msgctxt ""
"04060111.xhp\n"
"par_id3147427\n"
-"2\n"
"help.text"
msgid "<variable id=\"addintext\">The following describes and lists some of the available add-in functions. </variable>"
msgstr "<variable id=\"addintext\">下面列出了一些可用的加载宏函数,并对其进行了说明。 </variable>"
@@ -25725,7 +24428,6 @@ msgstr "<variable id=\"addintext\">下面列出了一些可用的加载宏函数
msgctxt ""
"04060111.xhp\n"
"par_id3163713\n"
-"75\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060112.xhp#addinconcept\">Add-in concept</link>"
msgstr "<link href=\"text/scalc/01/04060112.xhp#addinconcept\">加载宏概念</link>"
@@ -25734,7 +24436,6 @@ msgstr "<link href=\"text/scalc/01/04060112.xhp#addinconcept\">加载宏概念</
msgctxt ""
"04060111.xhp\n"
"par_id3146120\n"
-"5\n"
"help.text"
msgid "You will also find a <link href=\"text/scalc/01/04060112.xhp\">description of the $[officename] Calc add-in interface</link> in the Help. In addition, important functions and their parameters are described in the Help for the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>$[officename] Calc add-in DLL</defaultinline></switchinline>."
msgstr "您将在帮助文件中看到 <link href=\"text/scalc/01/04060112.xhp\">$[officename] Calc 界面说明</link>,另外,重要的功能和参数在 <switchinline select=\"sys\"><caseinline select=\"UNIX\">共享库 </caseinline><defaultinline>$[officename] Calc 加载宏 DLL</defaultinline></switchinline> 中进行了说明。"
@@ -25743,7 +24444,6 @@ msgstr "您将在帮助文件中看到 <link href=\"text/scalc/01/04060112.xhp\"
msgctxt ""
"04060111.xhp\n"
"hd_id3151075\n"
-"7\n"
"help.text"
msgid "Add-ins supplied"
msgstr "提供的加载宏"
@@ -25752,7 +24452,6 @@ msgstr "提供的加载宏"
msgctxt ""
"04060111.xhp\n"
"par_id3156285\n"
-"8\n"
"help.text"
msgid "$[officename] contains examples for the add-in interface of $[officename] Calc."
msgstr "$[officename] 包含 $[officename] Calc 加载宏界面的示例。"
@@ -25761,7 +24460,6 @@ msgstr "$[officename] 包含 $[officename] Calc 加载宏界面的示例。"
msgctxt ""
"04060111.xhp\n"
"par_id3159267\n"
-"76\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060115.xhp\">Analysis Functions Part One</link>"
msgstr "<link href=\"text/scalc/01/04060115.xhp\">分析函数第一部分</link>"
@@ -25770,7 +24468,6 @@ msgstr "<link href=\"text/scalc/01/04060115.xhp\">分析函数第一部分</link
msgctxt ""
"04060111.xhp\n"
"par_id3154703\n"
-"77\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060116.xhp\">Analysis Functions Part Two</link>"
msgstr "<link href=\"text/scalc/01/04060116.xhp\">分析函数第二部分</link>"
@@ -25787,7 +24484,6 @@ msgstr "<bookmark_value>ISLEAPYEAR 函数</bookmark_value><bookmark_value>闰年
msgctxt ""
"04060111.xhp\n"
"hd_id3149566\n"
-"14\n"
"help.text"
msgid "ISLEAPYEAR"
msgstr "ISLEAPYEAR"
@@ -25796,7 +24492,6 @@ msgstr "ISLEAPYEAR"
msgctxt ""
"04060111.xhp\n"
"par_id3150297\n"
-"15\n"
"help.text"
msgid "<ahelp hid=\".\">Determines whether a year is a leap year.</ahelp> If yes, the function will return the value 1 (TRUE); if not, it will return 0 (FALSE)."
msgstr "<ahelp hid=\".\">确定某一年是否为闰年。</ahelp>如果是,此函数将返回值 1 (TRUE);否则将返回 0 (FALSE)。"
@@ -25805,17 +24500,14 @@ msgstr "<ahelp hid=\".\">确定某一年是否为闰年。</ahelp>如果是,
msgctxt ""
"04060111.xhp\n"
"hd_id3148487\n"
-"16\n"
"help.text"
msgid "Syntax"
msgstr "语法"
#: 04060111.xhp
-#, fuzzy
msgctxt ""
"04060111.xhp\n"
"par_id3150205\n"
-"17\n"
"help.text"
msgid "ISLEAPYEAR(Date)"
msgstr "ISLEAPYEAR(\"Date\")"
@@ -25824,7 +24516,6 @@ msgstr "ISLEAPYEAR(\"Date\")"
msgctxt ""
"04060111.xhp\n"
"par_id3159239\n"
-"18\n"
"help.text"
msgid "<emph>Date</emph> specifies whether a given date falls within a leap year. The Date parameter must be a valid date."
msgstr ""
@@ -25833,7 +24524,6 @@ msgstr ""
msgctxt ""
"04060111.xhp\n"
"hd_id3149817\n"
-"19\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -25842,7 +24532,6 @@ msgstr "示例"
msgctxt ""
"04060111.xhp\n"
"par_id3150786\n"
-"20\n"
"help.text"
msgid "=ISLEAPYEAR(A1) returns 1, if A1 contains 1968-02-29, the valid date 29th of February 1968 in your locale setting."
msgstr "如果 A1 包含 1968-02-29,您的语言环境设置中的有效日期 1968 年 2 月 29 号,=ISLEAPYEAR(A1) 返回 1。"
@@ -25875,7 +24564,6 @@ msgstr "<bookmark_value>YEARS 函数</bookmark_value><bookmark_value>两个日
msgctxt ""
"04060111.xhp\n"
"hd_id3154656\n"
-"21\n"
"help.text"
msgid "YEARS"
msgstr "YEARS"
@@ -25884,7 +24572,6 @@ msgstr "YEARS"
msgctxt ""
"04060111.xhp\n"
"par_id3150886\n"
-"22\n"
"help.text"
msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFYEARS\">Calculates the difference in years between two dates.</ahelp>"
msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFYEARS\">计算两个日期之间相差的年数。</ahelp>"
@@ -25893,7 +24580,6 @@ msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFYEARS\">计算两个日期之间相差的
msgctxt ""
"04060111.xhp\n"
"hd_id3154370\n"
-"23\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -25902,7 +24588,6 @@ msgstr "语法"
msgctxt ""
"04060111.xhp\n"
"par_id3146114\n"
-"24\n"
"help.text"
msgid "YEARS(StartDate; EndDate; Type)"
msgstr "YEARS(StartDate; EndDate; Type)"
@@ -25911,7 +24596,6 @@ msgstr "YEARS(StartDate; EndDate; Type)"
msgctxt ""
"04060111.xhp\n"
"par_id3145387\n"
-"25\n"
"help.text"
msgid "<emph>StartDate</emph> is the first date"
msgstr "<emph>StartDate</emph> 是开始日期"
@@ -25920,7 +24604,6 @@ msgstr "<emph>StartDate</emph> 是开始日期"
msgctxt ""
"04060111.xhp\n"
"par_id3156290\n"
-"26\n"
"help.text"
msgid "<emph>EndDate</emph> is the second date"
msgstr "<emph>EndDate</emph> 是结束日期"
@@ -25929,7 +24612,6 @@ msgstr "<emph>EndDate</emph> 是结束日期"
msgctxt ""
"04060111.xhp\n"
"par_id3152893\n"
-"27\n"
"help.text"
msgid "<emph>Type</emph> calculates the type of difference. Possible values are 0 (interval) and 1 (in calendar years)."
msgstr "<emph>Type</emph> 计算差数类型。可能的数值为 0(间隔)和 1 (日历年度)。"
@@ -25946,7 +24628,6 @@ msgstr "<bookmark_value>MONTHS 函数</bookmark_value><bookmark_value>两个日
msgctxt ""
"04060111.xhp\n"
"hd_id3152898\n"
-"28\n"
"help.text"
msgid "MONTHS"
msgstr "MONTHS"
@@ -25955,7 +24636,6 @@ msgstr "MONTHS"
msgctxt ""
"04060111.xhp\n"
"par_id3153066\n"
-"29\n"
"help.text"
msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFMONTHS\">Calculates the difference in months between two dates.</ahelp>"
msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFMONTHS\">计算两个日期之间相差的月数。</ahelp>"
@@ -25964,7 +24644,6 @@ msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFMONTHS\">计算两个日期之间相差的
msgctxt ""
"04060111.xhp\n"
"hd_id3151240\n"
-"30\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -25973,7 +24652,6 @@ msgstr "语法"
msgctxt ""
"04060111.xhp\n"
"par_id3146869\n"
-"31\n"
"help.text"
msgid "MONTHS(StartDate; EndDate; Type)"
msgstr "MONTHS(StartDate; EndDate; Type)"
@@ -25982,7 +24660,6 @@ msgstr "MONTHS(StartDate; EndDate; Type)"
msgctxt ""
"04060111.xhp\n"
"par_id3145075\n"
-"32\n"
"help.text"
msgid "<emph>StartDate</emph> is the first date"
msgstr "<emph>StartDate</emph> 是开始日期"
@@ -25991,7 +24668,6 @@ msgstr "<emph>StartDate</emph> 是开始日期"
msgctxt ""
"04060111.xhp\n"
"par_id3157981\n"
-"33\n"
"help.text"
msgid "<emph>EndDate</emph> is the second date"
msgstr "<emph>EndDate</emph> 是结束日期"
@@ -26000,7 +24676,6 @@ msgstr "<emph>EndDate</emph> 是结束日期"
msgctxt ""
"04060111.xhp\n"
"par_id3150111\n"
-"34\n"
"help.text"
msgid "<emph>Type</emph> calculates the type of difference. Possible values include 0 (interval) and 1 (in calendar months)."
msgstr "<emph>Type</emph> 计算差数类型。可能的数值为 0(间隔)和 1(日历月份)。"
@@ -26017,7 +24692,6 @@ msgstr "<bookmark_value>ROT13 函数</bookmark_value><bookmark_value>加密文
msgctxt ""
"04060111.xhp\n"
"hd_id3159094\n"
-"35\n"
"help.text"
msgid "ROT13"
msgstr "ROT13"
@@ -26026,7 +24700,6 @@ msgstr "ROT13"
msgctxt ""
"04060111.xhp\n"
"par_id3146781\n"
-"36\n"
"help.text"
msgid "<ahelp hid=\"HID_DAI_FUNC_ROT13\">Encrypts a character string by moving the characters 13 positions in the alphabet.</ahelp> After the letter Z, the alphabet begins again (Rotation). By applying the encryption function again to the resulting code, you can decrypt the text."
msgstr "<ahelp hid=\"HID_DAI_FUNC_ROT13\">通过将字母按字母表顺序替换成其后第 13 个字母的方法对字符串进行加密。</ahelp>到达字母 Z 之后,按字母表顺序从头开始循环。对产生的加密代码再次使用此加密函数,即可将其解密。"
@@ -26035,7 +24708,6 @@ msgstr "<ahelp hid=\"HID_DAI_FUNC_ROT13\">通过将字母按字母表顺序替
msgctxt ""
"04060111.xhp\n"
"hd_id3150893\n"
-"37\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -26044,7 +24716,6 @@ msgstr "语法"
msgctxt ""
"04060111.xhp\n"
"par_id3159205\n"
-"38\n"
"help.text"
msgid "ROT13(Text)"
msgstr "ROT13(Text)"
@@ -26053,7 +24724,6 @@ msgstr "ROT13(Text)"
msgctxt ""
"04060111.xhp\n"
"par_id3153249\n"
-"39\n"
"help.text"
msgid "<emph>Text</emph> is the character string to be encrypted. ROT13(ROT13(Text)) decrypts the code."
msgstr "<emph>Text</emph> 是被加密的字符串。ROT13(ROT13(Text)) 能够解开密码。"
@@ -26070,7 +24740,6 @@ msgstr "<bookmark_value>DAYSINYEAR 函数</bookmark_value><bookmark_value>天数
msgctxt ""
"04060111.xhp\n"
"hd_id3151300\n"
-"43\n"
"help.text"
msgid "DAYSINYEAR"
msgstr "DAYSINYEAR"
@@ -26079,7 +24748,6 @@ msgstr "DAYSINYEAR"
msgctxt ""
"04060111.xhp\n"
"par_id3143220\n"
-"44\n"
"help.text"
msgid "<ahelp hid=\"HID_DAI_FUNC_DAYSINYEAR\">Calculates the number of days of the year in which the date entered occurs.</ahelp>"
msgstr "<ahelp hid=\"HID_DAI_FUNC_DAYSINYEAR\">计算输入日期所在年份的天数。</ahelp>"
@@ -26088,7 +24756,6 @@ msgstr "<ahelp hid=\"HID_DAI_FUNC_DAYSINYEAR\">计算输入日期所在年份的
msgctxt ""
"04060111.xhp\n"
"hd_id3145358\n"
-"45\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -26097,7 +24764,6 @@ msgstr "语法"
msgctxt ""
"04060111.xhp\n"
"par_id3154651\n"
-"46\n"
"help.text"
msgid "DAYSINYEAR(Date)"
msgstr "DaysInYear(Date)"
@@ -26106,7 +24772,6 @@ msgstr "DaysInYear(Date)"
msgctxt ""
"04060111.xhp\n"
"par_id3153803\n"
-"47\n"
"help.text"
msgid "<emph>Date</emph> is any date in the respective year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
msgstr "<emph>Date</emph> 是相应年份中的任意一天。根据 %PRODUCTNAME 的语言环境设置,Date 参数必须是一个有效日期。"
@@ -26115,7 +24780,6 @@ msgstr "<emph>Date</emph> 是相应年份中的任意一天。根据 %PRODUCTNAM
msgctxt ""
"04060111.xhp\n"
"hd_id3153487\n"
-"48\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -26124,7 +24788,6 @@ msgstr "示例"
msgctxt ""
"04060111.xhp\n"
"par_id3153811\n"
-"49\n"
"help.text"
msgid "=DAYSINYEAR(A1) returns 366 days if A1 contains 1968-02-29, a valid date for the year 1968."
msgstr "如果 A1 包含 1968-02-29,1968 年的一个有效日期,=DAYSINYEAR(A1) 返回 366 天。"
@@ -26141,7 +24804,6 @@ msgstr "<bookmark_value>DAYSINMONTH 函数</bookmark_value><bookmark_value>天
msgctxt ""
"04060111.xhp\n"
"hd_id3154737\n"
-"50\n"
"help.text"
msgid "DAYSINMONTH"
msgstr "DAYSINMONTH"
@@ -26150,7 +24812,6 @@ msgstr "DAYSINMONTH"
msgctxt ""
"04060111.xhp\n"
"par_id3149316\n"
-"51\n"
"help.text"
msgid "<ahelp hid=\"HID_DAI_FUNC_DAYSINMONTH\">Calculates the number of days of the month in which the date entered occurs.</ahelp>"
msgstr "<ahelp hid=\"HID_DAI_FUNC_DAYSINMONTH\">计算输入日期所在月份的天数。</ahelp>"
@@ -26159,7 +24820,6 @@ msgstr "<ahelp hid=\"HID_DAI_FUNC_DAYSINMONTH\">计算输入日期所在月份
msgctxt ""
"04060111.xhp\n"
"hd_id3145114\n"
-"52\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -26168,7 +24828,6 @@ msgstr "语法"
msgctxt ""
"04060111.xhp\n"
"par_id3150955\n"
-"53\n"
"help.text"
msgid "DAYSINMONTH(Date)"
msgstr "DaysInMonth(Date)"
@@ -26177,7 +24836,6 @@ msgstr "DaysInMonth(Date)"
msgctxt ""
"04060111.xhp\n"
"par_id3147501\n"
-"54\n"
"help.text"
msgid "<emph>Date</emph> is any date in the respective month of the desired year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
msgstr "<emph>Date</emph> 是所需年份的相应月份中的任意一天。根据 %PRODUCTNAME 的语言环境设置,Date 参数必须是一个有效日期。"
@@ -26186,7 +24844,6 @@ msgstr "<emph>Date</emph> 是所需年份的相应月份中的任意一天。根
msgctxt ""
"04060111.xhp\n"
"hd_id3149871\n"
-"55\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -26195,7 +24852,6 @@ msgstr "示例"
msgctxt ""
"04060111.xhp\n"
"par_id3155742\n"
-"56\n"
"help.text"
msgid "=DAYSINMONTH(A1) returns 29 days if A1 contains 1968-02-17, a valid date for February 1968."
msgstr "如果 A1 包含 1968-02-17,1968 年 2 月的一个有效日期,=DAYSINMONTH(A1) 返回 29 天。"
@@ -26212,7 +24868,6 @@ msgstr "<bookmark_value>WEEKS 函数</bookmark_value><bookmark_value>周数; 在
msgctxt ""
"04060111.xhp\n"
"hd_id3149048\n"
-"57\n"
"help.text"
msgid "WEEKS"
msgstr "WEEKS"
@@ -26221,7 +24876,6 @@ msgstr "WEEKS"
msgctxt ""
"04060111.xhp\n"
"par_id3153340\n"
-"58\n"
"help.text"
msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFWEEKS\">Calculates the difference in weeks between two dates.</ahelp>"
msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFWEEKS\">计算两个日期之间相差的周数。</ahelp>"
@@ -26230,7 +24884,6 @@ msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFWEEKS\">计算两个日期之间相差的
msgctxt ""
"04060111.xhp\n"
"hd_id3150393\n"
-"59\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -26239,7 +24892,6 @@ msgstr "语法"
msgctxt ""
"04060111.xhp\n"
"par_id3147402\n"
-"60\n"
"help.text"
msgid "WEEKS(StartDate; EndDate; Type)"
msgstr "WEEKS(StartDate; EndDate; Type)"
@@ -26248,7 +24900,6 @@ msgstr "WEEKS(StartDate; EndDate; Type)"
msgctxt ""
"04060111.xhp\n"
"par_id3151387\n"
-"61\n"
"help.text"
msgid "<emph>StartDate</emph> is the first date"
msgstr "<emph>StartDate</emph> 是开始日期"
@@ -26257,7 +24908,6 @@ msgstr "<emph>StartDate</emph> 是开始日期"
msgctxt ""
"04060111.xhp\n"
"par_id3146324\n"
-"62\n"
"help.text"
msgid "<emph>EndDate</emph> is the second date"
msgstr "<emph>EndDate</emph> 是结束日期"
@@ -26266,7 +24916,6 @@ msgstr "<emph>EndDate</emph> 是结束日期"
msgctxt ""
"04060111.xhp\n"
"par_id3166467\n"
-"63\n"
"help.text"
msgid "<emph>Type</emph> calculates the type of difference. The possible values are 0 (interval) and 1 (in numbers of weeks)."
msgstr "<emph>Type</emph> 计算差数的类型。可能的值为 0(间隔)和 1(周数)。"
@@ -26283,7 +24932,6 @@ msgstr "<bookmark_value>WEEKSINYEAR 函数</bookmark_value><bookmark_value>周
msgctxt ""
"04060111.xhp\n"
"hd_id3145237\n"
-"64\n"
"help.text"
msgid "WEEKSINYEAR"
msgstr "WEEKSINYEAR"
@@ -26292,7 +24940,6 @@ msgstr "WEEKSINYEAR"
msgctxt ""
"04060111.xhp\n"
"par_id3147410\n"
-"65\n"
"help.text"
msgid "<ahelp hid=\"HID_DAI_FUNC_WEEKSINYEAR\">Calculates the number of weeks of the year in which the date entered occurs.</ahelp> The number of weeks is defined as follows: a week that spans two years is added to the year in which most days of that week occur."
msgstr "<ahelp hid=\"HID_DAI_FUNC_WEEKSINYEAR\">计算输入日期所在年份的周数。</ahelp>周数是按如下方式定义的:如果一周跨越两年,则这一周在哪一年的天数较多,就将其计入哪一年。"
@@ -26301,7 +24948,6 @@ msgstr "<ahelp hid=\"HID_DAI_FUNC_WEEKSINYEAR\">计算输入日期所在年份
msgctxt ""
"04060111.xhp\n"
"hd_id3149719\n"
-"66\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -26310,7 +24956,6 @@ msgstr "语法"
msgctxt ""
"04060111.xhp\n"
"par_id3145638\n"
-"67\n"
"help.text"
msgid "WEEKSINYEAR(Date)"
msgstr "WeeksInYear(Date)"
@@ -26319,7 +24964,6 @@ msgstr "WeeksInYear(Date)"
msgctxt ""
"04060111.xhp\n"
"par_id3149946\n"
-"68\n"
"help.text"
msgid "<emph>Date</emph> is any date in the respective year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
msgstr "<emph>Date</emph> 是相应年份中的任意一天。根据 %PRODUCTNAME 的语言环境设置,Date 参数必须是一个有效日期。"
@@ -26328,7 +24972,6 @@ msgstr "<emph>Date</emph> 是相应年份中的任意一天。根据 %PRODUCTNAM
msgctxt ""
"04060111.xhp\n"
"hd_id3150037\n"
-"69\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -26337,7 +24980,6 @@ msgstr "示例"
msgctxt ""
"04060111.xhp\n"
"par_id3147614\n"
-"70\n"
"help.text"
msgid "WEEKSINYEAR(A1) returns 53 if A1 contains 1970-02-17, a valid date for the year 1970."
msgstr "如果 A1 包含 1970-02-17,1970 年的一个有效日期,WEEKSINYEAR(A1) 返回 53。"
@@ -26346,7 +24988,6 @@ msgstr "如果 A1 包含 1970-02-17,1970 年的一个有效日期,WEEKSINYEA
msgctxt ""
"04060111.xhp\n"
"hd_id3157901\n"
-"72\n"
"help.text"
msgid "Add-ins through %PRODUCTNAME API"
msgstr "使用 %PRODUCTNAME API 加载宏"
@@ -26355,7 +24996,6 @@ msgstr "使用 %PRODUCTNAME API 加载宏"
msgctxt ""
"04060111.xhp\n"
"par_id3149351\n"
-"73\n"
"help.text"
msgid "Add-ins can also be implemented through the %PRODUCTNAME <link href=\"http://api.libreoffice.org/\">API</link>."
msgstr "加载宏还可通过 %PRODUCTNAME <link href=\"http://api.libreoffice.org/\">API</link> 来实现。"
@@ -26380,7 +25020,6 @@ msgstr "<bookmark_value>编程; 加载宏</bookmark_value><bookmark_value>共享
msgctxt ""
"04060112.xhp\n"
"hd_id3151076\n"
-"1\n"
"help.text"
msgid "Add-in for Programming in $[officename] Calc"
msgstr "$[officename] Calc 中用于编程的加载宏"
@@ -26389,7 +25028,6 @@ msgstr "$[officename] Calc 中用于编程的加载宏"
msgctxt ""
"04060112.xhp\n"
"par_id3147001\n"
-"220\n"
"help.text"
msgid "The method of extending Calc by Add-Ins that is described in the following is outdated. The interfaces are still valid and supported, to ensure compatibility with existing Add-Ins, but for programming new Add-Ins you should use the new <link href=\"text/shared/guide/integratinguno.xhp\" name=\"API functions\">API functions</link>."
msgstr "下面所述的通过插件扩展 Calc 的方法已过时。但界面仍然有效并且受支持,以确保与现有插件兼容,但如果要编写新插件代码,应使用新的<link href=\"text/shared/guide/integratinguno.xhp\" name=\"API 函数\">API 函数</link>。"
@@ -26398,7 +25036,6 @@ msgstr "下面所述的通过插件扩展 Calc 的方法已过时。但界面仍
msgctxt ""
"04060112.xhp\n"
"par_id3150361\n"
-"2\n"
"help.text"
msgid "$[officename] Calc can be expanded by Add-Ins, which are external programming modules providing additional functions for working with spreadsheets. These are listed in the <emph>Function Wizard</emph> in the <emph>Add-In</emph> category. If you would like to program an Add-In yourself, you can learn here which functions must be exported by the <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library </caseinline><defaultinline>external DLL</defaultinline></switchinline> so that the Add-In can be successfully attached."
msgstr "$[officename] Calc 可以使用加载宏进行扩展。加载宏是一个外部编程模块,它可以提供一些对工作表进行处理的附加函数。这些函数列在<emph>插件</emph>类别的<emph>函数向导</emph>中。如果要自己编写插件程序,请了解其中哪些函数必须由<switchinline select=\"sys\"><caseinline select=\"UNIX\">共享库</caseinline><defaultinline>外部 DLL </defaultinline></switchinline>输出,以便成功地附加加载宏。"
@@ -26407,7 +25044,6 @@ msgstr "$[officename] Calc 可以使用加载宏进行扩展。加载宏是一
msgctxt ""
"04060112.xhp\n"
"par_id3149211\n"
-"3\n"
"help.text"
msgid "$[officename] searches the Add-in folder defined in the configuration for a suitable <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library </caseinline><defaultinline>DLL</defaultinline></switchinline>. To be recognized by $[officename], the <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library </caseinline><defaultinline>DLL</defaultinline></switchinline> must have certain properties, as explained in the following. This information allows you to program your own Add-In for <emph>Function Wizard</emph> of $[officename] Calc."
msgstr "$[officename] 为定义在配置中的附加文件夹查找合适的<switchinline select=\"sys\"><caseinline select=\"UNIX\">共享库</caseinline><defaultinline>DLL</defaultinline></switchinline>。要使<switchinline select=\"sys\"><caseinline select=\"UNIX\">共享库</caseinline><defaultinline>DLL</defaultinline></switchinline>能被 $[officename] 识别,它必须具有下述的某些属性。可使用这些信息为 $[officename] Calc 的<emph>函数向导</emph>编写自己的附加程序。"
@@ -26416,7 +25052,6 @@ msgstr "$[officename] 为定义在配置中的附加文件夹查找合适的<swi
msgctxt ""
"04060112.xhp\n"
"hd_id3146981\n"
-"4\n"
"help.text"
msgid "The Add-In Concept"
msgstr "加载宏概念"
@@ -26425,7 +25060,6 @@ msgstr "加载宏概念"
msgctxt ""
"04060112.xhp\n"
"par_id3156292\n"
-"5\n"
"help.text"
msgid "Each Add-In library provides several functions. Some functions are used for administrative purposes. You can choose almost any name for your own functions. However, they must also follow certain rules regarding parameter passing. The exact naming and calling conventions vary for different platforms."
msgstr "每个加载宏库中都提供了多个函数。有些函数用于管理目的。您可以任意选择自己的函数名称。但必须符合参数传递的相关规则。不同的平台采用的命名规则或调用规则各不相同。"
@@ -26434,7 +25068,6 @@ msgstr "每个加载宏库中都提供了多个函数。有些函数用于管理
msgctxt ""
"04060112.xhp\n"
"hd_id3152890\n"
-"6\n"
"help.text"
msgid "Functions of <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>AddIn DLL</defaultinline></switchinline>"
msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">共享库</caseinline><defaultinline>加载宏 DLL</defaultinline></switchinline> 的函数"
@@ -26443,7 +25076,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">共享库</case
msgctxt ""
"04060112.xhp\n"
"par_id3148837\n"
-"7\n"
"help.text"
msgid "At a minimum, the administrative functions <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionCount\">GetFunctionCount</link> and <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> must exist. Using these, the functions as well as parameter types and return values can be determined. As return values, the Double and String types are supported. As parameters, additionally the cell areas <link href=\"text/scalc/01/04060112.xhp\" name=\"Double Array\">Double Array</link>, <link href=\"text/scalc/01/04060112.xhp\" name=\"String Array\">String Array</link>, and <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell Array\">Cell Array</link> are supported."
msgstr "至少必须存在管理函数 <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionCount\">GetFunctionCount</link> 和 <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link>。使用这些函数,可以确定函数以及参数类型和返回值。对于返回值,支持双精度和字符串类型。对于参数,也支持其他的单元格区域<link href=\"text/scalc/01/04060112.xhp\" name=\"双精度数组\">双精度数组</link>、<link href=\"text/scalc/01/04060112.xhp\" name=\"字符串数组\">字符串数组</link>和<link href=\"text/scalc/01/04060112.xhp\" name=\"单元格数组\">单元格数组</link>。"
@@ -26452,7 +25084,6 @@ msgstr "至少必须存在管理函数 <link href=\"text/scalc/01/04060112.xhp\"
msgctxt ""
"04060112.xhp\n"
"par_id3148604\n"
-"8\n"
"help.text"
msgid "Parameters are passed using references. Therefore, a change of these values is basically possible. However, this is not supported in $[officename] Calc because it does not make sense within spreadsheets."
msgstr "参数通过引用传递。这样基本上就可以更改一个值。然而 $[officename] Calc 却不支持这一点,因为这在一个工作表内部是没有意义的。"
@@ -26461,7 +25092,6 @@ msgstr "参数通过引用传递。这样基本上就可以更改一个值。然
msgctxt ""
"04060112.xhp\n"
"par_id3150112\n"
-"9\n"
"help.text"
msgid "Libraries can be reloaded during runtime and their contents can be analyzed by the administrative functions. For each function, information is available about count and type of parameters, internal and external function names and an administrative number."
msgstr "程序库可以在运行时重新装入,并通过管理函数分析其内容。对每个函数来说,都含有关于参数的数目和类型、内部和外部函数名称以及管理编号的信息。"
@@ -26470,7 +25100,6 @@ msgstr "程序库可以在运行时重新装入,并通过管理函数分析其
msgctxt ""
"04060112.xhp\n"
"par_id3155269\n"
-"10\n"
"help.text"
msgid "The functions are called synchronously and return their results immediately. Real time functions (asynchronous functions) are also possible; however, they are not explained in detail because of their complexity."
msgstr "函数被同步调出并立即返回结果。虽然还有实时函数(异步函数),但是由于它们的复杂性,在此不再作进一步的说明。"
@@ -26479,7 +25108,6 @@ msgstr "函数被同步调出并立即返回结果。虽然还有实时函数(
msgctxt ""
"04060112.xhp\n"
"hd_id3145077\n"
-"11\n"
"help.text"
msgid "General information about the interface"
msgstr "有关界面的一般信息"
@@ -26488,7 +25116,6 @@ msgstr "有关界面的一般信息"
msgctxt ""
"04060112.xhp\n"
"par_id3146776\n"
-"12\n"
"help.text"
msgid "The maximum number of parameters in an Add-In function attached to $[officename] Calc is 16: one return value and a maximum of 15 function input parameters."
msgstr "附加在 $[officename] Calc 中的加载宏函数的参数数量最多为 16:包括一个返回值和最多 15 个输入的函数参数。"
@@ -26497,7 +25124,6 @@ msgstr "附加在 $[officename] Calc 中的加载宏函数的参数数量最多
msgctxt ""
"04060112.xhp\n"
"par_id3149899\n"
-"13\n"
"help.text"
msgid "The data types are defined as follows:"
msgstr "数据类型按如下方法定义:"
@@ -26506,7 +25132,6 @@ msgstr "数据类型按如下方法定义:"
msgctxt ""
"04060112.xhp\n"
"par_id3151302\n"
-"14\n"
"help.text"
msgid "<emph>Data types</emph>"
msgstr "<emph>数据类型</emph>"
@@ -26515,7 +25140,6 @@ msgstr "<emph>数据类型</emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3143222\n"
-"15\n"
"help.text"
msgid "<emph>Definition</emph>"
msgstr "<emph>定义</emph>"
@@ -26524,7 +25148,6 @@ msgstr "<emph>定义</emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3149384\n"
-"16\n"
"help.text"
msgid "CALLTYPE"
msgstr "CALLTYPE"
@@ -26533,7 +25156,6 @@ msgstr "CALLTYPE"
msgctxt ""
"04060112.xhp\n"
"par_id3146963\n"
-"17\n"
"help.text"
msgid "Under Windows: FAR PASCAL (_far _pascal)"
msgstr "在 Windows 系统下:FAR PASCAL (_far _pascal)"
@@ -26542,7 +25164,6 @@ msgstr "在 Windows 系统下:FAR PASCAL (_far _pascal)"
msgctxt ""
"04060112.xhp\n"
"par_id3153809\n"
-"18\n"
"help.text"
msgid "Other: default (operating system specific default)"
msgstr "其他:默认(操作系统指定默认)"
@@ -26551,7 +25172,6 @@ msgstr "其他:默认(操作系统指定默认)"
msgctxt ""
"04060112.xhp\n"
"par_id3154734\n"
-"19\n"
"help.text"
msgid "USHORT"
msgstr "USHORT"
@@ -26560,7 +25180,6 @@ msgstr "USHORT"
msgctxt ""
"04060112.xhp\n"
"par_id3155760\n"
-"20\n"
"help.text"
msgid "2 Byte unsigned Integer"
msgstr "2 字节无符号整数"
@@ -26569,7 +25188,6 @@ msgstr "2 字节无符号整数"
msgctxt ""
"04060112.xhp\n"
"par_id3145320\n"
-"21\n"
"help.text"
msgid "DOUBLE"
msgstr "双精度"
@@ -26578,7 +25196,6 @@ msgstr "双精度"
msgctxt ""
"04060112.xhp\n"
"par_id3150956\n"
-"22\n"
"help.text"
msgid "8 byte platform-dependent format"
msgstr "8 字节平台附属格式"
@@ -26587,7 +25204,6 @@ msgstr "8 字节平台附属格式"
msgctxt ""
"04060112.xhp\n"
"par_id3146097\n"
-"23\n"
"help.text"
msgid "Paramtype"
msgstr "参数类型"
@@ -26596,7 +25212,6 @@ msgstr "参数类型"
msgctxt ""
"04060112.xhp\n"
"par_id3150432\n"
-"24\n"
"help.text"
msgid "Platform-dependent like int"
msgstr "特定于平台,比如 int"
@@ -26605,7 +25220,6 @@ msgstr "特定于平台,比如 int"
msgctxt ""
"04060112.xhp\n"
"par_id3153955\n"
-"25\n"
"help.text"
msgid "PTR_DOUBLE =0 pointer to a double"
msgstr "PTR_DOUBLE =0 指针指向一个双精度"
@@ -26614,7 +25228,6 @@ msgstr "PTR_DOUBLE =0 指针指向一个双精度"
msgctxt ""
"04060112.xhp\n"
"par_id3159262\n"
-"26\n"
"help.text"
msgid "PTR_STRING =1 pointer to a zero-terminated string"
msgstr "PTR_STRING =1 指针指向一个以 0 结束的符号串"
@@ -26623,7 +25236,6 @@ msgstr "PTR_STRING =1 指针指向一个以 0 结束的符号串"
msgctxt ""
"04060112.xhp\n"
"par_id3148747\n"
-"27\n"
"help.text"
msgid "PTR_DOUBLE_ARR =2 pointer to a double array"
msgstr "PTR_DOUBLE_ARR =2 指针指向一个 Double Array"
@@ -26632,7 +25244,6 @@ msgstr "PTR_DOUBLE_ARR =2 指针指向一个 Double Array"
msgctxt ""
"04060112.xhp\n"
"par_id3147406\n"
-"28\n"
"help.text"
msgid "PTR_STRING_ARR =3 pointer to a string array"
msgstr "PTR_STRING_ARR =3 指向一个 String Array"
@@ -26641,7 +25252,6 @@ msgstr "PTR_STRING_ARR =3 指向一个 String Array"
msgctxt ""
"04060112.xhp\n"
"par_id3151392\n"
-"29\n"
"help.text"
msgid "PTR_CELL_ARR =4 pointer to a cell array"
msgstr "PTR_CELL_ARR =4 指针指向一个单元格数组"
@@ -26650,7 +25260,6 @@ msgstr "PTR_CELL_ARR =4 指针指向一个单元格数组"
msgctxt ""
"04060112.xhp\n"
"par_id3153028\n"
-"30\n"
"help.text"
msgid "NONE =5"
msgstr "NONE =5"
@@ -26659,7 +25268,6 @@ msgstr "NONE =5"
msgctxt ""
"04060112.xhp\n"
"hd_id3156396\n"
-"31\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline> functions"
msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">共享库 </caseinline><defaultinline>DLL</defaultinline></switchinline> 函数"
@@ -26668,7 +25276,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">共享库 </cas
msgctxt ""
"04060112.xhp\n"
"par_id3153019\n"
-"32\n"
"help.text"
msgid "Following you will find a description of those functions, which are called at the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>external DLL</defaultinline></switchinline>."
msgstr "下面是一个<switchinline select=\"sys\"><caseinline select=\"UNIX\">共享库</caseinline><defaultinline>外部 DLL</defaultinline></switchinline> 调用的函数的说明。"
@@ -26677,7 +25284,6 @@ msgstr "下面是一个<switchinline select=\"sys\"><caseinline select=\"UNIX\">
msgctxt ""
"04060112.xhp\n"
"par_id3150038\n"
-"33\n"
"help.text"
msgid "For all <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline> functions, the following applies:"
msgstr "对于所有<switchinline select=\"sys\"><caseinline select=\"UNIX\">共享库</caseinline><defaultinline> DLL </defaultinline></switchinline>函数,应用如下:"
@@ -26686,7 +25292,6 @@ msgstr "对于所有<switchinline select=\"sys\"><caseinline select=\"UNIX\">共
msgctxt ""
"04060112.xhp\n"
"par_id3157876\n"
-"34\n"
"help.text"
msgid "void CALLTYPE fn(out, in1, in2, ...)"
msgstr "void CALLTYPE fn(out, in1, in2, ...)"
@@ -26695,7 +25300,6 @@ msgstr "void CALLTYPE fn(out, in1, in2, ...)"
msgctxt ""
"04060112.xhp\n"
"par_id3147616\n"
-"35\n"
"help.text"
msgid "Output: Resulting value"
msgstr "Output: 结果值"
@@ -26704,7 +25308,6 @@ msgstr "Output: 结果值"
msgctxt ""
"04060112.xhp\n"
"par_id3159119\n"
-"36\n"
"help.text"
msgid "Input: Any number of types (double&, char*, double*, char**, Cell area), where the <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell area\">Cell area</link> is an array of types double array, string array, or cell array."
msgstr "输入:double&、char*、double*、char**、单元格区域类型的任意数值,其中,<link href=\"text/scalc/01/04060112.xhp\" name=\"单元格区域\">单元格区域</link>可以是 double、string 或单元格类型的数组。"
@@ -26713,7 +25316,6 @@ msgstr "输入:double&、char*、double*、char**、单元格区域类型的
msgctxt ""
"04060112.xhp\n"
"hd_id3150653\n"
-"37\n"
"help.text"
msgid "GetFunctionCount()"
msgstr "GetFunctionCount()"
@@ -26722,7 +25324,6 @@ msgstr "GetFunctionCount()"
msgctxt ""
"04060112.xhp\n"
"par_id3152981\n"
-"38\n"
"help.text"
msgid "Returns the number of functions without the management functions of the reference parameter. Each function has a unique number between 0 and nCount-1. This number will be needed for the <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> and <link href=\"text/scalc/01/04060112.xhp\" name=\"GetParameterDescription\">GetParameterDescription</link> functions later."
msgstr "返回不带有引用参数的管理函数的函数编号。每一个函数有一个 0 到 nCount-1 之间的明确编号。这个编号以后对函数<link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link>和<link href=\"text/scalc/01/04060112.xhp\" name=\"GetParameterDescription\">GetParameterDescription</link>是必需的。"
@@ -26731,7 +25332,6 @@ msgstr "返回不带有引用参数的管理函数的函数编号。每一个函
msgctxt ""
"04060112.xhp\n"
"par_id3150742\n"
-"39\n"
"help.text"
msgid "<emph>Syntax</emph>"
msgstr "<emph>语法</emph>"
@@ -26740,7 +25340,6 @@ msgstr "<emph>语法</emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3148728\n"
-"40\n"
"help.text"
msgid "void CALLTYPE GetFunctionCount(USHORT& nCount)"
msgstr "void CALLTYPE GetFunctionCount(USHORT& nCount)"
@@ -26749,7 +25348,6 @@ msgstr "void CALLTYPE GetFunctionCount(USHORT& nCount)"
msgctxt ""
"04060112.xhp\n"
"par_id3154677\n"
-"41\n"
"help.text"
msgid "<emph>Parameter</emph>"
msgstr "<emph>参数</emph>"
@@ -26758,7 +25356,6 @@ msgstr "<emph>参数</emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3146940\n"
-"42\n"
"help.text"
msgid "USHORT &nCount:"
msgstr "USHORT &nCount:"
@@ -26767,7 +25364,6 @@ msgstr "USHORT &nCount:"
msgctxt ""
"04060112.xhp\n"
"par_id3149893\n"
-"43\n"
"help.text"
msgid "Output: Reference to a variable, which is supposed to contain the number of Add-In functions. For example: If the Add-In provides 5 functions for $[officename] Calc, then nCount=5."
msgstr "Output: 应当包含加载宏函数数目变量的引用。例如加载宏有 5 个函数供 $[officename] Calc 使用,那么 nCount=5。"
@@ -26776,7 +25372,6 @@ msgstr "Output: 应当包含加载宏函数数目变量的引用。例如加载
msgctxt ""
"04060112.xhp\n"
"hd_id3147476\n"
-"44\n"
"help.text"
msgid "GetFunctionData()"
msgstr "GetFunctionData()"
@@ -26785,7 +25380,6 @@ msgstr "GetFunctionData()"
msgctxt ""
"04060112.xhp\n"
"par_id3154841\n"
-"45\n"
"help.text"
msgid "Determines all the important information about an Add-In function."
msgstr "确定某个加载宏函数的所有重要信息。"
@@ -26794,7 +25388,6 @@ msgstr "确定某个加载宏函数的所有重要信息。"
msgctxt ""
"04060112.xhp\n"
"par_id3148888\n"
-"46\n"
"help.text"
msgid "<emph>Syntax</emph>"
msgstr "<emph>语法</emph>"
@@ -26803,7 +25396,6 @@ msgstr "<emph>语法</emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3148434\n"
-"47\n"
"help.text"
msgid "void CALLTYPE GetFunctionData(USHORT& nNo, char* pFuncName, USHORT& nParamCount, Paramtype* peType, char* pInternalName)"
msgstr "void CALLTYPE GetFunctionData(USHORT& nNo, char* pFuncName, USHORT& nParamCount, Paramtype* peType, char* pInternalName)"
@@ -26812,7 +25404,6 @@ msgstr "void CALLTYPE GetFunctionData(USHORT& nNo, char* pFuncName, USHORT& nPar
msgctxt ""
"04060112.xhp\n"
"par_id3149253\n"
-"48\n"
"help.text"
msgid "<emph>Parameter</emph>"
msgstr "<emph>参数</emph>"
@@ -26821,7 +25412,6 @@ msgstr "<emph>参数</emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3149686\n"
-"49\n"
"help.text"
msgid "USHORT& nNo:"
msgstr "USHORT& nNo:"
@@ -26830,7 +25420,6 @@ msgstr "USHORT& nNo:"
msgctxt ""
"04060112.xhp\n"
"par_id3149949\n"
-"50\n"
"help.text"
msgid "Input: Function number between 0 and nCount-1, inclusively."
msgstr "Input: 函数编号包括在 0 到 nCount-1 之间。"
@@ -26839,7 +25428,6 @@ msgstr "Input: 函数编号包括在 0 到 nCount-1 之间。"
msgctxt ""
"04060112.xhp\n"
"par_id3149546\n"
-"51\n"
"help.text"
msgid "char* pFuncName:"
msgstr "char* pFuncName:"
@@ -26848,7 +25436,6 @@ msgstr "char* pFuncName:"
msgctxt ""
"04060112.xhp\n"
"par_id3148579\n"
-"52\n"
"help.text"
msgid "Output: Function name as seen by the programmer, as it is named in the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline>. This name does not determine the name used in the <emph>Function Wizard</emph>."
msgstr "输出:程序员看到的函数名称,也就是<switchinline select=\"sys\"><caseinline select=\"UNIX\">共享库</caseinline><defaultinline> DLL </defaultinline></switchinline>中指定的名称。此名称不确定在<emph>函数向导</emph>中使用的名称。"
@@ -26857,7 +25444,6 @@ msgstr "输出:程序员看到的函数名称,也就是<switchinline select=
msgctxt ""
"04060112.xhp\n"
"par_id3153935\n"
-"53\n"
"help.text"
msgid "USHORT& nParamCount:"
msgstr "USHORT& nParamCount:"
@@ -26866,7 +25452,6 @@ msgstr "USHORT& nParamCount:"
msgctxt ""
"04060112.xhp\n"
"par_id3150142\n"
-"54\n"
"help.text"
msgid "Output: Number of parameters in AddIn function. This number must be greater than 0, because there is always a result value; the maximum value is 16."
msgstr "Output: Add In 函数的参数数目。这个数目必须大于 0,因为始终有一个结果值,最大值为 16。"
@@ -26875,7 +25460,6 @@ msgstr "Output: Add In 函数的参数数目。这个数目必须大于 0,因
msgctxt ""
"04060112.xhp\n"
"par_id3145143\n"
-"55\n"
"help.text"
msgid "Paramtype* peType:"
msgstr "Paramtype* peType:"
@@ -26884,7 +25468,6 @@ msgstr "Paramtype* peType:"
msgctxt ""
"04060112.xhp\n"
"par_id3148750\n"
-"56\n"
"help.text"
msgid "Output: Pointer to an array of exactly 16 variables of type Paramtype. The first nParamCount entries are filled with the suitable type of parameter."
msgstr "Output: 指针指向一个带有 16 个参数类型变量的数组。第一个 nParamCount 条目填入相关的参数类型。"
@@ -26893,7 +25476,6 @@ msgstr "Output: 指针指向一个带有 16 个参数类型变量的数组。第
msgctxt ""
"04060112.xhp\n"
"par_id3153078\n"
-"57\n"
"help.text"
msgid "char* pInternalName:"
msgstr "char* pInternalName:"
@@ -26902,7 +25484,6 @@ msgstr "char* pInternalName:"
msgctxt ""
"04060112.xhp\n"
"par_id3155261\n"
-"58\n"
"help.text"
msgid "Output: Function name as seen by the user, as it appears in the <emph>Function Wizard</emph>. May contain umlauts."
msgstr "输出:用户看到的函数名称,也就是<emph>函数向导</emph>中显示的名称。可以含有变音字符。"
@@ -26911,7 +25492,6 @@ msgstr "输出:用户看到的函数名称,也就是<emph>函数向导</emph
msgctxt ""
"04060112.xhp\n"
"par_id3153327\n"
-"59\n"
"help.text"
msgid "The pFuncName and pInternalName parameters are char arrays, which are implemented with size 256 in $[officename] Calc."
msgstr "参数 pFuncName 和 pInternalName 是字符数组,在 $[officename] Calc 中最多为 256 个。"
@@ -26920,7 +25500,6 @@ msgstr "参数 pFuncName 和 pInternalName 是字符数组,在 $[officename] C
msgctxt ""
"04060112.xhp\n"
"hd_id3148567\n"
-"60\n"
"help.text"
msgid "GetParameterDescription()"
msgstr "GetParameterDescription()"
@@ -26929,7 +25508,6 @@ msgstr "GetParameterDescription()"
msgctxt ""
"04060112.xhp\n"
"par_id3153000\n"
-"61\n"
"help.text"
msgid "Provides a brief description of the Add-In function and its parameters. As an option, this function can be used to show a function and parameter description in the <emph>Function Wizard</emph>."
msgstr "提供加载宏函数及其参数的简短说明。此函数可用于在<emph>函数向导</emph>中显示某个函数及其参数说明。"
@@ -26938,7 +25516,6 @@ msgstr "提供加载宏函数及其参数的简短说明。此函数可用于在
msgctxt ""
"04060112.xhp\n"
"par_id3154501\n"
-"62\n"
"help.text"
msgid "<emph>Syntax</emph>"
msgstr "<emph>语法</emph>"
@@ -26947,7 +25524,6 @@ msgstr "<emph>语法</emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3153564\n"
-"63\n"
"help.text"
msgid "void CALLTYPE GetParameterDescription(USHORT& nNo, USHORT& nParam, char* pName, char* pDesc)"
msgstr "void CALLTYPE GetParameterDescription(USHORT& nNo, USHORT& nParam, char* pName, char* pDesc)"
@@ -26956,7 +25532,6 @@ msgstr "void CALLTYPE GetParameterDescription(USHORT& nNo, USHORT& nParam, char*
msgctxt ""
"04060112.xhp\n"
"par_id3157995\n"
-"64\n"
"help.text"
msgid "<emph>Parameter</emph>"
msgstr "<emph>参数</emph>"
@@ -26965,7 +25540,6 @@ msgstr "<emph>参数</emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3155925\n"
-"65\n"
"help.text"
msgid "USHORT& nNo:"
msgstr "USHORT& nNo:"
@@ -26974,7 +25548,6 @@ msgstr "USHORT& nNo:"
msgctxt ""
"04060112.xhp\n"
"par_id3149883\n"
-"66\n"
"help.text"
msgid "Input: Number of the function in the library; between 0 and nCount-1."
msgstr "Input: 程序库内部的函数号,在 0 到 nCount-1 之间。"
@@ -26983,7 +25556,6 @@ msgstr "Input: 程序库内部的函数号,在 0 到 nCount-1 之间。"
msgctxt ""
"04060112.xhp\n"
"par_id3154326\n"
-"67\n"
"help.text"
msgid "USHORT& nParam:"
msgstr "USHORT& nParam:"
@@ -26992,7 +25564,6 @@ msgstr "USHORT& nParam:"
msgctxt ""
"04060112.xhp\n"
"par_id3159139\n"
-"68\n"
"help.text"
msgid "Input: Indicates, for which parameter the description is provided; parameters start at 1. If nParam is 0, the description itself is supposed to be provided in pDesc; in this case, pName does not have any meaning."
msgstr "Input: 指定该说明应提供哪些参数,参数从 1 开始。如果 nParam 为 0,则该说明自身要在 pDesc 中提供,此情况下 pName 无意义。"
@@ -27001,7 +25572,6 @@ msgstr "Input: 指定该说明应提供哪些参数,参数从 1 开始。如
msgctxt ""
"04060112.xhp\n"
"par_id3147374\n"
-"69\n"
"help.text"
msgid "char* pName:"
msgstr "char* pName:"
@@ -27010,7 +25580,6 @@ msgstr "char* pName:"
msgctxt ""
"04060112.xhp\n"
"par_id3145245\n"
-"70\n"
"help.text"
msgid "Output: Takes up the parameter name or type, for example, the word \"Number\" or \"String\" or \"Date\", and so on. Implemented in $[officename] Calc as char[256]."
msgstr "Output: 接受参数的名称或类型,例如单词“数字”、“字串”或“日期”之类,在 $[officename] Calc 中当作256个字符。"
@@ -27019,7 +25588,6 @@ msgstr "Output: 接受参数的名称或类型,例如单词“数字”、“
msgctxt ""
"04060112.xhp\n"
"par_id3151020\n"
-"71\n"
"help.text"
msgid "char* pDesc:"
msgstr "char* pDesc:"
@@ -27028,7 +25596,6 @@ msgstr "char* pDesc:"
msgctxt ""
"04060112.xhp\n"
"par_id3148389\n"
-"72\n"
"help.text"
msgid "Output: Takes up the description of the parameter, for example, \"Value, at which the universe is to be calculated.\" Implemented in $[officename] Calc as char[256]."
msgstr "Output: 接受对参数的说明,例如\"应用于通用计算的数值\"。在 $[officename] Calc 中可用256个字符。"
@@ -27037,7 +25604,6 @@ msgstr "Output: 接受对参数的说明,例如\"应用于通用计算的数
msgctxt ""
"04060112.xhp\n"
"par_id3145303\n"
-"73\n"
"help.text"
msgid "pName and pDesc are char arrays; implemented in $[officename] Calc with size 256. Please note that the space available in the <emph>Function Wizard</emph> is limited and that the 256 characters cannot be fully used."
msgstr "pName 和 pDesc 都是 char 数组;在 $[officename] Calc 中执行,大小为 256。请注意:<emph>函数向导</emph>中的可用空间有限,256 个字符不能全部用完。"
@@ -27046,7 +25612,6 @@ msgstr "pName 和 pDesc 都是 char 数组;在 $[officename] Calc 中执行,
msgctxt ""
"04060112.xhp\n"
"hd_id3148874\n"
-"76\n"
"help.text"
msgid "Cell areas"
msgstr "单元格区域"
@@ -27055,7 +25620,6 @@ msgstr "单元格区域"
msgctxt ""
"04060112.xhp\n"
"par_id3150265\n"
-"77\n"
"help.text"
msgid "The following tables contain information about which data structures must be provided by an external program module in order to pass cell areas. $[officename] Calc distinguishes between three different arrays, depending on the data type."
msgstr "下面的工作表说明了一个外部程序模块必须供哪些数据结构使用,以便传递单元格。$[officename] Calc 根据数据类型区分 3 个不同的数组。"
@@ -27064,7 +25628,6 @@ msgstr "下面的工作表说明了一个外部程序模块必须供哪些数据
msgctxt ""
"04060112.xhp\n"
"hd_id3156060\n"
-"78\n"
"help.text"
msgid "Double Array"
msgstr "Double Array"
@@ -27073,7 +25636,6 @@ msgstr "Double Array"
msgctxt ""
"04060112.xhp\n"
"par_id3149540\n"
-"79\n"
"help.text"
msgid "As a parameter, a cell area with values of the Number/Double type can be passed. A double array in $[officename] Calc is defined as follows:"
msgstr "您可将带数字/双字节类型数值的单元格区域作为参数来传递。Double Array(双精度数组)在 $[officename] Calc 中用下列方法定义:"
@@ -27082,7 +25644,6 @@ msgstr "您可将带数字/双字节类型数值的单元格区域作为参数
msgctxt ""
"04060112.xhp\n"
"par_id3149388\n"
-"80\n"
"help.text"
msgid "<emph>Offset</emph>"
msgstr "<emph>Offset</emph>"
@@ -27091,7 +25652,6 @@ msgstr "<emph>Offset</emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3154636\n"
-"81\n"
"help.text"
msgid "<emph>Name</emph>"
msgstr "<emph>名称</emph>"
@@ -27100,7 +25660,6 @@ msgstr "<emph>名称</emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3153228\n"
-"82\n"
"help.text"
msgid "<emph>Description</emph>"
msgstr "<emph>说明</emph>"
@@ -27109,7 +25668,6 @@ msgstr "<emph>说明</emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3150685\n"
-"83\n"
"help.text"
msgid "0"
msgstr "0"
@@ -27118,7 +25676,6 @@ msgstr "0"
msgctxt ""
"04060112.xhp\n"
"par_id3154869\n"
-"84\n"
"help.text"
msgid "Col1"
msgstr "Col1"
@@ -27127,7 +25684,6 @@ msgstr "Col1"
msgctxt ""
"04060112.xhp\n"
"par_id3147541\n"
-"85\n"
"help.text"
msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
msgstr "单元格区域左上角的列号。计数从 0 开始。"
@@ -27136,7 +25692,6 @@ msgstr "单元格区域左上角的列号。计数从 0 开始。"
msgctxt ""
"04060112.xhp\n"
"par_id3149783\n"
-"86\n"
"help.text"
msgid "2"
msgstr "2"
@@ -27145,7 +25700,6 @@ msgstr "2"
msgctxt ""
"04060112.xhp\n"
"par_id3155986\n"
-"87\n"
"help.text"
msgid "Row1"
msgstr "Row1"
@@ -27154,7 +25708,6 @@ msgstr "Row1"
msgctxt ""
"04060112.xhp\n"
"par_id3147483\n"
-"88\n"
"help.text"
msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
msgstr "单元格区域左上角的行号,从 0 开始计数。"
@@ -27163,7 +25716,6 @@ msgstr "单元格区域左上角的行号,从 0 开始计数。"
msgctxt ""
"04060112.xhp\n"
"par_id3153721\n"
-"89\n"
"help.text"
msgid "4"
msgstr "4"
@@ -27172,7 +25724,6 @@ msgstr "4"
msgctxt ""
"04060112.xhp\n"
"par_id3154317\n"
-"90\n"
"help.text"
msgid "Tab1"
msgstr "Tab1"
@@ -27181,7 +25732,6 @@ msgstr "Tab1"
msgctxt ""
"04060112.xhp\n"
"par_id3149820\n"
-"91\n"
"help.text"
msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
msgstr "单元格区域左上角的表格号,从 0 开始计数。"
@@ -27190,7 +25740,6 @@ msgstr "单元格区域左上角的表格号,从 0 开始计数。"
msgctxt ""
"04060112.xhp\n"
"par_id3163820\n"
-"92\n"
"help.text"
msgid "6"
msgstr "6"
@@ -27199,7 +25748,6 @@ msgstr "6"
msgctxt ""
"04060112.xhp\n"
"par_id3149710\n"
-"93\n"
"help.text"
msgid "Col2"
msgstr "Col2"
@@ -27208,7 +25756,6 @@ msgstr "Col2"
msgctxt ""
"04060112.xhp\n"
"par_id3154819\n"
-"94\n"
"help.text"
msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
msgstr "单元格区域右下角的列号。从 0 开始计数。"
@@ -27217,7 +25764,6 @@ msgstr "单元格区域右下角的列号。从 0 开始计数。"
msgctxt ""
"04060112.xhp\n"
"par_id3145083\n"
-"95\n"
"help.text"
msgid "8"
msgstr "8"
@@ -27226,7 +25772,6 @@ msgstr "8"
msgctxt ""
"04060112.xhp\n"
"par_id3156310\n"
-"96\n"
"help.text"
msgid "Row2"
msgstr "Row2"
@@ -27235,7 +25780,6 @@ msgstr "Row2"
msgctxt ""
"04060112.xhp\n"
"par_id3150968\n"
-"97\n"
"help.text"
msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
msgstr "单元格区右下角的行号; 从 0 开始计数。"
@@ -27244,7 +25788,6 @@ msgstr "单元格区右下角的行号; 从 0 开始计数。"
msgctxt ""
"04060112.xhp\n"
"par_id3156133\n"
-"98\n"
"help.text"
msgid "10"
msgstr "10"
@@ -27253,7 +25796,6 @@ msgstr "10"
msgctxt ""
"04060112.xhp\n"
"par_id3153218\n"
-"99\n"
"help.text"
msgid "Tab2"
msgstr "Tab2"
@@ -27262,7 +25804,6 @@ msgstr "Tab2"
msgctxt ""
"04060112.xhp\n"
"par_id3147086\n"
-"100\n"
"help.text"
msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
msgstr "单元格区右下角的表格编号; 从 0 开始计数。"
@@ -27271,7 +25812,6 @@ msgstr "单元格区右下角的表格编号; 从 0 开始计数。"
msgctxt ""
"04060112.xhp\n"
"par_id3151270\n"
-"101\n"
"help.text"
msgid "12"
msgstr "12"
@@ -27280,7 +25820,6 @@ msgstr "12"
msgctxt ""
"04060112.xhp\n"
"par_id3152934\n"
-"102\n"
"help.text"
msgid "Count"
msgstr "Count"
@@ -27289,7 +25828,6 @@ msgstr "Count"
msgctxt ""
"04060112.xhp\n"
"par_id3145202\n"
-"103\n"
"help.text"
msgid "Number of the following elements. Empty cells are not counted or passed."
msgstr "下接的单元数目。空单元格不予计数和传递。"
@@ -27298,7 +25836,6 @@ msgstr "下接的单元数目。空单元格不予计数和传递。"
msgctxt ""
"04060112.xhp\n"
"par_id3150879\n"
-"104\n"
"help.text"
msgid "14"
msgstr "14"
@@ -27307,7 +25844,6 @@ msgstr "14"
msgctxt ""
"04060112.xhp\n"
"par_id3156002\n"
-"105\n"
"help.text"
msgid "Col"
msgstr "Col"
@@ -27316,7 +25852,6 @@ msgstr "Col"
msgctxt ""
"04060112.xhp\n"
"par_id3147276\n"
-"106\n"
"help.text"
msgid "Column number of the element. Numbering starts at 0."
msgstr "元素的列号。从 0 开始计数。"
@@ -27325,7 +25860,6 @@ msgstr "元素的列号。从 0 开始计数。"
msgctxt ""
"04060112.xhp\n"
"par_id3151295\n"
-"107\n"
"help.text"
msgid "16"
msgstr "16"
@@ -27334,7 +25868,6 @@ msgstr "16"
msgctxt ""
"04060112.xhp\n"
"par_id3150261\n"
-"108\n"
"help.text"
msgid "Row"
msgstr "行"
@@ -27343,7 +25876,6 @@ msgstr "行"
msgctxt ""
"04060112.xhp\n"
"par_id3155851\n"
-"109\n"
"help.text"
msgid "Row number of the element; numbering starts at 0."
msgstr "元素的行号,从 0 开始计数。"
@@ -27352,7 +25884,6 @@ msgstr "元素的行号,从 0 开始计数。"
msgctxt ""
"04060112.xhp\n"
"par_id3153150\n"
-"110\n"
"help.text"
msgid "18"
msgstr "18"
@@ -27361,7 +25892,6 @@ msgstr "18"
msgctxt ""
"04060112.xhp\n"
"par_id3153758\n"
-"111\n"
"help.text"
msgid "Tab"
msgstr "Tab"
@@ -27370,7 +25900,6 @@ msgstr "Tab"
msgctxt ""
"04060112.xhp\n"
"par_id3150154\n"
-"112\n"
"help.text"
msgid "Table number of the element; numbering starts at 0."
msgstr "元素的表格号,从 0 开始计数。"
@@ -27379,7 +25908,6 @@ msgstr "元素的表格号,从 0 开始计数。"
msgctxt ""
"04060112.xhp\n"
"par_id3149289\n"
-"113\n"
"help.text"
msgid "20"
msgstr "20"
@@ -27388,7 +25916,6 @@ msgstr "20"
msgctxt ""
"04060112.xhp\n"
"par_id3156010\n"
-"114\n"
"help.text"
msgid "Error"
msgstr "Error"
@@ -27397,7 +25924,6 @@ msgstr "Error"
msgctxt ""
"04060112.xhp\n"
"par_id3159181\n"
-"115\n"
"help.text"
msgid "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
msgstr "错误编号,其中 0 值为“无错误”。如果元素来自于一个公式单元格,则错误值通过公式来确定。"
@@ -27406,7 +25932,6 @@ msgstr "错误编号,其中 0 值为“无错误”。如果元素来自于一
msgctxt ""
"04060112.xhp\n"
"par_id3147493\n"
-"116\n"
"help.text"
msgid "22"
msgstr "22"
@@ -27415,7 +25940,6 @@ msgstr "22"
msgctxt ""
"04060112.xhp\n"
"par_id3149200\n"
-"117\n"
"help.text"
msgid "Value"
msgstr "Value"
@@ -27424,7 +25948,6 @@ msgstr "Value"
msgctxt ""
"04060112.xhp\n"
"par_id3151174\n"
-"118\n"
"help.text"
msgid "8 byte IEEE variable of type double/floating point"
msgstr "双精度/浮点类型 8 字节 IEEE 变量"
@@ -27433,7 +25956,6 @@ msgstr "双精度/浮点类型 8 字节 IEEE 变量"
msgctxt ""
"04060112.xhp\n"
"par_id3154688\n"
-"119\n"
"help.text"
msgid "30"
msgstr "30"
@@ -27442,7 +25964,6 @@ msgstr "30"
msgctxt ""
"04060112.xhp\n"
"par_id3159337\n"
-"120\n"
"help.text"
msgid "..."
msgstr "..."
@@ -27451,7 +25972,6 @@ msgstr "..."
msgctxt ""
"04060112.xhp\n"
"par_id3155388\n"
-"121\n"
"help.text"
msgid "Next element"
msgstr "下一个元素"
@@ -27460,7 +25980,6 @@ msgstr "下一个元素"
msgctxt ""
"04060112.xhp\n"
"hd_id3154935\n"
-"122\n"
"help.text"
msgid "String Array"
msgstr "String Array"
@@ -27469,7 +25988,6 @@ msgstr "String Array"
msgctxt ""
"04060112.xhp\n"
"par_id3153105\n"
-"123\n"
"help.text"
msgid "A cell area, which contains values of data type Text and is passed as a string array. A string array in $[officename] Calc is defined as follows:"
msgstr "包含文本数据类型值的单元格区域,被当作字符串数组传递。字符串数组在 $[officename] Calc 中定义如下:"
@@ -27478,7 +25996,6 @@ msgstr "包含文本数据类型值的单元格区域,被当作字符串数组
msgctxt ""
"04060112.xhp\n"
"par_id3149908\n"
-"124\n"
"help.text"
msgid "<emph>Offset</emph>"
msgstr "<emph>Offset</emph>"
@@ -27487,7 +26004,6 @@ msgstr "<emph>Offset</emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3159165\n"
-"125\n"
"help.text"
msgid "<emph>Name</emph>"
msgstr "<emph>名称</emph>"
@@ -27496,7 +26012,6 @@ msgstr "<emph>名称</emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3159150\n"
-"126\n"
"help.text"
msgid "<emph>Description</emph>"
msgstr "<emph>说明</emph>"
@@ -27505,7 +26020,6 @@ msgstr "<emph>说明</emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3149769\n"
-"127\n"
"help.text"
msgid "0"
msgstr "0"
@@ -27514,7 +26028,6 @@ msgstr "0"
msgctxt ""
"04060112.xhp\n"
"par_id3150509\n"
-"128\n"
"help.text"
msgid "Col1"
msgstr "Col1"
@@ -27523,7 +26036,6 @@ msgstr "Col1"
msgctxt ""
"04060112.xhp\n"
"par_id3148447\n"
-"129\n"
"help.text"
msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
msgstr "单元格区域左上角的列号。计数从 0 开始。"
@@ -27532,7 +26044,6 @@ msgstr "单元格区域左上角的列号。计数从 0 开始。"
msgctxt ""
"04060112.xhp\n"
"par_id3145418\n"
-"130\n"
"help.text"
msgid "2"
msgstr "2"
@@ -27541,7 +26052,6 @@ msgstr "2"
msgctxt ""
"04060112.xhp\n"
"par_id3147512\n"
-"131\n"
"help.text"
msgid "Row1"
msgstr "Row1"
@@ -27550,7 +26060,6 @@ msgstr "Row1"
msgctxt ""
"04060112.xhp\n"
"par_id3147235\n"
-"132\n"
"help.text"
msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
msgstr "单元格区域左上角的行号,从 0 开始计数。"
@@ -27559,7 +26068,6 @@ msgstr "单元格区域左上角的行号,从 0 开始计数。"
msgctxt ""
"04060112.xhp\n"
"par_id3155362\n"
-"133\n"
"help.text"
msgid "4"
msgstr "4"
@@ -27568,7 +26076,6 @@ msgstr "4"
msgctxt ""
"04060112.xhp\n"
"par_id3151051\n"
-"134\n"
"help.text"
msgid "Tab1"
msgstr "Tab1"
@@ -27577,7 +26084,6 @@ msgstr "Tab1"
msgctxt ""
"04060112.xhp\n"
"par_id3148923\n"
-"135\n"
"help.text"
msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
msgstr "单元格区域左上角的表格号,从 0 开始计数。"
@@ -27586,7 +26092,6 @@ msgstr "单元格区域左上角的表格号,从 0 开始计数。"
msgctxt ""
"04060112.xhp\n"
"par_id3149158\n"
-"136\n"
"help.text"
msgid "6"
msgstr "6"
@@ -27595,7 +26100,6 @@ msgstr "6"
msgctxt ""
"04060112.xhp\n"
"par_id3166437\n"
-"137\n"
"help.text"
msgid "Col2"
msgstr "Col2"
@@ -27604,7 +26108,6 @@ msgstr "Col2"
msgctxt ""
"04060112.xhp\n"
"par_id3149788\n"
-"138\n"
"help.text"
msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
msgstr "单元格区域右下角的列号。从 0 开始计数。"
@@ -27613,7 +26116,6 @@ msgstr "单元格区域右下角的列号。从 0 开始计数。"
msgctxt ""
"04060112.xhp\n"
"par_id3166450\n"
-"139\n"
"help.text"
msgid "8"
msgstr "8"
@@ -27622,7 +26124,6 @@ msgstr "8"
msgctxt ""
"04060112.xhp\n"
"par_id3152877\n"
-"140\n"
"help.text"
msgid "Row2"
msgstr "Row2"
@@ -27631,7 +26132,6 @@ msgstr "Row2"
msgctxt ""
"04060112.xhp\n"
"par_id3152949\n"
-"141\n"
"help.text"
msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
msgstr "单元格区右下角的行号; 从 0 开始计数。"
@@ -27640,7 +26140,6 @@ msgstr "单元格区右下角的行号; 从 0 开始计数。"
msgctxt ""
"04060112.xhp\n"
"par_id3159270\n"
-"142\n"
"help.text"
msgid "10"
msgstr "10"
@@ -27649,7 +26148,6 @@ msgstr "10"
msgctxt ""
"04060112.xhp\n"
"par_id3154107\n"
-"143\n"
"help.text"
msgid "Tab2"
msgstr "Tab2"
@@ -27658,7 +26156,6 @@ msgstr "Tab2"
msgctxt ""
"04060112.xhp\n"
"par_id3153747\n"
-"144\n"
"help.text"
msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
msgstr "单元格区右下角的表格编号; 从 0 开始计数。"
@@ -27667,7 +26164,6 @@ msgstr "单元格区右下角的表格编号; 从 0 开始计数。"
msgctxt ""
"04060112.xhp\n"
"par_id3149924\n"
-"145\n"
"help.text"
msgid "12"
msgstr "12"
@@ -27676,7 +26172,6 @@ msgstr "12"
msgctxt ""
"04060112.xhp\n"
"par_id3154858\n"
-"146\n"
"help.text"
msgid "Count"
msgstr "Count"
@@ -27685,7 +26180,6 @@ msgstr "Count"
msgctxt ""
"04060112.xhp\n"
"par_id3148621\n"
-"147\n"
"help.text"
msgid "Number of the following elements. Empty cells are not counted or passed."
msgstr "下接的单元数目。空单元格不予计数和传递。"
@@ -27694,7 +26188,6 @@ msgstr "下接的单元数目。空单元格不予计数和传递。"
msgctxt ""
"04060112.xhp\n"
"par_id3148467\n"
-"148\n"
"help.text"
msgid "14"
msgstr "14"
@@ -27703,7 +26196,6 @@ msgstr "14"
msgctxt ""
"04060112.xhp\n"
"par_id3151126\n"
-"149\n"
"help.text"
msgid "Col"
msgstr "Col"
@@ -27712,7 +26204,6 @@ msgstr "Col"
msgctxt ""
"04060112.xhp\n"
"par_id3154334\n"
-"150\n"
"help.text"
msgid "Column number of the element. Numbering starts at 0."
msgstr "元素的列号。从 0 开始计数。"
@@ -27721,7 +26212,6 @@ msgstr "元素的列号。从 0 开始计数。"
msgctxt ""
"04060112.xhp\n"
"par_id3149416\n"
-"151\n"
"help.text"
msgid "16"
msgstr "16"
@@ -27730,7 +26220,6 @@ msgstr "16"
msgctxt ""
"04060112.xhp\n"
"par_id3150631\n"
-"152\n"
"help.text"
msgid "Row"
msgstr "行"
@@ -27739,7 +26228,6 @@ msgstr "行"
msgctxt ""
"04060112.xhp\n"
"par_id3150424\n"
-"153\n"
"help.text"
msgid "Row number of the element; numbering starts at 0."
msgstr "元素的行号,从 0 开始计数。"
@@ -27748,7 +26236,6 @@ msgstr "元素的行号,从 0 开始计数。"
msgctxt ""
"04060112.xhp\n"
"par_id3154797\n"
-"154\n"
"help.text"
msgid "18"
msgstr "18"
@@ -27757,7 +26244,6 @@ msgstr "18"
msgctxt ""
"04060112.xhp\n"
"par_id3143274\n"
-"155\n"
"help.text"
msgid "Tab"
msgstr "Tab"
@@ -27766,7 +26252,6 @@ msgstr "Tab"
msgctxt ""
"04060112.xhp\n"
"par_id3149513\n"
-"156\n"
"help.text"
msgid "Table number of the element; numbering starts at 0."
msgstr "元素的表格号,从 0 开始计数。"
@@ -27775,7 +26260,6 @@ msgstr "元素的表格号,从 0 开始计数。"
msgctxt ""
"04060112.xhp\n"
"par_id3145306\n"
-"157\n"
"help.text"
msgid "20"
msgstr "20"
@@ -27784,7 +26268,6 @@ msgstr "20"
msgctxt ""
"04060112.xhp\n"
"par_id3153948\n"
-"158\n"
"help.text"
msgid "Error"
msgstr "Error"
@@ -27793,7 +26276,6 @@ msgstr "Error"
msgctxt ""
"04060112.xhp\n"
"par_id3153534\n"
-"159\n"
"help.text"
msgid "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
msgstr "错误编号,其中 0 值为“无错误”。如果元素来自于一个公式单元格,则错误值通过公式来确定。"
@@ -27802,7 +26284,6 @@ msgstr "错误编号,其中 0 值为“无错误”。如果元素来自于一
msgctxt ""
"04060112.xhp\n"
"par_id3153311\n"
-"160\n"
"help.text"
msgid "22"
msgstr "22"
@@ -27811,7 +26292,6 @@ msgstr "22"
msgctxt ""
"04060112.xhp\n"
"par_id3148695\n"
-"161\n"
"help.text"
msgid "Len"
msgstr "Len"
@@ -27820,7 +26300,6 @@ msgstr "Len"
msgctxt ""
"04060112.xhp\n"
"par_id3152769\n"
-"162\n"
"help.text"
msgid "Length of the following string, including closing zero byte. If the length including closing zero byte equals an odd value a second zero byte is added to the string so that an even value is achieved. Therefore, Len is calculated using ((StrLen+2)&~1)."
msgstr "下列字符串的长度,包括结尾的 0 字节。如果该长度包括结尾的 0 字节给出一个奇数值,则给该字符串增加一个第二个 0 字节,以便取得一个偶数值。这样,Len 使用((StrLen+2)&~1)来计算。"
@@ -27829,7 +26308,6 @@ msgstr "下列字符串的长度,包括结尾的 0 字节。如果该长度包
msgctxt ""
"04060112.xhp\n"
"par_id3153772\n"
-"163\n"
"help.text"
msgid "24"
msgstr "24"
@@ -27838,7 +26316,6 @@ msgstr "24"
msgctxt ""
"04060112.xhp\n"
"par_id3153702\n"
-"164\n"
"help.text"
msgid "String"
msgstr "String"
@@ -27847,7 +26324,6 @@ msgstr "String"
msgctxt ""
"04060112.xhp\n"
"par_id3154474\n"
-"165\n"
"help.text"
msgid "String with closing zero byte"
msgstr "符号结果带结尾 0 字节。"
@@ -27856,7 +26332,6 @@ msgstr "符号结果带结尾 0 字节。"
msgctxt ""
"04060112.xhp\n"
"par_id3156269\n"
-"166\n"
"help.text"
msgid "24+Len"
msgstr "24+Len"
@@ -27865,7 +26340,6 @@ msgstr "24+Len"
msgctxt ""
"04060112.xhp\n"
"par_id3154825\n"
-"167\n"
"help.text"
msgid "..."
msgstr "..."
@@ -27874,7 +26348,6 @@ msgstr "..."
msgctxt ""
"04060112.xhp\n"
"par_id3147097\n"
-"168\n"
"help.text"
msgid "Next element"
msgstr "下一个元素"
@@ -27883,7 +26356,6 @@ msgstr "下一个元素"
msgctxt ""
"04060112.xhp\n"
"hd_id3159091\n"
-"169\n"
"help.text"
msgid "Cell Array"
msgstr "Cell Array"
@@ -27892,7 +26364,6 @@ msgstr "Cell Array"
msgctxt ""
"04060112.xhp\n"
"par_id3156140\n"
-"170\n"
"help.text"
msgid "Cell arrays are used to call cell areas containing text as well as numbers. A cell array in $[officename] Calc is defined as follows:"
msgstr "单元格数组用于调用含有文字和数字的单元格区域。在 $[officename] Calc 中,单元格数组定义如下:"
@@ -27901,7 +26372,6 @@ msgstr "单元格数组用于调用含有文字和数字的单元格区域。在
msgctxt ""
"04060112.xhp\n"
"par_id3154664\n"
-"171\n"
"help.text"
msgid "<emph>Offset</emph>"
msgstr "<emph>Offset</emph>"
@@ -27910,7 +26380,6 @@ msgstr "<emph>Offset</emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3154566\n"
-"172\n"
"help.text"
msgid "<emph>Name</emph>"
msgstr "<emph>名称</emph>"
@@ -27919,7 +26388,6 @@ msgstr "<emph>名称</emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3146073\n"
-"173\n"
"help.text"
msgid "<emph>Description</emph>"
msgstr "<emph>说明</emph>"
@@ -27928,7 +26396,6 @@ msgstr "<emph>说明</emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3154117\n"
-"174\n"
"help.text"
msgid "0"
msgstr "0"
@@ -27937,7 +26404,6 @@ msgstr "0"
msgctxt ""
"04060112.xhp\n"
"par_id3150988\n"
-"175\n"
"help.text"
msgid "Col1"
msgstr "Col1"
@@ -27946,7 +26412,6 @@ msgstr "Col1"
msgctxt ""
"04060112.xhp\n"
"par_id3146783\n"
-"176\n"
"help.text"
msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
msgstr "单元格区域左上角的列号。计数从 0 开始。"
@@ -27955,7 +26420,6 @@ msgstr "单元格区域左上角的列号。计数从 0 开始。"
msgctxt ""
"04060112.xhp\n"
"par_id3153666\n"
-"177\n"
"help.text"
msgid "2"
msgstr "2"
@@ -27964,7 +26428,6 @@ msgstr "2"
msgctxt ""
"04060112.xhp\n"
"par_id3149560\n"
-"178\n"
"help.text"
msgid "Row1"
msgstr "Row1"
@@ -27973,7 +26436,6 @@ msgstr "Row1"
msgctxt ""
"04060112.xhp\n"
"par_id3156156\n"
-"179\n"
"help.text"
msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
msgstr "单元格区域左上角的行号,从 0 开始计数。"
@@ -27982,7 +26444,6 @@ msgstr "单元格区域左上角的行号,从 0 开始计数。"
msgctxt ""
"04060112.xhp\n"
"par_id3150408\n"
-"180\n"
"help.text"
msgid "4"
msgstr "4"
@@ -27991,7 +26452,6 @@ msgstr "4"
msgctxt ""
"04060112.xhp\n"
"par_id3150593\n"
-"181\n"
"help.text"
msgid "Tab1"
msgstr "Tab1"
@@ -28000,7 +26460,6 @@ msgstr "Tab1"
msgctxt ""
"04060112.xhp\n"
"par_id3150357\n"
-"182\n"
"help.text"
msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
msgstr "单元格区域左上角的表格号,从 0 开始计数。"
@@ -28009,7 +26468,6 @@ msgstr "单元格区域左上角的表格号,从 0 开始计数。"
msgctxt ""
"04060112.xhp\n"
"par_id3146912\n"
-"183\n"
"help.text"
msgid "6"
msgstr "6"
@@ -28018,7 +26476,6 @@ msgstr "6"
msgctxt ""
"04060112.xhp\n"
"par_id3153352\n"
-"184\n"
"help.text"
msgid "Col2"
msgstr "Col2"
@@ -28027,7 +26484,6 @@ msgstr "Col2"
msgctxt ""
"04060112.xhp\n"
"par_id3155893\n"
-"185\n"
"help.text"
msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
msgstr "单元格区域右下角的列号。从 0 开始计数。"
@@ -28036,7 +26492,6 @@ msgstr "单元格区域右下角的列号。从 0 开始计数。"
msgctxt ""
"04060112.xhp\n"
"par_id3150827\n"
-"186\n"
"help.text"
msgid "8"
msgstr "8"
@@ -28045,7 +26500,6 @@ msgstr "8"
msgctxt ""
"04060112.xhp\n"
"par_id3148406\n"
-"187\n"
"help.text"
msgid "Row2"
msgstr "Row2"
@@ -28054,7 +26508,6 @@ msgstr "Row2"
msgctxt ""
"04060112.xhp\n"
"par_id3150673\n"
-"188\n"
"help.text"
msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
msgstr "单元格区右下角的行号; 从 0 开始计数。"
@@ -28063,7 +26516,6 @@ msgstr "单元格区右下角的行号; 从 0 开始计数。"
msgctxt ""
"04060112.xhp\n"
"par_id3155864\n"
-"189\n"
"help.text"
msgid "10"
msgstr "10"
@@ -28072,7 +26524,6 @@ msgstr "10"
msgctxt ""
"04060112.xhp\n"
"par_id3153197\n"
-"190\n"
"help.text"
msgid "Tab2"
msgstr "Tab2"
@@ -28081,7 +26532,6 @@ msgstr "Tab2"
msgctxt ""
"04060112.xhp\n"
"par_id3149329\n"
-"191\n"
"help.text"
msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
msgstr "单元格区右下角的表格编号; 从 0 开始计数。"
@@ -28090,7 +26540,6 @@ msgstr "单元格区右下角的表格编号; 从 0 开始计数。"
msgctxt ""
"04060112.xhp\n"
"par_id3147360\n"
-"192\n"
"help.text"
msgid "12"
msgstr "12"
@@ -28099,7 +26548,6 @@ msgstr "12"
msgctxt ""
"04060112.xhp\n"
"par_id3154520\n"
-"193\n"
"help.text"
msgid "Count"
msgstr "Count"
@@ -28108,7 +26556,6 @@ msgstr "Count"
msgctxt ""
"04060112.xhp\n"
"par_id3150647\n"
-"194\n"
"help.text"
msgid "Number of the following elements. Empty cells are not counted or passed."
msgstr "下接的单元数目。空单元格不予计数和传递。"
@@ -28117,7 +26564,6 @@ msgstr "下接的单元数目。空单元格不予计数和传递。"
msgctxt ""
"04060112.xhp\n"
"par_id3149747\n"
-"195\n"
"help.text"
msgid "14"
msgstr "14"
@@ -28126,7 +26572,6 @@ msgstr "14"
msgctxt ""
"04060112.xhp\n"
"par_id3147579\n"
-"196\n"
"help.text"
msgid "Col"
msgstr "Col"
@@ -28135,7 +26580,6 @@ msgstr "Col"
msgctxt ""
"04060112.xhp\n"
"par_id3154188\n"
-"197\n"
"help.text"
msgid "Column number of the element. Numbering starts at 0."
msgstr "元素的列号。从 0 开始计数。"
@@ -28144,7 +26588,6 @@ msgstr "元素的列号。从 0 开始计数。"
msgctxt ""
"04060112.xhp\n"
"par_id3159209\n"
-"198\n"
"help.text"
msgid "16"
msgstr "16"
@@ -28153,7 +26596,6 @@ msgstr "16"
msgctxt ""
"04060112.xhp\n"
"par_id3153265\n"
-"199\n"
"help.text"
msgid "Row"
msgstr "行"
@@ -28162,7 +26604,6 @@ msgstr "行"
msgctxt ""
"04060112.xhp\n"
"par_id3150095\n"
-"200\n"
"help.text"
msgid "Row number of the element; numbering starts at 0."
msgstr "元素的行号,从 0 开始计数。"
@@ -28171,7 +26612,6 @@ msgstr "元素的行号,从 0 开始计数。"
msgctxt ""
"04060112.xhp\n"
"par_id3151276\n"
-"201\n"
"help.text"
msgid "18"
msgstr "18"
@@ -28180,7 +26620,6 @@ msgstr "18"
msgctxt ""
"04060112.xhp\n"
"par_id3149177\n"
-"202\n"
"help.text"
msgid "Tab"
msgstr "Tab"
@@ -28189,7 +26628,6 @@ msgstr "Tab"
msgctxt ""
"04060112.xhp\n"
"par_id3146925\n"
-"203\n"
"help.text"
msgid "Table number of the element; numbering starts at 0."
msgstr "元素的表格号,从 0 开始计数。"
@@ -28198,7 +26636,6 @@ msgstr "元素的表格号,从 0 开始计数。"
msgctxt ""
"04060112.xhp\n"
"par_id3150488\n"
-"204\n"
"help.text"
msgid "20"
msgstr "20"
@@ -28207,7 +26644,6 @@ msgstr "20"
msgctxt ""
"04060112.xhp\n"
"par_id3149441\n"
-"205\n"
"help.text"
msgid "Error"
msgstr "Error"
@@ -28216,7 +26652,6 @@ msgstr "Error"
msgctxt ""
"04060112.xhp\n"
"par_id3156048\n"
-"206\n"
"help.text"
msgid "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
msgstr "错误编号,其中 0 值为“无错误”。如果元素来自于一个公式单元格,则错误值通过公式来确定。"
@@ -28225,7 +26660,6 @@ msgstr "错误编号,其中 0 值为“无错误”。如果元素来自于一
msgctxt ""
"04060112.xhp\n"
"par_id3163813\n"
-"207\n"
"help.text"
msgid "22"
msgstr "22"
@@ -28234,7 +26668,6 @@ msgstr "22"
msgctxt ""
"04060112.xhp\n"
"par_id3159102\n"
-"208\n"
"help.text"
msgid "Type"
msgstr "Type"
@@ -28243,7 +26676,6 @@ msgstr "Type"
msgctxt ""
"04060112.xhp\n"
"par_id3149581\n"
-"209\n"
"help.text"
msgid "Type of cell content, 0 == Double, 1 == String"
msgstr "单元格内容的类型,0 == 双字节,1 == 字符串"
@@ -28252,7 +26684,6 @@ msgstr "单元格内容的类型,0 == 双字节,1 == 字符串"
msgctxt ""
"04060112.xhp\n"
"par_id3155182\n"
-"210\n"
"help.text"
msgid "24"
msgstr "24"
@@ -28261,7 +26692,6 @@ msgstr "24"
msgctxt ""
"04060112.xhp\n"
"par_id3153291\n"
-"211\n"
"help.text"
msgid "Value or Len"
msgstr "Value or Len"
@@ -28270,7 +26700,6 @@ msgstr "Value or Len"
msgctxt ""
"04060112.xhp\n"
"par_id3148560\n"
-"212\n"
"help.text"
msgid "If type == 0: 8 byte IEEE variable of type double/floating point"
msgstr "如果 type == 0:双字节/浮点类型 8 字节 IEEE 变量"
@@ -28279,7 +26708,6 @@ msgstr "如果 type == 0:双字节/浮点类型 8 字节 IEEE 变量"
msgctxt ""
"04060112.xhp\n"
"par_id3148901\n"
-"213\n"
"help.text"
msgid "If type == 1: Length of the following string, including closing zero byte. If the length including closing zero byte equals an odd value a second zero byte is added to the string so that an even value is achieved. Therefore, Len is calculated using ((StrLen+2)&~1)."
msgstr "如果 Type == 1:下列字符串的长度,包括终止的零字符。如果这个长度包括终止的零字符产生一个奇数数值,则为了得到一个偶数数值,应给此字符串新增第二个空字符。因此 Len 通过((StrLen+2)&~1)计算得出。"
@@ -28288,7 +26716,6 @@ msgstr "如果 Type == 1:下列字符串的长度,包括终止的零字符
msgctxt ""
"04060112.xhp\n"
"par_id3145215\n"
-"214\n"
"help.text"
msgid "26 if type==1"
msgstr "26 if Type==1"
@@ -28297,7 +26724,6 @@ msgstr "26 if Type==1"
msgctxt ""
"04060112.xhp\n"
"par_id3155143\n"
-"215\n"
"help.text"
msgid "String"
msgstr "String"
@@ -28306,7 +26732,6 @@ msgstr "String"
msgctxt ""
"04060112.xhp\n"
"par_id3149298\n"
-"216\n"
"help.text"
msgid "If type == 1: String with closing zero byte"
msgstr "如果 Type == 1:字符行带有终止的零字节"
@@ -28315,7 +26740,6 @@ msgstr "如果 Type == 1:字符行带有终止的零字节"
msgctxt ""
"04060112.xhp\n"
"par_id3151322\n"
-"217\n"
"help.text"
msgid "32 or 26+Len"
msgstr "32 or 26+Len"
@@ -28324,7 +26748,6 @@ msgstr "32 or 26+Len"
msgctxt ""
"04060112.xhp\n"
"par_id3163722\n"
-"218\n"
"help.text"
msgid "..."
msgstr "..."
@@ -28333,7 +26756,6 @@ msgstr "..."
msgctxt ""
"04060112.xhp\n"
"par_id3151059\n"
-"219\n"
"help.text"
msgid "Next element"
msgstr "下一个元素"
@@ -28351,14 +26773,13 @@ msgctxt ""
"04060115.xhp\n"
"bm_id3152871\n"
"help.text"
-msgid "<bookmark_value>add-ins; analysis functions</bookmark_value><bookmark_value>analysis functions</bookmark_value>"
-msgstr "<bookmark_value>加载宏; 分析函数</bookmark_value><bookmark_value>分析函数</bookmark_value>"
+msgid "<bookmark_value>add-ins; analysis functions</bookmark_value> <bookmark_value>analysis functions</bookmark_value>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3152871\n"
-"1\n"
"help.text"
msgid "<variable id=\"head_addin_analysis_one\"><link href=\"text/scalc/01/04060115.xhp\" name=\"Add-in Functions, List of Analysis Functions Part One\">Add-in Functions, List of Analysis Functions Part One</link></variable>"
msgstr ""
@@ -28375,7 +26796,6 @@ msgstr "<bookmark_value>Bessel 函数</bookmark_value>"
msgctxt ""
"04060115.xhp\n"
"hd_id3153334\n"
-"111\n"
"help.text"
msgid "BESSELI"
msgstr "BESSELI"
@@ -28384,16 +26804,14 @@ msgstr "BESSELI"
msgctxt ""
"04060115.xhp\n"
"par_id3153960\n"
-"112\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELI\">Calculates the modified Bessel function.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELI\">计算修正的 Bessel 函数。</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELI\">Calculates the modified Bessel function of the first kind In(x).</ahelp>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3150392\n"
-"113\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -28402,7 +26820,6 @@ msgstr "语法"
msgctxt ""
"04060115.xhp\n"
"par_id3147295\n"
-"114\n"
"help.text"
msgid "BESSELI(X; N)"
msgstr "BESSELI(X; N)"
@@ -28411,7 +26828,6 @@ msgstr "BESSELI(X; N)"
msgctxt ""
"04060115.xhp\n"
"par_id3151338\n"
-"115\n"
"help.text"
msgid "<emph>X</emph> is the value on which the function will be calculated."
msgstr "<emph>X</emph> 用于计算函数的参数值。"
@@ -28420,16 +26836,46 @@ msgstr "<emph>X</emph> 用于计算函数的参数值。"
msgctxt ""
"04060115.xhp\n"
"par_id3151392\n"
-"116\n"
"help.text"
-msgid "<emph>N</emph> is the order of the Bessel function"
-msgstr "<emph>N</emph> 是 Bessel 函数的阶数"
+msgid "<emph>N</emph> is a positive integer (N >= 0) representing the order of the Bessel function In(x)"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id050220171032372604\n"
+"help.text"
+msgid "Examples"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019072404\n"
+"help.text"
+msgid "=BESSELI(3.45, 4), returns 0.651416873060081"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019072953\n"
+"help.text"
+msgid "=BESSELI(3.45, 4.333), returns 0.651416873060081, same as above because the fractional part of N is ignored."
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019075086\n"
+"help.text"
+msgid "=BESSELI(-1, 3), returns -0.022168424924332"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3153027\n"
-"103\n"
"help.text"
msgid "BESSELJ"
msgstr "BESSELJ"
@@ -28438,16 +26884,14 @@ msgstr "BESSELJ"
msgctxt ""
"04060115.xhp\n"
"par_id3153015\n"
-"104\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELJ\">Calculates the Bessel function (cylinder function).</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELJ\">计算 Bessel 函数(圆柱函数)。</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELJ\">Calculates the Bessel function of the first kind Jn(x) (cylinder function).</ahelp>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3146884\n"
-"105\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -28456,7 +26900,6 @@ msgstr "语法"
msgctxt ""
"04060115.xhp\n"
"par_id3150032\n"
-"106\n"
"help.text"
msgid "BESSELJ(X; N)"
msgstr "BESSELJ(X; N)"
@@ -28465,7 +26908,6 @@ msgstr "BESSELJ(X; N)"
msgctxt ""
"04060115.xhp\n"
"par_id3150378\n"
-"107\n"
"help.text"
msgid "<emph>X</emph> is the value on which the function will be calculated."
msgstr "<emph>X</emph> 用于计算函数的参数值。"
@@ -28474,16 +26916,46 @@ msgstr "<emph>X</emph> 用于计算函数的参数值。"
msgctxt ""
"04060115.xhp\n"
"par_id3145638\n"
-"108\n"
"help.text"
-msgid "<emph>N</emph> is the order of the Bessel function"
-msgstr "<emph>N</emph> 是 Bessel 函数的阶数"
+msgid "<emph>N</emph> is a positive integer (N >= 0) representing the order of the Bessel function Jn(x)"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id050220171032372274\n"
+"help.text"
+msgid "Examples"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019077179\n"
+"help.text"
+msgid "=BESSELJ(3.45, 4), returns 0.196772639864984"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019078280\n"
+"help.text"
+msgid "=BESSELJ(3.45, 4.333), returns 0.144803466373734, same as above because the fractional part of N is ignored."
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019079818\n"
+"help.text"
+msgid "=BESSELJ(-1, 3), returns -0.019563353982668"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3149946\n"
-"117\n"
"help.text"
msgid "BESSELK"
msgstr "BESSELK"
@@ -28492,16 +26964,14 @@ msgstr "BESSELK"
msgctxt ""
"04060115.xhp\n"
"par_id3159122\n"
-"118\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELK\">Calculates the modified Bessel function.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELK\">计算修改的 Bessel 函数值。</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELK\">Calculates the modified Bessel function of the second kind Kn(x).</ahelp>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3150650\n"
-"119\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -28510,7 +26980,6 @@ msgstr "语法"
msgctxt ""
"04060115.xhp\n"
"par_id3149354\n"
-"120\n"
"help.text"
msgid "BESSELK(X; N)"
msgstr "BESSELK(X; N)"
@@ -28519,25 +26988,54 @@ msgstr "BESSELK(X; N)"
msgctxt ""
"04060115.xhp\n"
"par_id3150481\n"
-"121\n"
"help.text"
-msgid "<emph>X</emph> is the value on which the function will be calculated."
-msgstr "<emph>X</emph> 用于计算函数的参数值。"
+msgid "<emph>X</emph> is the strictly positive value (X > 0) on which the function will be calculated."
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"par_id3150024\n"
-"122\n"
"help.text"
-msgid "<emph>N</emph> is the order of the Bessel function"
-msgstr "<emph>N</emph> 是 Bessel 函数的阶数"
+msgid "<emph>N</emph> is a positive integer (N >= 0) representing the order of the Bessel function Kn(x)"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id050220171032373675\n"
+"help.text"
+msgid "Examples"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019073898\n"
+"help.text"
+msgid "=BESSELK(3.45, 4), returns 0.144803466373734"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019079889\n"
+"help.text"
+msgid "=BESSELK(3.45, 4.333), returns 0.144803466373734, same as above because the fractional part of N is ignored."
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019076471\n"
+"help.text"
+msgid "=BESSELK(0, 3), returns Err:502 – invalid argument (X=0)"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3145828\n"
-"123\n"
"help.text"
msgid "BESSELY"
msgstr "BESSELY"
@@ -28546,16 +27044,14 @@ msgstr "BESSELY"
msgctxt ""
"04060115.xhp\n"
"par_id3146877\n"
-"124\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELY\">Calculates the modified Bessel function.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELY\">计算修改的 Bessel 函数。</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELY\">Calculates the Bessel function of the second kind Yn(x).</ahelp>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3146941\n"
-"125\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -28564,7 +27060,6 @@ msgstr "语法"
msgctxt ""
"04060115.xhp\n"
"par_id3148884\n"
-"126\n"
"help.text"
msgid "BESSELY(X; N)"
msgstr "BESSELY(X; N)"
@@ -28573,33 +27068,62 @@ msgstr "BESSELY(X; N)"
msgctxt ""
"04060115.xhp\n"
"par_id3147475\n"
-"127\n"
"help.text"
-msgid "<emph>X</emph> is the value on which the function will be calculated."
-msgstr "<emph>X</emph> 用于计算函数的参数值。"
+msgid "<emph>X</emph> is the strictly positive value (X > 0) on which the function will be calculated."
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"par_id3147421\n"
-"128\n"
"help.text"
-msgid "<emph>N</emph> is the order of the Bessel function"
-msgstr "<emph>N</emph> 是 Bessel 函数的阶数"
+msgid "<emph>N</emph> is a positive integer (N >= 0) representing the order of the Bessel function Yn(x)"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id050220171019084402\n"
+"help.text"
+msgid "Examples"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019081114\n"
+"help.text"
+msgid "=BESSELY(3.45, 4), returns -0.679848116844476"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019081288\n"
+"help.text"
+msgid "=BESSELY(3.45, 4.333), returns -0.679848116844476, same as above because the fractional part of N is ignored."
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019082347\n"
+"help.text"
+msgid "=BESSELY(0, 3), returns Err:502 – invalid argument (X=0)"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"bm_id3153034\n"
"help.text"
-msgid "<bookmark_value>BIN2DEC function</bookmark_value><bookmark_value>converting;binary numbers, into decimal numbers</bookmark_value>"
-msgstr "<bookmark_value>BIN2DEC 函数</bookmark_value><bookmark_value>转换; 二进制数值, 十进制数值</bookmark_value>"
+msgid "<bookmark_value>BIN2DEC function</bookmark_value> <bookmark_value>converting;binary numbers, into decimal numbers</bookmark_value>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3153034\n"
-"17\n"
"help.text"
msgid "BIN2DEC"
msgstr "BIN2DEC"
@@ -28608,7 +27132,6 @@ msgstr "BIN2DEC"
msgctxt ""
"04060115.xhp\n"
"par_id3144744\n"
-"18\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2DEC\">The result is the decimal number for the binary number entered.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2DEC\">结果是由输入的二进制数转换成的十进制数。</ahelp>"
@@ -28617,7 +27140,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2DEC\">结果是由输入的二进制数转
msgctxt ""
"04060115.xhp\n"
"hd_id3145593\n"
-"19\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -28626,7 +27148,6 @@ msgstr "语法"
msgctxt ""
"04060115.xhp\n"
"par_id3149726\n"
-"20\n"
"help.text"
msgid "BIN2DEC(Number)"
msgstr "BIN2DEC(Number)"
@@ -28635,7 +27156,6 @@ msgstr "BIN2DEC(Number)"
msgctxt ""
"04060115.xhp\n"
"par_id3150142\n"
-"21\n"
"help.text"
msgid "<emph>Number</emph> is a binary number. The number can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement."
msgstr "<emph>Number</emph> 是一个二进制数字。该数最多可有 10 位。最高位是符号位。负数以二进制补码形式输入。"
@@ -28644,7 +27164,6 @@ msgstr "<emph>Number</emph> 是一个二进制数字。该数最多可有 10 位
msgctxt ""
"04060115.xhp\n"
"hd_id3149250\n"
-"22\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -28653,7 +27172,6 @@ msgstr "示例"
msgctxt ""
"04060115.xhp\n"
"par_id3145138\n"
-"23\n"
"help.text"
msgid "<item type=\"input\">=BIN2DEC(1100100)</item> returns 100."
msgstr "<item type=\"input\">=BIN2DEC(1100100)</item> 返回 100。"
@@ -28663,14 +27181,13 @@ msgctxt ""
"04060115.xhp\n"
"bm_id3149954\n"
"help.text"
-msgid "<bookmark_value>BIN2HEX function</bookmark_value><bookmark_value>converting;binary numbers, into hexadecimal numbers</bookmark_value>"
-msgstr "<bookmark_value>BIN2HEX 函数</bookmark_value><bookmark_value>转换; 二进制数值, 十六进制数值</bookmark_value>"
+msgid "<bookmark_value>BIN2HEX function</bookmark_value> <bookmark_value>converting;binary numbers, into hexadecimal numbers</bookmark_value>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3149954\n"
-"24\n"
"help.text"
msgid "BIN2HEX"
msgstr "BIN2HEX"
@@ -28679,7 +27196,6 @@ msgstr "BIN2HEX"
msgctxt ""
"04060115.xhp\n"
"par_id3148585\n"
-"25\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2HEX\">The result is the hexadecimal number for the binary number entered.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2HEX\">结果是由输入的二进制数转换成的十六进制数。</ahelp>"
@@ -28688,7 +27204,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2HEX\">结果是由输入的二进制数转
msgctxt ""
"04060115.xhp\n"
"hd_id3153936\n"
-"26\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -28697,7 +27212,6 @@ msgstr "语法"
msgctxt ""
"04060115.xhp\n"
"par_id3148753\n"
-"27\n"
"help.text"
msgid "BIN2HEX(Number; Places)"
msgstr "BIN2HEX(Number; Places)"
@@ -28706,7 +27220,6 @@ msgstr "BIN2HEX(Number; Places)"
msgctxt ""
"04060115.xhp\n"
"par_id3155255\n"
-"28\n"
"help.text"
msgid "<emph>Number</emph> is a binary number. The number can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement."
msgstr "<emph>Number</emph> 是一个二进制数字。该数最多可有 10 位。最高位是符号位。负数以二进制补码形式输入。"
@@ -28715,7 +27228,6 @@ msgstr "<emph>Number</emph> 是一个二进制数字。该数最多可有 10 位
msgctxt ""
"04060115.xhp\n"
"par_id3150860\n"
-"29\n"
"help.text"
msgid "Places means the number of places to be output."
msgstr "Places 是要输出的位数。"
@@ -28724,7 +27236,6 @@ msgstr "Places 是要输出的位数。"
msgctxt ""
"04060115.xhp\n"
"hd_id3155829\n"
-"30\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -28733,7 +27244,6 @@ msgstr "示例"
msgctxt ""
"04060115.xhp\n"
"par_id3149686\n"
-"31\n"
"help.text"
msgid "<item type=\"input\">=BIN2HEX(1100100;6)</item> returns 000064."
msgstr "<item type=\"input\">=BIN2HEX(1100100;6)</item> 返回 000064。"
@@ -28743,14 +27253,13 @@ msgctxt ""
"04060115.xhp\n"
"bm_id3153332\n"
"help.text"
-msgid "<bookmark_value>BIN2OCT function</bookmark_value><bookmark_value>converting;binary numbers, into octal numbers</bookmark_value>"
-msgstr "<bookmark_value>BIN2OCT 函数</bookmark_value><bookmark_value>转换; 二进制数值, 八进制数值</bookmark_value>"
+msgid "<bookmark_value>BIN2OCT function</bookmark_value> <bookmark_value>converting;binary numbers, into octal numbers</bookmark_value>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3153332\n"
-"9\n"
"help.text"
msgid "BIN2OCT"
msgstr "BIN2OCT"
@@ -28759,7 +27268,6 @@ msgstr "BIN2OCT"
msgctxt ""
"04060115.xhp\n"
"par_id3155951\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2OCT\"> The result is the octal number for the binary number entered.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2OCT\"> 结果是输入的二进制数对应的八进制数。</ahelp>"
@@ -28768,7 +27276,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2OCT\"> 结果是输入的二进制数对
msgctxt ""
"04060115.xhp\n"
"hd_id3153001\n"
-"11\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -28777,7 +27284,6 @@ msgstr "语法"
msgctxt ""
"04060115.xhp\n"
"par_id3154508\n"
-"12\n"
"help.text"
msgid "BIN2OCT(Number; Places)"
msgstr "BIN2OCT(Number; Places)"
@@ -28786,7 +27292,6 @@ msgstr "BIN2OCT(Number; Places)"
msgctxt ""
"04060115.xhp\n"
"par_id3153567\n"
-"13\n"
"help.text"
msgid "<emph>Number</emph> is a binary number. The number can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement."
msgstr "<emph>Number</emph> 是一个二进制数字。该数最多可有 10 位。最高位是符号位。负数以二进制补码形式输入。"
@@ -28795,7 +27300,6 @@ msgstr "<emph>Number</emph> 是一个二进制数字。该数最多可有 10 位
msgctxt ""
"04060115.xhp\n"
"par_id3155929\n"
-"14\n"
"help.text"
msgid "<emph>Places</emph> means the number of places to be output."
msgstr "<emph>Places</emph> 是要输出的位数。"
@@ -28804,7 +27308,6 @@ msgstr "<emph>Places</emph> 是要输出的位数。"
msgctxt ""
"04060115.xhp\n"
"hd_id3150128\n"
-"15\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -28813,7 +27316,6 @@ msgstr "示例"
msgctxt ""
"04060115.xhp\n"
"par_id3153733\n"
-"16\n"
"help.text"
msgid "<item type=\"input\">=BIN2OCT(1100100;4)</item> returns 0144."
msgstr "<item type=\"input\">=BIN2OCT(1100100;4)</item> 返回 0144。"
@@ -28823,14 +27325,13 @@ msgctxt ""
"04060115.xhp\n"
"bm_id3150014\n"
"help.text"
-msgid "<bookmark_value>DELTA function</bookmark_value><bookmark_value>recognizing;equal numbers</bookmark_value>"
-msgstr "<bookmark_value>DELTA 函数</bookmark_value><bookmark_value>识别; 相等的数字</bookmark_value>"
+msgid "<bookmark_value>DELTA function</bookmark_value> <bookmark_value>recognizing;equal numbers</bookmark_value>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3150014\n"
-"129\n"
"help.text"
msgid "DELTA"
msgstr "DELTA"
@@ -28839,7 +27340,6 @@ msgstr "DELTA"
msgctxt ""
"04060115.xhp\n"
"par_id3148760\n"
-"130\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_DELTA\">The result is TRUE (1) if both numbers, which are delivered as an argument, are equal, otherwise it is FALSE (0).</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_DELTA\">如果两个自变量的数值相等,则结果为 TRUE (1),否则为 FALSE (0)。</ahelp>"
@@ -28848,7 +27348,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_DELTA\">如果两个自变量的数值相等
msgctxt ""
"04060115.xhp\n"
"hd_id3155435\n"
-"131\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -28857,7 +27356,6 @@ msgstr "语法"
msgctxt ""
"04060115.xhp\n"
"par_id3145247\n"
-"132\n"
"help.text"
msgid "DELTA(Number1; Number2)"
msgstr "DELTA(Number1; Number2)"
@@ -28866,7 +27364,6 @@ msgstr "DELTA(Number1; Number2)"
msgctxt ""
"04060115.xhp\n"
"hd_id3149002\n"
-"133\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -28875,7 +27372,6 @@ msgstr "示例"
msgctxt ""
"04060115.xhp\n"
"par_id3151020\n"
-"134\n"
"help.text"
msgid "<item type=\"input\">=DELTA(1;2)</item> returns 0."
msgstr "<item type=\"input\">=DELTA(1;2)</item> 返回 0。"
@@ -28885,14 +27381,13 @@ msgctxt ""
"04060115.xhp\n"
"bm_id3157971\n"
"help.text"
-msgid "<bookmark_value>DEC2BIN function</bookmark_value><bookmark_value>converting;decimal numbers, into binary numbers</bookmark_value>"
-msgstr "<bookmark_value>DEC2BIN 函数</bookmark_value><bookmark_value>转换; 十进制数值, 二进制数值</bookmark_value>"
+msgid "<bookmark_value>DEC2BIN function</bookmark_value> <bookmark_value>converting;decimal numbers, into binary numbers</bookmark_value>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3157971\n"
-"55\n"
"help.text"
msgid "DEC2BIN"
msgstr "DEC2BIN"
@@ -28901,7 +27396,6 @@ msgstr "DEC2BIN"
msgctxt ""
"04060115.xhp\n"
"par_id3153043\n"
-"56\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2BIN\"> The result is the binary number for the decimal number entered between -512 and 511.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2BIN\">结果是与输入的十进制数(-512 到 511 之间)相对应的二进制数。</ahelp>"
@@ -28910,7 +27404,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2BIN\">结果是与输入的十进制数(
msgctxt ""
"04060115.xhp\n"
"hd_id3145349\n"
-"57\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -28919,7 +27412,6 @@ msgstr "语法"
msgctxt ""
"04060115.xhp\n"
"par_id3150569\n"
-"58\n"
"help.text"
msgid "DEC2BIN(Number; Places)"
msgstr "DEC2BIN(Number; Places)"
@@ -28928,7 +27420,6 @@ msgstr "DEC2BIN(Number; Places)"
msgctxt ""
"04060115.xhp\n"
"par_id3148768\n"
-"59\n"
"help.text"
msgid "<emph>Number</emph> is a decimal number. If Number is negative, the function returns a binary number with 10 characters. The most significant bit is the sign bit, the other 9 bits return the value."
msgstr "<emph>Number</emph> 是一个十进制数字。如果 Number 为负数,则函数将该数转换成一个由 10 个字符组成的二进制数字。最高位是符号位,其余的 9 位便是该数值。"
@@ -28937,7 +27428,6 @@ msgstr "<emph>Number</emph> 是一个十进制数字。如果 Number 为负数
msgctxt ""
"04060115.xhp\n"
"par_id3149537\n"
-"60\n"
"help.text"
msgid "<emph>Places</emph> means the number of places to be output."
msgstr "<emph>Places</emph> 是要输出的位数。"
@@ -28946,7 +27436,6 @@ msgstr "<emph>Places</emph> 是要输出的位数。"
msgctxt ""
"04060115.xhp\n"
"hd_id3150265\n"
-"61\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -28955,7 +27444,6 @@ msgstr "示例"
msgctxt ""
"04060115.xhp\n"
"par_id3150662\n"
-"62\n"
"help.text"
msgid "<item type=\"input\">=DEC2BIN(100;8)</item> returns 01100100."
msgstr "<item type=\"input\">=DEC2BIN(100;8)</item> 返回 01100100。"
@@ -28965,14 +27453,13 @@ msgctxt ""
"04060115.xhp\n"
"bm_id3149388\n"
"help.text"
-msgid "<bookmark_value>DEC2HEX function</bookmark_value><bookmark_value>converting;decimal numbers, into hexadecimal numbers</bookmark_value>"
-msgstr "<bookmark_value>DEC2HEX 函数</bookmark_value><bookmark_value>转换; 十进制数值, 十六进制数值</bookmark_value>"
+msgid "<bookmark_value>DEC2HEX function</bookmark_value> <bookmark_value>converting;decimal numbers, into hexadecimal numbers</bookmark_value>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3149388\n"
-"71\n"
"help.text"
msgid "DEC2HEX"
msgstr "DEC2HEX"
@@ -28981,7 +27468,6 @@ msgstr "DEC2HEX"
msgctxt ""
"04060115.xhp\n"
"par_id3149030\n"
-"72\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2HEX\">The result is the hexadecimal number for the decimal number entered.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2HEX\">将输入的十进制数转换成十六进制数。</ahelp>"
@@ -28990,7 +27476,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2HEX\">将输入的十进制数转换成十
msgctxt ""
"04060115.xhp\n"
"hd_id3150691\n"
-"73\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -28999,7 +27484,6 @@ msgstr "语法"
msgctxt ""
"04060115.xhp\n"
"par_id3147535\n"
-"74\n"
"help.text"
msgid "DEC2HEX(Number; Places)"
msgstr "DEC2HEX(Number; Places)"
@@ -29008,7 +27492,6 @@ msgstr "DEC2HEX(Number; Places)"
msgctxt ""
"04060115.xhp\n"
"par_id3152820\n"
-"75\n"
"help.text"
msgid "<emph>Number</emph> is a decimal number. If Number is negative, the function returns a hexadecimal number with 10 characters (40 bits). The most significant bit is the sign bit, the other 39 bits return the value."
msgstr "<emph>Number</emph> 是一个十进制数字。如果 Number 为负数,则函数将该数转换成一个由 10 个字符(40位)组成的十六进制数字。最高位是符号位,其余的 39 位便是该数值。"
@@ -29017,7 +27500,6 @@ msgstr "<emph>Number</emph> 是一个十进制数字。如果 Number 为负数
msgctxt ""
"04060115.xhp\n"
"par_id3153221\n"
-"76\n"
"help.text"
msgid "<emph>Places</emph> means the number of places to be output."
msgstr "<emph>Places</emph> 是要输出的位数。"
@@ -29026,7 +27508,6 @@ msgstr "<emph>Places</emph> 是要输出的位数。"
msgctxt ""
"04060115.xhp\n"
"hd_id3154869\n"
-"77\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -29035,7 +27516,6 @@ msgstr "示例"
msgctxt ""
"04060115.xhp\n"
"par_id3150476\n"
-"78\n"
"help.text"
msgid "<item type=\"input\">=DEC2HEX(100;4)</item> returns 0064."
msgstr "<item type=\"input\">=DEC2HEX(100;4)</item> 返回 0064。"
@@ -29045,14 +27525,13 @@ msgctxt ""
"04060115.xhp\n"
"bm_id3154948\n"
"help.text"
-msgid "<bookmark_value>DEC2OCT function</bookmark_value><bookmark_value>converting;decimal numbers, into octal numbers</bookmark_value>"
-msgstr "<bookmark_value>DEC2OCT 函数</bookmark_value><bookmark_value>转换; 十进制数值, 八进制数值</bookmark_value>"
+msgid "<bookmark_value>DEC2OCT function</bookmark_value> <bookmark_value>converting;decimal numbers, into octal numbers</bookmark_value>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3154948\n"
-"63\n"
"help.text"
msgid "DEC2OCT"
msgstr "DEC2OCT"
@@ -29061,7 +27540,6 @@ msgstr "DEC2OCT"
msgctxt ""
"04060115.xhp\n"
"par_id3153920\n"
-"64\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2OCT\">The result is the octal number for the decimal number entered.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2OCT\">结果是与输入的十进制数相对应的八进制数。</ahelp>"
@@ -29070,7 +27548,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2OCT\">结果是与输入的十进制数相
msgctxt ""
"04060115.xhp\n"
"hd_id3153178\n"
-"65\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -29079,7 +27556,6 @@ msgstr "语法"
msgctxt ""
"04060115.xhp\n"
"par_id3148427\n"
-"66\n"
"help.text"
msgid "DEC2OCT(Number; Places)"
msgstr "DEC2OCT(number; places)"
@@ -29088,7 +27564,6 @@ msgstr "DEC2OCT(number; places)"
msgctxt ""
"04060115.xhp\n"
"par_id3155991\n"
-"67\n"
"help.text"
msgid "<emph>Number</emph> is a decimal number. If Number is negative, the function returns an octal number with 10 characters (30 bits). The most significant bit is the sign bit, the other 29 bits return the value."
msgstr "<emph>Number</emph> 是一个十进制数字。如果 Number 为负数,则函数将该数转换成一个由 10 个字符(30位)组成的八进制数字。最高位是符号位,其余的 29 位便是该数值。"
@@ -29097,7 +27572,6 @@ msgstr "<emph>Number</emph> 是一个十进制数字。如果 Number 为负数
msgctxt ""
"04060115.xhp\n"
"par_id3152587\n"
-"68\n"
"help.text"
msgid "<emph>Places</emph> means the number of places to be output."
msgstr "<emph>Places</emph> 是要输出的位数。"
@@ -29106,7 +27580,6 @@ msgstr "<emph>Places</emph> 是要输出的位数。"
msgctxt ""
"04060115.xhp\n"
"hd_id3147482\n"
-"69\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -29115,7 +27588,6 @@ msgstr "示例"
msgctxt ""
"04060115.xhp\n"
"par_id3154317\n"
-"70\n"
"help.text"
msgid "<item type=\"input\">=DEC2OCT(100;4)</item> returns 0144."
msgstr "<item type=\"input\">=DEC2OCT(100;4)</item> 返回 0144。"
@@ -29125,14 +27597,13 @@ msgctxt ""
"04060115.xhp\n"
"bm_id3083446\n"
"help.text"
-msgid "<bookmark_value>ERF function</bookmark_value><bookmark_value>Gaussian error integral</bookmark_value>"
-msgstr "<bookmark_value>ERF 函数</bookmark_value><bookmark_value>高斯误差积分</bookmark_value>"
+msgid "<bookmark_value>ERF function</bookmark_value> <bookmark_value>Gaussian error integral</bookmark_value>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3083446\n"
-"135\n"
"help.text"
msgid "ERF"
msgstr "ERF"
@@ -29141,7 +27612,6 @@ msgstr "ERF"
msgctxt ""
"04060115.xhp\n"
"par_id3150381\n"
-"136\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_ERF\">Returns values of the Gaussian error integral.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_ERF\">返回高斯误差积分值。</ahelp>"
@@ -29150,7 +27620,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_ERF\">返回高斯误差积分值。</ahelp>"
msgctxt ""
"04060115.xhp\n"
"hd_id3152475\n"
-"137\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -29159,7 +27628,6 @@ msgstr "语法"
msgctxt ""
"04060115.xhp\n"
"par_id3163824\n"
-"138\n"
"help.text"
msgid "ERF(LowerLimit; UpperLimit)"
msgstr "ERF(LowerLimit; UpperLimit)"
@@ -29168,7 +27636,6 @@ msgstr "ERF(LowerLimit; UpperLimit)"
msgctxt ""
"04060115.xhp\n"
"par_id3149715\n"
-"139\n"
"help.text"
msgid "<emph>LowerLimit</emph> is the lower limit of the integral."
msgstr "<emph>LowerLimit</emph> 积分的下限。"
@@ -29177,7 +27644,6 @@ msgstr "<emph>LowerLimit</emph> 积分的下限。"
msgctxt ""
"04060115.xhp\n"
"par_id3156294\n"
-"140\n"
"help.text"
msgid "<emph>UpperLimit</emph> is optional. It is the upper limit of the integral. If this value is missing, the calculation takes places between 0 and the lower limit."
msgstr "<emph>UpperLimit</emph> 可选,表示积分上限。如果不指定此值,则在 0 和下限之间计算积分。"
@@ -29186,7 +27652,6 @@ msgstr "<emph>UpperLimit</emph> 可选,表示积分上限。如果不指定此
msgctxt ""
"04060115.xhp\n"
"hd_id3154819\n"
-"141\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -29195,7 +27660,6 @@ msgstr "示例"
msgctxt ""
"04060115.xhp\n"
"par_id3152974\n"
-"142\n"
"help.text"
msgid "<item type=\"input\">=ERF(0;1)</item> returns 0.842701."
msgstr "<item type=\"input\">=ERF(0;1)</item> 返回 0.842701。"
@@ -29205,14 +27669,13 @@ msgctxt ""
"04060115.xhp\n"
"bm_id2983446\n"
"help.text"
-msgid "<bookmark_value>ERF.PRECISE function</bookmark_value><bookmark_value>Gaussian error integral</bookmark_value>"
-msgstr "<bookmark_value>ERF.PRECISE 函数</bookmark_value><bookmark_value>高斯误差积分</bookmark_value>"
+msgid "<bookmark_value>ERF.PRECISE function</bookmark_value> <bookmark_value>Gaussian error integral</bookmark_value>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id2983446\n"
-"135\n"
"help.text"
msgid "ERF.PRECISE"
msgstr "ERF.PRECISE"
@@ -29229,7 +27692,6 @@ msgstr ""
msgctxt ""
"04060115.xhp\n"
"hd_id2952475\n"
-"137\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -29238,7 +27700,6 @@ msgstr "语法"
msgctxt ""
"04060115.xhp\n"
"par_id2963824\n"
-"138\n"
"help.text"
msgid "ERF.PRECISE(LowerLimit)"
msgstr ""
@@ -29255,7 +27716,6 @@ msgstr ""
msgctxt ""
"04060115.xhp\n"
"hd_id2954819\n"
-"141\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -29280,7 +27740,6 @@ msgstr "<bookmark_value>ERFC 函数</bookmark_value>"
msgctxt ""
"04060115.xhp\n"
"hd_id3145082\n"
-"143\n"
"help.text"
msgid "ERFC"
msgstr "ERFC"
@@ -29289,7 +27748,6 @@ msgstr "ERFC"
msgctxt ""
"04060115.xhp\n"
"par_id3149453\n"
-"144\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_ERFC\">Returns complementary values of the Gaussian error integral between x and infinity.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_ERFC\">返回 x 和无穷大之间高斯误差积分的互补值。</ahelp>"
@@ -29298,7 +27756,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_ERFC\">返回 x 和无穷大之间高斯误差
msgctxt ""
"04060115.xhp\n"
"hd_id3155839\n"
-"145\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -29307,7 +27764,6 @@ msgstr "语法"
msgctxt ""
"04060115.xhp\n"
"par_id3153220\n"
-"146\n"
"help.text"
msgid "ERFC(LowerLimit)"
msgstr "ERFC(下限)"
@@ -29316,7 +27772,6 @@ msgstr "ERFC(下限)"
msgctxt ""
"04060115.xhp\n"
"par_id3147620\n"
-"147\n"
"help.text"
msgid "<emph>LowerLimit</emph> is the lower limit of the integral"
msgstr "<emph>下限</emph> 积分的下限"
@@ -29325,7 +27780,6 @@ msgstr "<emph>下限</emph> 积分的下限"
msgctxt ""
"04060115.xhp\n"
"hd_id3146861\n"
-"148\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -29334,7 +27788,6 @@ msgstr "示例"
msgctxt ""
"04060115.xhp\n"
"par_id3156102\n"
-"149\n"
"help.text"
msgid "<item type=\"input\">=ERFC(1)</item> returns 0.157299."
msgstr "<item type=\"input\">=ERFC(1)</item> 返回 0.157299。"
@@ -29351,7 +27804,6 @@ msgstr "<bookmark_value>ERFC.PRECISE 函数</bookmark_value>"
msgctxt ""
"04060115.xhp\n"
"hd_id2945082\n"
-"143\n"
"help.text"
msgid "ERFC.PRECISE"
msgstr "ERFC.PRECISE"
@@ -29360,7 +27812,6 @@ msgstr "ERFC.PRECISE"
msgctxt ""
"04060115.xhp\n"
"par_id2949453\n"
-"144\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ERFC_MS\">Returns complementary values of the Gaussian error integral between x and infinity.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_ERFC_MS\">返回 x 和无穷大之间高斯误差积分的互补值。</ahelp>"
@@ -29369,7 +27820,6 @@ msgstr "<ahelp hid=\"HID_FUNC_ERFC_MS\">返回 x 和无穷大之间高斯误差
msgctxt ""
"04060115.xhp\n"
"hd_id2955839\n"
-"145\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -29378,7 +27828,6 @@ msgstr "语法"
msgctxt ""
"04060115.xhp\n"
"par_id2953220\n"
-"146\n"
"help.text"
msgid "ERFC.PRECISE(LowerLimit)"
msgstr "ERFC.PRECISE(下限)"
@@ -29387,7 +27836,6 @@ msgstr "ERFC.PRECISE(下限)"
msgctxt ""
"04060115.xhp\n"
"par_id2947620\n"
-"147\n"
"help.text"
msgid "<emph>LowerLimit</emph> is the lower limit of the integral"
msgstr "<emph>下限</emph> 积分的下限"
@@ -29396,7 +27844,6 @@ msgstr "<emph>下限</emph> 积分的下限"
msgctxt ""
"04060115.xhp\n"
"hd_id2946861\n"
-"148\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -29405,7 +27852,6 @@ msgstr "示例"
msgctxt ""
"04060115.xhp\n"
"par_id2956102\n"
-"149\n"
"help.text"
msgid "<item type=\"input\">=ERFC.PRECISE(1)</item> returns 0.157299."
msgstr "<item type=\"input\">=ERFC.PRECISE(1)</item> 返回 0.157299。"
@@ -29415,14 +27861,13 @@ msgctxt ""
"04060115.xhp\n"
"bm_id3152927\n"
"help.text"
-msgid "<bookmark_value>GESTEP function</bookmark_value><bookmark_value>numbers;greater than or equal to</bookmark_value>"
-msgstr "<bookmark_value>GESTEP 函数</bookmark_value><bookmark_value>数字; 大于或等于</bookmark_value>"
+msgid "<bookmark_value>GESTEP function</bookmark_value> <bookmark_value>numbers;greater than or equal to</bookmark_value>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3152927\n"
-"150\n"
"help.text"
msgid "GESTEP"
msgstr "GESTEP"
@@ -29431,7 +27876,6 @@ msgstr "GESTEP"
msgctxt ""
"04060115.xhp\n"
"par_id3150763\n"
-"151\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_GESTEP\">The result is 1 if <item type=\"literal\">Number</item> is greater than or equal to <item type=\"literal\">Step</item>.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_GESTEP\"> 如果 <item type=\"literal\">Number</item> 大于或等于 <item type=\"literal\">Step</item>,则结果为 1。</ahelp>"
@@ -29440,7 +27884,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_GESTEP\"> 如果 <item type=\"literal\">Number
msgctxt ""
"04060115.xhp\n"
"hd_id3150879\n"
-"152\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -29449,7 +27892,6 @@ msgstr "语法"
msgctxt ""
"04060115.xhp\n"
"par_id3145212\n"
-"153\n"
"help.text"
msgid "GESTEP(Number; Step)"
msgstr "GESTEP(Number; Step)"
@@ -29458,7 +27900,6 @@ msgstr "GESTEP(Number; Step)"
msgctxt ""
"04060115.xhp\n"
"hd_id3153275\n"
-"154\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -29467,7 +27908,6 @@ msgstr "示例"
msgctxt ""
"04060115.xhp\n"
"par_id3156132\n"
-"155\n"
"help.text"
msgid "<item type=\"input\">=GESTEP(5;1)</item> returns 1."
msgstr "<item type=\"input\">=GESTEP(5;1)</item> 返回 1。"
@@ -29477,14 +27917,13 @@ msgctxt ""
"04060115.xhp\n"
"bm_id3147276\n"
"help.text"
-msgid "<bookmark_value>HEX2BIN function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into binary numbers</bookmark_value>"
-msgstr "<bookmark_value>HEX2BIN 函数</bookmark_value><bookmark_value>转换; 十六进制数值, 二进制数值</bookmark_value>"
+msgid "<bookmark_value>HEX2BIN function</bookmark_value> <bookmark_value>converting;hexadecimal numbers, into binary numbers</bookmark_value>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3147276\n"
-"79\n"
"help.text"
msgid "HEX2BIN"
msgstr "HEX2BIN"
@@ -29493,7 +27932,6 @@ msgstr "HEX2BIN"
msgctxt ""
"04060115.xhp\n"
"par_id3150258\n"
-"80\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_HEX2BIN\">The result is the binary number for the hexadecimal number entered.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_HEX2BIN\">结果是与输入的十六进制数相对应的二进制数。</ahelp>"
@@ -29502,7 +27940,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_HEX2BIN\">结果是与输入的十六进制数
msgctxt ""
"04060115.xhp\n"
"hd_id3156117\n"
-"81\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -29511,7 +27948,6 @@ msgstr "语法"
msgctxt ""
"04060115.xhp\n"
"par_id3155847\n"
-"82\n"
"help.text"
msgid "HEX2BIN(Number; Places)"
msgstr "HEX2BIN(数值; 位)"
@@ -29520,7 +27956,6 @@ msgstr "HEX2BIN(数值; 位)"
msgctxt ""
"04060115.xhp\n"
"par_id3152810\n"
-"83\n"
"help.text"
msgid "<emph>Number</emph> is a hexadecimal number or a string that represents a hexadecimal number. It 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>数值</emph> 是代表一个十六进制值的十六进制数字或字符串。它最多可有10位。最高位是符号位,随后的各个位是其数 值。负数作为二进制补码输入。"
@@ -29529,7 +27964,6 @@ msgstr "<emph>数值</emph> 是代表一个十六进制值的十六进制数字
msgctxt ""
"04060115.xhp\n"
"par_id3153758\n"
-"84\n"
"help.text"
msgid "<emph>Places</emph> is the number of places to be output."
msgstr "<emph>位</emph> 是要输出的位数。"
@@ -29538,7 +27972,6 @@ msgstr "<emph>位</emph> 是要输出的位数。"
msgctxt ""
"04060115.xhp\n"
"hd_id3154052\n"
-"85\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -29547,7 +27980,6 @@ msgstr "示例"
msgctxt ""
"04060115.xhp\n"
"par_id3156002\n"
-"86\n"
"help.text"
msgid "<item type=\"input\">=HEX2BIN(\"6a\";8)</item> returns 01101010."
msgstr "<item type=\"input\">=HEX2BIN(\"6a\";8)</item> 返回 01101010。"
@@ -29557,14 +27989,13 @@ msgctxt ""
"04060115.xhp\n"
"bm_id3154742\n"
"help.text"
-msgid "<bookmark_value>HEX2DEC function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into decimal numbers</bookmark_value>"
-msgstr "<bookmark_value>HEX2DEC 函数</bookmark_value><bookmark_value>转换; 十六进制数值, 十进制数值</bookmark_value>"
+msgid "<bookmark_value>HEX2DEC function</bookmark_value> <bookmark_value>converting;hexadecimal numbers, into decimal numbers</bookmark_value>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3154742\n"
-"87\n"
"help.text"
msgid "HEX2DEC"
msgstr "HEX2DEC"
@@ -29573,7 +28004,6 @@ msgstr "HEX2DEC"
msgctxt ""
"04060115.xhp\n"
"par_id3153626\n"
-"88\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_HEX2DEC\">The result is the decimal number for the hexadecimal number entered.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_HEX2DEC\">结果是与输入的十六进制数相对应的十进制数。</ahelp>"
@@ -29582,7 +28012,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_HEX2DEC\">结果是与输入的十六进制数
msgctxt ""
"04060115.xhp\n"
"hd_id3143233\n"
-"89\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -29591,7 +28020,6 @@ msgstr "语法"
msgctxt ""
"04060115.xhp\n"
"par_id3149293\n"
-"90\n"
"help.text"
msgid "HEX2DEC(Number)"
msgstr "HEX2DEC(数值)"
@@ -29600,7 +28028,6 @@ msgstr "HEX2DEC(数值)"
msgctxt ""
"04060115.xhp\n"
"par_id3159176\n"
-"91\n"
"help.text"
msgid "<emph>Number</emph> is a hexadecimal number or a string that represents a hexadecimal number. It 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>数值</emph> 是代表一个十六进制值的十六进制数字或字符串。它最多可有10位。最高位是符号位,随后的各个位是其数 值。负数作为二进制补码输入。"
@@ -29609,7 +28036,6 @@ msgstr "<emph>数值</emph> 是代表一个十六进制值的十六进制数字
msgctxt ""
"04060115.xhp\n"
"hd_id3154304\n"
-"92\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -29618,7 +28044,6 @@ msgstr "示例"
msgctxt ""
"04060115.xhp\n"
"par_id3146093\n"
-"93\n"
"help.text"
msgid "<item type=\"input\">=HEX2DEC(\"6a\")</item> returns 106."
msgstr "<item type=\"input\">=HEX2DEC(\"6a\")</item> 返回 106。"
@@ -29628,14 +28053,13 @@ msgctxt ""
"04060115.xhp\n"
"bm_id3149750\n"
"help.text"
-msgid "<bookmark_value>HEX2OCT function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into octal numbers</bookmark_value>"
-msgstr "<bookmark_value>HEX2OCT 函数</bookmark_value><bookmark_value>转换; 十六进制数值, 八进制数值</bookmark_value>"
+msgid "<bookmark_value>HEX2OCT function</bookmark_value> <bookmark_value>converting;hexadecimal numbers, into octal numbers</bookmark_value>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3149750\n"
-"94\n"
"help.text"
msgid "HEX2OCT"
msgstr "HEX2OCT"
@@ -29644,7 +28068,6 @@ msgstr "HEX2OCT"
msgctxt ""
"04060115.xhp\n"
"par_id3153983\n"
-"95\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_HEX2OCT\">The result is the octal number for the hexadecimal number entered.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_HEX2OCT\">结果是与输入的十六进制数相对应的八进制数。</ahelp>"
@@ -29653,7 +28076,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_HEX2OCT\">结果是与输入的十六进制数
msgctxt ""
"04060115.xhp\n"
"hd_id3145660\n"
-"96\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -29662,7 +28084,6 @@ msgstr "语法"
msgctxt ""
"04060115.xhp\n"
"par_id3151170\n"
-"97\n"
"help.text"
msgid "HEX2OCT(Number; Places)"
msgstr "HEX2OCT(数值; 位)"
@@ -29671,7 +28092,6 @@ msgstr "HEX2OCT(数值; 位)"
msgctxt ""
"04060115.xhp\n"
"par_id3152795\n"
-"98\n"
"help.text"
msgid "<emph>Number</emph> is a hexadecimal number or a string that represents a hexadecimal number. It 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>数值</emph> 是代表一个十六进制值的十六进制数字或字符串。它最多可有10位。最高位是符号位,随后的各个位是其数 值。负数作为二进制补码输入。"
@@ -29680,7 +28100,6 @@ msgstr "<emph>数值</emph> 是代表一个十六进制值的十六进制数字
msgctxt ""
"04060115.xhp\n"
"par_id3149204\n"
-"99\n"
"help.text"
msgid "<emph>Places</emph> is the number of places to be output."
msgstr "<emph>位</emph> 是要输出的位数。"
@@ -29689,7 +28108,6 @@ msgstr "<emph>位</emph> 是要输出的位数。"
msgctxt ""
"04060115.xhp\n"
"hd_id3153901\n"
-"100\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -29698,7 +28116,6 @@ msgstr "示例"
msgctxt ""
"04060115.xhp\n"
"par_id3159341\n"
-"101\n"
"help.text"
msgid "<item type=\"input\">=HEX2OCT(\"6a\";4)</item> returns 0152."
msgstr "<item type=\"input\">=HEX2OCT(\"6a\";4)</item> 返回 0152。"
@@ -29723,7 +28140,6 @@ msgstr "<bookmark_value>分析函数中的虚数</bookmark_value><bookmark_value
msgctxt ""
"04060116.xhp\n"
"hd_id3154659\n"
-"1\n"
"help.text"
msgid "<variable id=\"head_addin_analysis_two\"><link href=\"text/scalc/01/04060116.xhp\" name=\"Add-in Functions, List of Analysis Functions Part Two\">Add-in Functions, List of Analysis Functions Part Two</link></variable>"
msgstr ""
@@ -29740,7 +28156,6 @@ msgstr "<bookmark_value>IMABS 函数</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3154959\n"
-"44\n"
"help.text"
msgid "IMABS"
msgstr "IMABS"
@@ -29749,7 +28164,6 @@ msgstr "IMABS"
msgctxt ""
"04060116.xhp\n"
"par_id3149895\n"
-"45\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMABS\">The result is the absolute value of a complex number.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMABS\">结果是一个复数的绝对值。</ahelp>"
@@ -29758,7 +28172,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_IMABS\">结果是一个复数的绝对值。</
msgctxt ""
"04060116.xhp\n"
"hd_id3155382\n"
-"46\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -29767,7 +28180,6 @@ msgstr "语法"
msgctxt ""
"04060116.xhp\n"
"par_id3151302\n"
-"47\n"
"help.text"
msgid "IMABS(\"ComplexNumber\")"
msgstr "IMABS(\"ComplexNumber\")"
@@ -29776,7 +28188,6 @@ msgstr "IMABS(\"ComplexNumber\")"
msgctxt ""
"04060116.xhp\n"
"par_id3153974\n"
-"48\n"
"help.text"
msgid "<variable id=\"complex\"><emph>ComplexNumber</emph> is a complex number that is entered in the form \"x+yi\" or \"x+yj\".</variable>"
msgstr "<variable id=\"complex\"><emph>ComplexNumber</emph> 是一个以 \"x+yi\" 或 \"x+yj\" 形式输入的复数。</variable>"
@@ -29785,7 +28196,6 @@ msgstr "<variable id=\"complex\"><emph>ComplexNumber</emph> 是一个以 \"x+yi\
msgctxt ""
"04060116.xhp\n"
"hd_id3149697\n"
-"49\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -29794,7 +28204,6 @@ msgstr "示例"
msgctxt ""
"04060116.xhp\n"
"par_id3143222\n"
-"50\n"
"help.text"
msgid "<item type=\"input\">=IMABS(\"5+12j\")</item> returns 13."
msgstr "<item type=\"input\">=IMABS(\"5+12j\")</item> 返回 13。"
@@ -29811,7 +28220,6 @@ msgstr "<bookmark_value>IMAGINARY 函数</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3145357\n"
-"51\n"
"help.text"
msgid "IMAGINARY"
msgstr "IMAGINARY"
@@ -29820,7 +28228,6 @@ msgstr "IMAGINARY"
msgctxt ""
"04060116.xhp\n"
"par_id3146965\n"
-"52\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMAGINARY\">The result is the imaginary coefficient of a complex number.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMAGINARY\">结果是一个复数的虚系数。</ahelp>"
@@ -29829,7 +28236,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_IMAGINARY\">结果是一个复数的虚系数
msgctxt ""
"04060116.xhp\n"
"hd_id3153555\n"
-"53\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -29838,7 +28244,6 @@ msgstr "语法"
msgctxt ""
"04060116.xhp\n"
"par_id3155522\n"
-"54\n"
"help.text"
msgid "IMAGINARY(\"ComplexNumber\")"
msgstr "IMAGINARY(\"ComplexNumber\")"
@@ -29847,7 +28252,6 @@ msgstr "IMAGINARY(\"ComplexNumber\")"
msgctxt ""
"04060116.xhp\n"
"hd_id3151193\n"
-"56\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -29856,7 +28260,6 @@ msgstr "示例"
msgctxt ""
"04060116.xhp\n"
"par_id3155592\n"
-"57\n"
"help.text"
msgid "<item type=\"input\">=IMAGINARY(\"4+3j\")</item> returns 3."
msgstr "<item type=\"input\">=IMAGINARY(\"4+3j\")</item> 返回 3。"
@@ -29873,7 +28276,6 @@ msgstr "<bookmark_value>IMPOWER 函数</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3146106\n"
-"58\n"
"help.text"
msgid "IMPOWER"
msgstr "IMPOWER"
@@ -29882,7 +28284,6 @@ msgstr "IMPOWER"
msgctxt ""
"04060116.xhp\n"
"par_id3147245\n"
-"59\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMPOWER\">The result is the <emph>ComplexNumber</emph> raised to the power of <emph>Number</emph>.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMPOWER\">返回<emph>复数</emph>的<emph>数字</emph>次幂。</ahelp>"
@@ -29891,7 +28292,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_IMPOWER\">返回<emph>复数</emph>的<emph>
msgctxt ""
"04060116.xhp\n"
"hd_id3150954\n"
-"60\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -29900,7 +28300,6 @@ msgstr "语法"
msgctxt ""
"04060116.xhp\n"
"par_id3147501\n"
-"61\n"
"help.text"
msgid "IMPOWER(\"ComplexNumber\"; Number)"
msgstr "IMPOWER(复数; 数字)"
@@ -29909,7 +28308,6 @@ msgstr "IMPOWER(复数; 数字)"
msgctxt ""
"04060116.xhp\n"
"par_id3155743\n"
-"63\n"
"help.text"
msgid "<emph>Number</emph> is the exponent."
msgstr "<emph>数字</emph> 是“指数”。"
@@ -29918,7 +28316,6 @@ msgstr "<emph>数字</emph> 是“指数”。"
msgctxt ""
"04060116.xhp\n"
"hd_id3149048\n"
-"64\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -29927,7 +28324,6 @@ msgstr "示例"
msgctxt ""
"04060116.xhp\n"
"par_id3151393\n"
-"65\n"
"help.text"
msgid "<item type=\"input\">=IMPOWER(\"2+3i\";2)</item> returns -5+12i."
msgstr "<item type=\"input\">=IMPOWER(\"2+3i\";2)</item> 返回 -5+12i。"
@@ -29944,7 +28340,6 @@ msgstr "<bookmark_value>IMARGUMENT 函数</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3148748\n"
-"66\n"
"help.text"
msgid "IMARGUMENT"
msgstr "IMARGUMENT"
@@ -29953,7 +28348,6 @@ msgstr "IMARGUMENT"
msgctxt ""
"04060116.xhp\n"
"par_id3151341\n"
-"67\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMARGUMENT\">The result is the argument (the phi angle) of a complex number.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMARGUMENT\">结果为复数的幅度(phi 角度)。</ahelp>"
@@ -29962,7 +28356,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_IMARGUMENT\">结果为复数的幅度(phi
msgctxt ""
"04060116.xhp\n"
"hd_id3150533\n"
-"68\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -29971,7 +28364,6 @@ msgstr "语法"
msgctxt ""
"04060116.xhp\n"
"par_id3156402\n"
-"69\n"
"help.text"
msgid "IMARGUMENT(\"ComplexNumber\")"
msgstr "IMARGUMENT(\"ComplexNumber\")"
@@ -29980,7 +28372,6 @@ msgstr "IMARGUMENT(\"ComplexNumber\")"
msgctxt ""
"04060116.xhp\n"
"hd_id3153019\n"
-"71\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -29989,7 +28380,6 @@ msgstr "示例"
msgctxt ""
"04060116.xhp\n"
"par_id3159125\n"
-"72\n"
"help.text"
msgid "<item type=\"input\">=IMARGUMENT(\"3+4j\")</item> returns 0.927295."
msgstr "<item type=\"input\">=IMARGUMENT(\"3+4j\")</item> 返回 0.927295。"
@@ -30006,7 +28396,6 @@ msgstr "<bookmark_value>IMDIV 函数</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3150024\n"
-"80\n"
"help.text"
msgid "IMDIV"
msgstr "IMDIV"
@@ -30015,7 +28404,6 @@ msgstr "IMDIV"
msgctxt ""
"04060116.xhp\n"
"par_id3145825\n"
-"81\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMDIV\">The result is the division of two complex numbers.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMDIV\">结果是两个复数的商。</ahelp>"
@@ -30024,7 +28412,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_IMDIV\">结果是两个复数的商。</ahelp>
msgctxt ""
"04060116.xhp\n"
"hd_id3150465\n"
-"82\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -30033,7 +28420,6 @@ msgstr "语法"
msgctxt ""
"04060116.xhp\n"
"par_id3146942\n"
-"83\n"
"help.text"
msgid "IMDIV(\"Numerator\"; \"Denominator\")"
msgstr "IMDIV(\"Numerator\"; \"Denominator\")"
@@ -30042,7 +28428,6 @@ msgstr "IMDIV(\"Numerator\"; \"Denominator\")"
msgctxt ""
"04060116.xhp\n"
"par_id3150741\n"
-"84\n"
"help.text"
msgid "<emph>Numerator</emph>, <emph>Denominator</emph> are complex numbers that are entered in the form \"x+yi\" or \"x+yj\"."
msgstr "<emph>Numerator</emph>, <emph>Denominator</emph> 是以 \"x+yi\" 或 \"x+yj\" 形式输入的复数。"
@@ -30051,7 +28436,6 @@ msgstr "<emph>Numerator</emph>, <emph>Denominator</emph> 是以 \"x+yi\" 或 \"x
msgctxt ""
"04060116.xhp\n"
"hd_id3151229\n"
-"85\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -30060,7 +28444,6 @@ msgstr "示例"
msgctxt ""
"04060116.xhp\n"
"par_id3148440\n"
-"86\n"
"help.text"
msgid "<item type=\"input\">=IMDIV(\"-238+240i\";\"10+24i\")</item> returns 5+12i."
msgstr "<item type=\"input\">=IMDIV(\"-238+240i\";\"10+24i\")</item> 返回 5+12i。"
@@ -30077,7 +28460,6 @@ msgstr "<bookmark_value>IMEXP 函数</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3153039\n"
-"87\n"
"help.text"
msgid "IMEXP"
msgstr "IMEXP"
@@ -30086,7 +28468,6 @@ msgstr "IMEXP"
msgctxt ""
"04060116.xhp\n"
"par_id3144741\n"
-"88\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMEXP\">The result is the power of e and the complex number.</ahelp> The constant e has a value of approximately 2.71828182845904."
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMEXP\">结果是 e 的幂和复数。</ahelp>常数 e 的值约为 2.71828182845904。"
@@ -30095,7 +28476,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_IMEXP\">结果是 e 的幂和复数。</ahelp>
msgctxt ""
"04060116.xhp\n"
"hd_id3145591\n"
-"89\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -30104,7 +28484,6 @@ msgstr "语法"
msgctxt ""
"04060116.xhp\n"
"par_id3154810\n"
-"90\n"
"help.text"
msgid "IMEXP(\"ComplexNumber\")"
msgstr "IMEXP(\"ComplexNumber\")"
@@ -30113,7 +28492,6 @@ msgstr "IMEXP(\"ComplexNumber\")"
msgctxt ""
"04060116.xhp\n"
"hd_id3148581\n"
-"92\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -30122,7 +28500,6 @@ msgstr "示例"
msgctxt ""
"04060116.xhp\n"
"par_id3149253\n"
-"93\n"
"help.text"
msgid "<item type=\"input\">=IMEXP(\"1+j\") </item>returns 1.47+2.29j (rounded)."
msgstr "<item type=\"input\">=IMEXP(\"1+j\") </item> 返回 1.47+2.29j(舍入值)。"
@@ -30139,7 +28516,6 @@ msgstr "<bookmark_value>IMCONJUGATE 函数</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3149955\n"
-"94\n"
"help.text"
msgid "IMCONJUGATE"
msgstr "IMCONJUGATE"
@@ -30148,7 +28524,6 @@ msgstr "IMCONJUGATE"
msgctxt ""
"04060116.xhp\n"
"par_id3155263\n"
-"95\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMCONJUGATE\">The result is the conjugated complex complement to a complex number.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMCONJUGATE\"> 结果是一个复数的共轭复数。</ahelp>"
@@ -30157,7 +28532,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_IMCONJUGATE\"> 结果是一个复数的共轭
msgctxt ""
"04060116.xhp\n"
"hd_id3148750\n"
-"96\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -30166,7 +28540,6 @@ msgstr "语法"
msgctxt ""
"04060116.xhp\n"
"par_id3153082\n"
-"97\n"
"help.text"
msgid "IMCONJUGATE(\"ComplexNumber\")"
msgstr "IMCONJUGATE(\"ComplexNumber\")"
@@ -30175,7 +28548,6 @@ msgstr "IMCONJUGATE(\"ComplexNumber\")"
msgctxt ""
"04060116.xhp\n"
"hd_id3153326\n"
-"99\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -30184,7 +28556,6 @@ msgstr "示例"
msgctxt ""
"04060116.xhp\n"
"par_id3149688\n"
-"100\n"
"help.text"
msgid "<item type=\"input\">=IMCONJUGATE(\"1+j\")</item> returns 1-j."
msgstr "<item type=\"input\">=IMCONJUGATE(\"1+j\")</item> 返回 1-j。"
@@ -30201,7 +28572,6 @@ msgstr "<bookmark_value>IMLN 函数</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3150898\n"
-"101\n"
"help.text"
msgid "IMLN"
msgstr "IMLN"
@@ -30210,7 +28580,6 @@ msgstr "IMLN"
msgctxt ""
"04060116.xhp\n"
"par_id3146853\n"
-"102\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMLN\">The result is the natural logarithm (to the base e) of a complex number.</ahelp> The constant e has a value of approximately 2.71828182845904."
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMLN\">结果是复数以 e 为底的自然对数。</ahelp>常数 e 的值约为 2.71828182845904。"
@@ -30219,7 +28588,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_IMLN\">结果是复数以 e 为底的自然对
msgctxt ""
"04060116.xhp\n"
"hd_id3150008\n"
-"103\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -30228,7 +28596,6 @@ msgstr "语法"
msgctxt ""
"04060116.xhp\n"
"par_id3155954\n"
-"104\n"
"help.text"
msgid "IMLN(\"ComplexNumber\")"
msgstr "IMLN(\"ComplexNumber\")"
@@ -30237,7 +28604,6 @@ msgstr "IMLN(\"ComplexNumber\")"
msgctxt ""
"04060116.xhp\n"
"hd_id3153565\n"
-"106\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -30246,7 +28612,6 @@ msgstr "示例"
msgctxt ""
"04060116.xhp\n"
"par_id3153736\n"
-"107\n"
"help.text"
msgid "<item type=\"input\">=IMLN(\"1+j\")</item> returns 0.35+0.79j (rounded)."
msgstr "<item type=\"input\">=IMLN(\"1+j\")</item> 返回 0.35+0.79j(舍入值)。"
@@ -30263,7 +28628,6 @@ msgstr "<bookmark_value>IMLOG10 函数</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3155929\n"
-"108\n"
"help.text"
msgid "IMLOG10"
msgstr "IMLOG10"
@@ -30272,7 +28636,6 @@ msgstr "IMLOG10"
msgctxt ""
"04060116.xhp\n"
"par_id3149882\n"
-"109\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMLOG10\">The result is the common logarithm (to the base 10) of a complex number.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMLOG10\">结果是一个复数的常用对数(以 10 为底)。</ahelp>"
@@ -30281,7 +28644,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_IMLOG10\">结果是一个复数的常用对数
msgctxt ""
"04060116.xhp\n"
"hd_id3154327\n"
-"110\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -30290,7 +28652,6 @@ msgstr "语法"
msgctxt ""
"04060116.xhp\n"
"par_id3150128\n"
-"111\n"
"help.text"
msgid "IMLOG10(\"ComplexNumber\")"
msgstr "IMLOG10(\"ComplexNumber\")"
@@ -30299,7 +28660,6 @@ msgstr "IMLOG10(\"ComplexNumber\")"
msgctxt ""
"04060116.xhp\n"
"hd_id3149003\n"
-"113\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -30308,7 +28668,6 @@ msgstr "示例"
msgctxt ""
"04060116.xhp\n"
"par_id3151021\n"
-"114\n"
"help.text"
msgid "<item type=\"input\">=IMLOG10(\"1+j\")</item> returns 0.15+0.34j (rounded)."
msgstr "<item type=\"input\">=IMLOG10(\"1+j\")</item> 返回 0.15+0.34j(舍入值)。"
@@ -30325,7 +28684,6 @@ msgstr "<bookmark_value>IMLOG2 函数</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3155623\n"
-"115\n"
"help.text"
msgid "IMLOG2"
msgstr "IMLOG2"
@@ -30334,7 +28692,6 @@ msgstr "IMLOG2"
msgctxt ""
"04060116.xhp\n"
"par_id3150932\n"
-"116\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMLOG2\">The result is the binary logarithm of a complex number.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMLOG2\">结果为复数的二进制对数。</ahelp>"
@@ -30343,7 +28700,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_IMLOG2\">结果为复数的二进制对数。<
msgctxt ""
"04060116.xhp\n"
"hd_id3153046\n"
-"117\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -30352,7 +28708,6 @@ msgstr "语法"
msgctxt ""
"04060116.xhp\n"
"par_id3145355\n"
-"118\n"
"help.text"
msgid "IMLOG2(\"ComplexNumber\")"
msgstr "IMLOG2(\"ComplexNumber\")"
@@ -30361,7 +28716,6 @@ msgstr "IMLOG2(\"ComplexNumber\")"
msgctxt ""
"04060116.xhp\n"
"hd_id3148768\n"
-"120\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -30370,7 +28724,6 @@ msgstr "示例"
msgctxt ""
"04060116.xhp\n"
"par_id3149536\n"
-"121\n"
"help.text"
msgid "<item type=\"input\">=IMLOG2(\"1+j\")</item> returns 0.50+1.13j (rounded)."
msgstr "<item type=\"input\">=IMLOG2(\"1+j\")</item> 返回 0.50+1.13j(舍入值)。"
@@ -30387,7 +28740,6 @@ msgstr "<bookmark_value>IMPRODUCT 函数</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3145626\n"
-"122\n"
"help.text"
msgid "IMPRODUCT"
msgstr "IMPRODUCT"
@@ -30396,7 +28748,6 @@ msgstr "IMPRODUCT"
msgctxt ""
"04060116.xhp\n"
"par_id3153545\n"
-"123\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMPRODUCT\">The result is the product of up to 29 complex numbers.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMPRODUCT\">结果为多个复数(最多为 29 个)的乘积。</ahelp>"
@@ -30405,7 +28756,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_IMPRODUCT\">结果为多个复数(最多为
msgctxt ""
"04060116.xhp\n"
"hd_id3149388\n"
-"124\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -30414,7 +28764,6 @@ msgstr "语法"
msgctxt ""
"04060116.xhp\n"
"par_id3149027\n"
-"125\n"
"help.text"
msgid "IMPRODUCT(\"ComplexNumber\"; \"ComplexNumber1\"; ...)"
msgstr "IMPRODUCT(\"ComplexNumber\"; \"ComplexNumber1\"; ...)"
@@ -30423,7 +28772,6 @@ msgstr "IMPRODUCT(\"ComplexNumber\"; \"ComplexNumber1\"; ...)"
msgctxt ""
"04060116.xhp\n"
"hd_id3153228\n"
-"127\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -30432,7 +28780,6 @@ msgstr "示例"
msgctxt ""
"04060116.xhp\n"
"par_id3155815\n"
-"128\n"
"help.text"
msgid "<item type=\"input\">=IMPRODUCT(\"3+4j\";\"5-3j\")</item> returns 27+11j."
msgstr "<item type=\"input\">=IMPRODUCT(\"3+4j\";\"5-3j\")</item> 返回 27+11j。"
@@ -30449,7 +28796,6 @@ msgstr "<bookmark_value>IMREAL 函数</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3147539\n"
-"129\n"
"help.text"
msgid "IMREAL"
msgstr "IMREAL"
@@ -30458,7 +28804,6 @@ msgstr "IMREAL"
msgctxt ""
"04060116.xhp\n"
"par_id3155372\n"
-"130\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMREAL\">The result is the real coefficient of a complex number.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMREAL\">结果是一个复数的实部。</ahelp>"
@@ -30467,7 +28812,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_IMREAL\">结果是一个复数的实部。</ah
msgctxt ""
"04060116.xhp\n"
"hd_id3154951\n"
-"131\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -30476,7 +28820,6 @@ msgstr "语法"
msgctxt ""
"04060116.xhp\n"
"par_id3153927\n"
-"132\n"
"help.text"
msgid "IMREAL(\"ComplexNumber\")"
msgstr "IMREAL(\"ComplexNumber\")"
@@ -30485,7 +28828,6 @@ msgstr "IMREAL(\"ComplexNumber\")"
msgctxt ""
"04060116.xhp\n"
"hd_id3155409\n"
-"134\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -30494,7 +28836,6 @@ msgstr "示例"
msgctxt ""
"04060116.xhp\n"
"par_id3155986\n"
-"135\n"
"help.text"
msgid "<item type=\"input\">=IMREAL(\"1+3j\")</item> returns 1."
msgstr "<item type=\"input\">=IMREAL(\"1+3j\")</item> 返回 1。"
@@ -30511,7 +28852,6 @@ msgstr "<bookmark_value>IMSUB 函数</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3163826\n"
-"143\n"
"help.text"
msgid "IMSUB"
msgstr "IMSUB"
@@ -30520,7 +28860,6 @@ msgstr "IMSUB"
msgctxt ""
"04060116.xhp\n"
"par_id3149277\n"
-"144\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMSUB\">The result is the subtraction of two complex numbers.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSUB\">结果是两个复数的差。</ahelp>"
@@ -30529,7 +28868,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSUB\">结果是两个复数的差。</ahelp>
msgctxt ""
"04060116.xhp\n"
"hd_id3149264\n"
-"145\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -30538,7 +28876,6 @@ msgstr "语法"
msgctxt ""
"04060116.xhp\n"
"par_id3149710\n"
-"146\n"
"help.text"
msgid "IMSUB(\"ComplexNumber1\"; \"ComplexNumber2\")"
msgstr "IMSUB(\"ComplexNumber1\"; \"ComplexNumber2\")"
@@ -30547,7 +28884,6 @@ msgstr "IMSUB(\"ComplexNumber1\"; \"ComplexNumber2\")"
msgctxt ""
"04060116.xhp\n"
"hd_id3155833\n"
-"148\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -30556,7 +28892,6 @@ msgstr "示例"
msgctxt ""
"04060116.xhp\n"
"par_id3150963\n"
-"149\n"
"help.text"
msgid "<item type=\"input\">=IMSUB(\"13+4j\";\"5+3j\")</item> returns 8+j."
msgstr "<item type=\"input\">=IMSUB(\"13+4j\";\"5+3j\")</item> 返回 8+j。"
@@ -30573,7 +28908,6 @@ msgstr "<bookmark_value>IMSUM 函数</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3156312\n"
-"150\n"
"help.text"
msgid "IMSUM"
msgstr "IMSUM"
@@ -30582,7 +28916,6 @@ msgstr "IMSUM"
msgctxt ""
"04060116.xhp\n"
"par_id3153215\n"
-"151\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMSUM\">The result is the sum of up to 29 complex numbers.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSUM\">结果为多个复数(最多为 29 个)的和。</ahelp>"
@@ -30591,7 +28924,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSUM\">结果为多个复数(最多为 29
msgctxt ""
"04060116.xhp\n"
"hd_id3156095\n"
-"152\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -30600,7 +28932,6 @@ msgstr "语法"
msgctxt ""
"04060116.xhp\n"
"par_id3152930\n"
-"153\n"
"help.text"
msgid "IMSUM(\"ComplexNumber1\"; \"ComplexNumber2\"; ...)"
msgstr "IMSUM(\"ComplexNumber1\"; \"ComplexNumber2\"; ...)"
@@ -30609,7 +28940,6 @@ msgstr "IMSUM(\"ComplexNumber1\"; \"ComplexNumber2\"; ...)"
msgctxt ""
"04060116.xhp\n"
"hd_id3154640\n"
-"155\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -30618,7 +28948,6 @@ msgstr "示例"
msgctxt ""
"04060116.xhp\n"
"par_id3147081\n"
-"156\n"
"help.text"
msgid "<item type=\"input\">=IMSUM(\"13+4j\";\"5+3j\")</item> returns 18+7j."
msgstr "<item type=\"input\">=IMSUM(\"13+4j\";\"5+3j\")</item> 返回 18+7j。"
@@ -30635,7 +28964,6 @@ msgstr "<bookmark_value>IMSQRT 函数</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3147570\n"
-"167\n"
"help.text"
msgid "IMSQRT"
msgstr "IMSQRT"
@@ -30644,7 +28972,6 @@ msgstr "IMSQRT"
msgctxt ""
"04060116.xhp\n"
"par_id3156131\n"
-"168\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMSQRT\">The result is the square root of a complex number.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSQRT\"> 计算一个复数的平方根。</ahelp>"
@@ -30653,7 +28980,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSQRT\"> 计算一个复数的平方根。</a
msgctxt ""
"04060116.xhp\n"
"hd_id3145202\n"
-"169\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -30662,7 +28988,6 @@ msgstr "语法"
msgctxt ""
"04060116.xhp\n"
"par_id3150760\n"
-"170\n"
"help.text"
msgid "IMSQRT(\"ComplexNumber\")"
msgstr "IMSQRT(\"ComplexNumber\")"
@@ -30671,7 +28996,6 @@ msgstr "IMSQRT(\"ComplexNumber\")"
msgctxt ""
"04060116.xhp\n"
"hd_id3147268\n"
-"172\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -30680,7 +29004,6 @@ msgstr "示例"
msgctxt ""
"04060116.xhp\n"
"par_id3152807\n"
-"173\n"
"help.text"
msgid "<item type=\"input\">=IMSQRT(\"3+4i\")</item> returns 2+1i."
msgstr "<item type=\"input\">=IMSQRT(\"3+4i\")</item> 返回 2+1i。"
@@ -30697,7 +29020,6 @@ msgstr "<bookmark_value>COMPLEX 函数</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3154054\n"
-"157\n"
"help.text"
msgid "COMPLEX"
msgstr "COMPLEX"
@@ -30706,7 +29028,6 @@ msgstr "COMPLEX"
msgctxt ""
"04060116.xhp\n"
"par_id3156111\n"
-"158\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_COMPLEX\">The result is a complex number which is returned from a real coefficient and an imaginary coefficient.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_COMPLEX\"> 将实系数和虚系数转换成复数形式。</ahelp>"
@@ -30715,7 +29036,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_COMPLEX\"> 将实系数和虚系数转换成
msgctxt ""
"04060116.xhp\n"
"hd_id3154744\n"
-"159\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -30724,7 +29044,6 @@ msgstr "语法"
msgctxt ""
"04060116.xhp\n"
"par_id3155999\n"
-"160\n"
"help.text"
msgid "COMPLEX(RealNum; INum; Suffix)"
msgstr "COMPLEX(RealNum; INum; Suffix)"
@@ -30733,7 +29052,6 @@ msgstr "COMPLEX(RealNum; INum; Suffix)"
msgctxt ""
"04060116.xhp\n"
"par_id3153626\n"
-"161\n"
"help.text"
msgid "<emph>RealNum</emph> is the real coefficient of the complex number."
msgstr "<emph>RealNum</emph> 是复数中的实系数。"
@@ -30742,7 +29060,6 @@ msgstr "<emph>RealNum</emph> 是复数中的实系数。"
msgctxt ""
"04060116.xhp\n"
"par_id3149135\n"
-"162\n"
"help.text"
msgid "<emph>INum</emph> is the imaginary coefficient of the complex number."
msgstr "<emph>INum</emph> 是复数中的虚系数。"
@@ -30751,7 +29068,6 @@ msgstr "<emph>INum</emph> 是复数中的虚系数。"
msgctxt ""
"04060116.xhp\n"
"par_id3155849\n"
-"163\n"
"help.text"
msgid "<emph>Suffix</emph> is a list of options, \"i\" or \"j\"."
msgstr "<emph>Suffix</emph> 为选项列表, \"i\" 或 \"j\"。"
@@ -30760,7 +29076,6 @@ msgstr "<emph>Suffix</emph> 为选项列表, \"i\" 或 \"j\"。"
msgctxt ""
"04060116.xhp\n"
"hd_id3145659\n"
-"164\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -30769,7 +29084,6 @@ msgstr "示例"
msgctxt ""
"04060116.xhp\n"
"par_id3143229\n"
-"165\n"
"help.text"
msgid "<item type=\"input\">=COMPLEX(3;4;\"j\")</item> returns 3+4j."
msgstr "<item type=\"input\">=COMPLEX(3;4;\"j\")</item> 返回 3+4j。"
@@ -30786,7 +29100,6 @@ msgstr "<bookmark_value>OCT2BIN 函数</bookmark_value><bookmark_value>转换;
msgctxt ""
"04060116.xhp\n"
"hd_id3155103\n"
-"217\n"
"help.text"
msgid "OCT2BIN"
msgstr "OCT2BIN"
@@ -30795,7 +29108,6 @@ msgstr "OCT2BIN"
msgctxt ""
"04060116.xhp\n"
"par_id3146898\n"
-"218\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2BIN\">The result is the binary number for the octal number entered.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2BIN\"> 结果是输入的八进制数对应的二进制数。</ahelp>"
@@ -30804,7 +29116,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2BIN\"> 结果是输入的八进制数对
msgctxt ""
"04060116.xhp\n"
"hd_id3146088\n"
-"219\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -30813,7 +29124,6 @@ msgstr "语法"
msgctxt ""
"04060116.xhp\n"
"par_id3154303\n"
-"220\n"
"help.text"
msgid "OCT2BIN(Number; Places)"
msgstr "OCT2BIN(Number; Places)"
@@ -30822,7 +29132,6 @@ msgstr "OCT2BIN(Number; Places)"
msgctxt ""
"04060116.xhp\n"
"par_id3156013\n"
-"221\n"
"help.text"
msgid "<emph>Number</emph> is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
msgstr "<emph>Number</emph>是八进制数。该数最多可有10位。最高位是符号位,随后的各位便是该数值。负数作为二进制补码输入。"
@@ -30831,7 +29140,6 @@ msgstr "<emph>Number</emph>是八进制数。该数最多可有10位。最高位
msgctxt ""
"04060116.xhp\n"
"par_id3153984\n"
-"222\n"
"help.text"
msgid "<emph>Places</emph> is the number of places to be output."
msgstr "<emph>Places</emph> 是要输出的位数。"
@@ -30840,7 +29148,6 @@ msgstr "<emph>Places</emph> 是要输出的位数。"
msgctxt ""
"04060116.xhp\n"
"hd_id3147493\n"
-"223\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -30849,7 +29156,6 @@ msgstr "示例"
msgctxt ""
"04060116.xhp\n"
"par_id3147260\n"
-"224\n"
"help.text"
msgid "<item type=\"input\">=OCT2BIN(3;3)</item> returns 011."
msgstr "<item type=\"input\">=OCT2BIN(3;3)</item> 返回 011。"
@@ -30866,7 +29172,6 @@ msgstr "<bookmark_value>OCT2DEC 函数</bookmark_value><bookmark_value>转换;
msgctxt ""
"04060116.xhp\n"
"hd_id3152791\n"
-"225\n"
"help.text"
msgid "OCT2DEC"
msgstr "OCT2DEC"
@@ -30875,7 +29180,6 @@ msgstr "OCT2DEC"
msgctxt ""
"04060116.xhp\n"
"par_id3149199\n"
-"226\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2DEZ\">The result is the decimal number for the octal number entered.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2DEZ\">结果是输入的八进制数所对应的十进制数。</ahelp>"
@@ -30884,7 +29188,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2DEZ\">结果是输入的八进制数所对
msgctxt ""
"04060116.xhp\n"
"hd_id3159337\n"
-"227\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -30893,7 +29196,6 @@ msgstr "语法"
msgctxt ""
"04060116.xhp\n"
"par_id3153902\n"
-"228\n"
"help.text"
msgid "OCT2DEC(Number)"
msgstr "OCT2DEC(number)"
@@ -30902,7 +29204,6 @@ msgstr "OCT2DEC(number)"
msgctxt ""
"04060116.xhp\n"
"par_id3155326\n"
-"229\n"
"help.text"
msgid "<emph>Number</emph> is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
msgstr "<emph>Number</emph>是八进制数。该数最多可有10位。最高位是符号位,随后的各位便是该数值。负数作为二进制补码输入。"
@@ -30911,7 +29212,6 @@ msgstr "<emph>Number</emph>是八进制数。该数最多可有10位。最高位
msgctxt ""
"04060116.xhp\n"
"hd_id3154698\n"
-"230\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -30920,7 +29220,6 @@ msgstr "示例"
msgctxt ""
"04060116.xhp\n"
"par_id3154930\n"
-"231\n"
"help.text"
msgid "<item type=\"input\">=OCT2DEC(144)</item> returns 100."
msgstr "<item type=\"input\">=OCT2DEC(144)</item> 返回 100。"
@@ -30937,7 +29236,6 @@ msgstr "<bookmark_value>OCT2HEX 函数</bookmark_value><bookmark_value>转换;
msgctxt ""
"04060116.xhp\n"
"hd_id3155391\n"
-"232\n"
"help.text"
msgid "OCT2HEX"
msgstr "OCT2HEX"
@@ -30946,7 +29244,6 @@ msgstr "OCT2HEX"
msgctxt ""
"04060116.xhp\n"
"par_id3148831\n"
-"233\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2HEX\"> The result is the hexadecimal number for the octal number entered.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2HEX\">结果是与输入的八进制数对应的十六进制数。</ahelp>"
@@ -30955,7 +29252,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2HEX\">结果是与输入的八进制数对
msgctxt ""
"04060116.xhp\n"
"hd_id3146988\n"
-"234\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -30964,7 +29260,6 @@ msgstr "语法"
msgctxt ""
"04060116.xhp\n"
"par_id3150523\n"
-"235\n"
"help.text"
msgid "OCT2HEX(Number; Places)"
msgstr "OCT2HEX(Number; Places)"
@@ -30973,7 +29268,6 @@ msgstr "OCT2HEX(Number; Places)"
msgctxt ""
"04060116.xhp\n"
"par_id3159162\n"
-"236\n"
"help.text"
msgid "<emph>Number</emph> is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
msgstr "<emph>Number</emph>是八进制数。该数最多可有10位。最高位是符号位,随后的各位便是该数值。负数作为二进制补码输入。"
@@ -30982,7 +29276,6 @@ msgstr "<emph>Number</emph>是八进制数。该数最多可有10位。最高位
msgctxt ""
"04060116.xhp\n"
"par_id3145420\n"
-"237\n"
"help.text"
msgid "<emph>Places</emph> is the number of places to be output."
msgstr "<emph>Places</emph> 是要输出的位数。"
@@ -30991,7 +29284,6 @@ msgstr "<emph>Places</emph> 是要输出的位数。"
msgctxt ""
"04060116.xhp\n"
"hd_id3150504\n"
-"238\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -31000,7 +29292,6 @@ msgstr "示例"
msgctxt ""
"04060116.xhp\n"
"par_id3148802\n"
-"239\n"
"help.text"
msgid "<item type=\"input\">=OCT2HEX(144;4)</item> returns 0064."
msgstr "<item type=\"input\">=OCT2HEX(144;4)</item> 返回 0064。"
@@ -31017,7 +29308,6 @@ msgstr "<bookmark_value>CONVERT_ADD 函数</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3148446\n"
-"175\n"
"help.text"
msgid "CONVERT_ADD"
msgstr "CONVERT_ADD"
@@ -31026,7 +29316,6 @@ msgstr "CONVERT_ADD"
msgctxt ""
"04060116.xhp\n"
"par_id3154902\n"
-"176\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_CONVERT\">Converts a value from one unit of measure to the corresponding value in another unit of measure.</ahelp> Enter the units of measures directly as text in quotation marks or as a reference. If you enter the units of measure in cells, they must correspond exactly with the following list which is case sensitive: For example, in order to enter a lower case l (for liter) in a cell, enter the apostrophe ' immediately followed by l."
msgstr "<ahelp hid=\"HID_AAI_FUNC_CONVERT\">将一个数字从一种度量单位转换到另一种度量单位。</ahelp>度量单位可以直接用加引号的文本输入,也可以用引用的方式输入。如果在单元格中输入度量单位,则必须与以下列表保持一致,且区分大小写:例如,要在单元格中输入一个小写字母 l(表示“升”),就需要在输入单引号 ' 后立即输入 l,即输入 'l。"
@@ -31035,7 +29324,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_CONVERT\">将一个数字从一种度量单位
msgctxt ""
"04060116.xhp\n"
"par_id3153055\n"
-"177\n"
"help.text"
msgid "Property"
msgstr "属性"
@@ -31044,7 +29332,6 @@ msgstr "属性"
msgctxt ""
"04060116.xhp\n"
"par_id3147234\n"
-"178\n"
"help.text"
msgid "Units"
msgstr "单位"
@@ -31053,7 +29340,6 @@ msgstr "单位"
msgctxt ""
"04060116.xhp\n"
"par_id3147512\n"
-"179\n"
"help.text"
msgid "Weight"
msgstr "线条粗细"
@@ -31062,7 +29348,6 @@ msgstr "线条粗细"
msgctxt ""
"04060116.xhp\n"
"par_id3148476\n"
-"180\n"
"help.text"
msgid "<emph>g</emph>, sg, lbm, <emph>u</emph>, ozm, stone, ton, grain, pweight, hweight, shweight, brton"
msgstr "<emph>g</emph>, sg, lbm, <emph>u</emph>, ozm, stone, ton, grain, pweight, hweight, shweight, brton"
@@ -31071,7 +29356,6 @@ msgstr "<emph>g</emph>, sg, lbm, <emph>u</emph>, ozm, stone, ton, grain, pweight
msgctxt ""
"04060116.xhp\n"
"par_id3155361\n"
-"181\n"
"help.text"
msgid "Length"
msgstr "长度"
@@ -31080,7 +29364,6 @@ msgstr "长度"
msgctxt ""
"04060116.xhp\n"
"par_id3148925\n"
-"182\n"
"help.text"
msgid "<emph>m</emph>, mi, Nmi, in, ft, yd, ang, Pica, ell, <emph>parsec</emph>, <emph>lightyear</emph>, survey_mi"
msgstr "<emph>m</emph>, mi, Nmi, in, ft, yd, ang, Pica, ell, <emph>parsec</emph>, <emph>lightyear</emph>, survey_mi"
@@ -31089,7 +29372,6 @@ msgstr "<emph>m</emph>, mi, Nmi, in, ft, yd, ang, Pica, ell, <emph>parsec</emph>
msgctxt ""
"04060116.xhp\n"
"par_id3158429\n"
-"183\n"
"help.text"
msgid "Time"
msgstr "时间"
@@ -31098,7 +29380,6 @@ msgstr "时间"
msgctxt ""
"04060116.xhp\n"
"par_id3150707\n"
-"184\n"
"help.text"
msgid "yr, day, hr, mn, <emph>sec</emph>, <emph>s</emph>"
msgstr "yr, day, hr, mn, <emph>sec</emph>, <emph>s</emph>"
@@ -31107,7 +29388,6 @@ msgstr "yr, day, hr, mn, <emph>sec</emph>, <emph>s</emph>"
msgctxt ""
"04060116.xhp\n"
"par_id3153238\n"
-"185\n"
"help.text"
msgid "Pressure"
msgstr "压力"
@@ -31116,7 +29396,6 @@ msgstr "压力"
msgctxt ""
"04060116.xhp\n"
"par_id3166437\n"
-"186\n"
"help.text"
msgid "<emph>Pa</emph>, <emph>atm</emph>, <emph>at</emph>, <emph>mmHg</emph>, Torr, psi"
msgstr "<emph>Pa</emph>, <emph>atm</emph>, <emph>at</emph>, <emph>mmHg</emph>, Torr, psi"
@@ -31125,7 +29404,6 @@ msgstr "<emph>Pa</emph>, <emph>atm</emph>, <emph>at</emph>, <emph>mmHg</emph>, T
msgctxt ""
"04060116.xhp\n"
"par_id3152944\n"
-"187\n"
"help.text"
msgid "Force"
msgstr "强制"
@@ -31134,7 +29412,6 @@ msgstr "强制"
msgctxt ""
"04060116.xhp\n"
"par_id3155582\n"
-"188\n"
"help.text"
msgid "<emph>N</emph>, <emph>dyn</emph>, <emph>dy</emph>, lbf, <emph>pond</emph>"
msgstr "<emph>N</emph>, <emph>dyn</emph>, <emph>dy</emph>, lbf, <emph>pond</emph>"
@@ -31143,7 +29420,6 @@ msgstr "<emph>N</emph>, <emph>dyn</emph>, <emph>dy</emph>, lbf, <emph>pond</emph
msgctxt ""
"04060116.xhp\n"
"par_id3153686\n"
-"189\n"
"help.text"
msgid "Energy"
msgstr "能量"
@@ -31152,7 +29428,6 @@ msgstr "能量"
msgctxt ""
"04060116.xhp\n"
"par_id3153386\n"
-"190\n"
"help.text"
msgid "<emph>J</emph>, <emph>e</emph>, <emph>c</emph>, <emph>cal</emph>, <emph>eV</emph>, <emph>ev</emph>, HPh, <emph>Wh</emph>, <emph>wh</emph>, flb, BTU, btu"
msgstr "<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"
@@ -31161,7 +29436,6 @@ msgstr "<emph>J</emph>, <emph>e</emph>, <emph>c</emph>, <emph>cal</emph>, <emph>
msgctxt ""
"04060116.xhp\n"
"par_id3154100\n"
-"191\n"
"help.text"
msgid "Power"
msgstr "功率"
@@ -31170,7 +29444,6 @@ msgstr "功率"
msgctxt ""
"04060116.xhp\n"
"par_id3149915\n"
-"192\n"
"help.text"
msgid "<emph>W</emph>, <emph>w</emph>, HP, PS"
msgstr "<emph>W</emph>, <emph>w</emph>, HP, PS"
@@ -31179,7 +29452,6 @@ msgstr "<emph>W</emph>, <emph>w</emph>, HP, PS"
msgctxt ""
"04060116.xhp\n"
"par_id3148988\n"
-"193\n"
"help.text"
msgid "Field strength"
msgstr "场强"
@@ -31188,7 +29460,6 @@ msgstr "场强"
msgctxt ""
"04060116.xhp\n"
"par_id3148616\n"
-"194\n"
"help.text"
msgid "<emph>T</emph>, <emph>ga</emph>"
msgstr "<emph>T</emph>, <emph>ga</emph>"
@@ -31197,7 +29468,6 @@ msgstr "<emph>T</emph>, <emph>ga</emph>"
msgctxt ""
"04060116.xhp\n"
"par_id3151120\n"
-"195\n"
"help.text"
msgid "Temperature"
msgstr "温度"
@@ -31206,7 +29476,6 @@ msgstr "温度"
msgctxt ""
"04060116.xhp\n"
"par_id3148659\n"
-"196\n"
"help.text"
msgid "C, F, <emph>K</emph>, <emph>kel</emph>, Reau, Rank"
msgstr "C, F, <emph>K</emph>, <emph>kel</emph>, Reau, Rank"
@@ -31215,7 +29484,6 @@ msgstr "C, F, <emph>K</emph>, <emph>kel</emph>, Reau, Rank"
msgctxt ""
"04060116.xhp\n"
"par_id3154610\n"
-"197\n"
"help.text"
msgid "Volume"
msgstr "体积"
@@ -31224,7 +29492,6 @@ msgstr "体积"
msgctxt ""
"04060116.xhp\n"
"par_id3149423\n"
-"198\n"
"help.text"
msgid "<emph>l</emph>, <emph>L</emph>, <emph>lt</emph>, tsp, tbs, oz, cup, pt, us_pt, qt, gal, <emph>m3</emph>, mi3, Nmi3, in3, ft3, yd3, ang3, Pica3, barrel, bushel, regton, Schooner, Middy, Glass"
msgstr "<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"
@@ -31233,7 +29500,6 @@ msgstr "<emph>l</emph>, <emph>L</emph>, <emph>lt</emph>, tsp, tbs, oz, cup, pt,
msgctxt ""
"04060116.xhp\n"
"par_id3149244\n"
-"199\n"
"help.text"
msgid "Area"
msgstr "区域"
@@ -31242,7 +29508,6 @@ msgstr "区域"
msgctxt ""
"04060116.xhp\n"
"par_id3150425\n"
-"200\n"
"help.text"
msgid "<emph>m2</emph>, mi2, Nmi2, in2, ft2, yd2, <emph>ang2</emph>, Pica2, Morgen, <emph>ar</emph>, acre, ha"
msgstr "<emph>m2</emph>, mi2, Nmi2, in2, ft2, yd2, <emph>ang2</emph>, Pica2, Morgen, <emph>ar</emph>, acre, ha"
@@ -31251,7 +29516,6 @@ msgstr "<emph>m2</emph>, mi2, Nmi2, in2, ft2, yd2, <emph>ang2</emph>, Pica2, Mor
msgctxt ""
"04060116.xhp\n"
"par_id3150629\n"
-"201\n"
"help.text"
msgid "Speed"
msgstr "速度"
@@ -31260,7 +29524,6 @@ msgstr "速度"
msgctxt ""
"04060116.xhp\n"
"par_id3159246\n"
-"202\n"
"help.text"
msgid "<emph>m/s</emph>, <emph>m/sec</emph>, m/h, mph, kn, admkn"
msgstr "<emph>m/s</emph>, <emph>m/sec</emph>, m/h, mph, kn, admkn"
@@ -31269,7 +29532,6 @@ msgstr "<emph>m/s</emph>, <emph>m/sec</emph>, m/h, mph, kn, admkn"
msgctxt ""
"04060116.xhp\n"
"par_id3150789\n"
-"201\n"
"help.text"
msgid "Information"
msgstr "信息"
@@ -31278,7 +29540,6 @@ msgstr "信息"
msgctxt ""
"04060116.xhp\n"
"par_id3159899\n"
-"202\n"
"help.text"
msgid "<emph>bit</emph>, <emph>byte</emph>"
msgstr "<emph>bit</emph>, <emph>byte</emph>"
@@ -31287,7 +29548,6 @@ msgstr "<emph>bit</emph>, <emph>byte</emph>"
msgctxt ""
"04060116.xhp\n"
"par_id3143277\n"
-"203\n"
"help.text"
msgid "Units of measure in <emph>bold</emph> can be preceded by a prefix character from the following list:"
msgstr "<emph>粗体</emph>显示的度量单位前可添加下述前缀字符:"
@@ -31296,7 +29556,6 @@ msgstr "<emph>粗体</emph>显示的度量单位前可添加下述前缀字符:"
msgctxt ""
"04060116.xhp\n"
"par_id3148422\n"
-"204\n"
"help.text"
msgid "Prefix"
msgstr "前缀"
@@ -31705,7 +29964,6 @@ msgstr "Yi yobi 1208925819614630000000000"
msgctxt ""
"04060116.xhp\n"
"hd_id3146125\n"
-"209\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -31714,7 +29972,6 @@ msgstr "语法"
msgctxt ""
"04060116.xhp\n"
"par_id3153695\n"
-"210\n"
"help.text"
msgid "CONVERT_ADD(Number; \"FromUnit\"; \"ToUnit\")"
msgstr "CONVERT_ADD(Number; \"FromUnit\"; \"ToUnit\")"
@@ -31723,7 +29980,6 @@ msgstr "CONVERT_ADD(Number; \"FromUnit\"; \"ToUnit\")"
msgctxt ""
"04060116.xhp\n"
"par_id3147522\n"
-"211\n"
"help.text"
msgid "<emph>Number</emph> is the number to be converted."
msgstr "<emph>Number</emph> 是要转换的数值。"
@@ -31732,7 +29988,6 @@ msgstr "<emph>Number</emph> 是要转换的数值。"
msgctxt ""
"04060116.xhp\n"
"par_id3154472\n"
-"212\n"
"help.text"
msgid "<emph>FromUnit</emph> is the unit from which conversion is taking place."
msgstr "<emph>FromUnit</emph> 是换算前的度量单位。"
@@ -31741,7 +29996,6 @@ msgstr "<emph>FromUnit</emph> 是换算前的度量单位。"
msgctxt ""
"04060116.xhp\n"
"par_id3153790\n"
-"213\n"
"help.text"
msgid "<emph>ToUnit</emph> is the unit to which conversion is taking place. Both units must be of the same type."
msgstr "<emph>ToUnit</emph> 是换算后的度量单位。两个单位应是同一类型。"
@@ -31750,7 +30004,6 @@ msgstr "<emph>ToUnit</emph> 是换算后的度量单位。两个单位应是同
msgctxt ""
"04060116.xhp\n"
"hd_id3156270\n"
-"214\n"
"help.text"
msgid "Examples"
msgstr "示例"
@@ -31759,7 +30012,6 @@ msgstr "示例"
msgctxt ""
"04060116.xhp\n"
"par_id3156336\n"
-"215\n"
"help.text"
msgid "<item type=\"input\">=CONVERT_ADD(10;\"HP\";\"PS\") </item>returns, rounded to two decimal places, 10.14. 10 HP equal 10.14 PS."
msgstr "<item type=\"input\">=CONVERT_ADD(10;\"HP\";\"PS\") </item> 返回 10.14,结果保留小数点后两位。10 HP 等于 10.14 PS。"
@@ -31768,7 +30020,6 @@ msgstr "<item type=\"input\">=CONVERT_ADD(10;\"HP\";\"PS\") </item> 返回 10.14
msgctxt ""
"04060116.xhp\n"
"par_id3154834\n"
-"216\n"
"help.text"
msgid "<item type=\"input\">=CONVERT_ADD(10;\"km\";\"mi\") </item>returns, rounded to two decimal places, 6.21. 10 kilometers equal 6.21 miles. The k is the permitted prefix character for the factor 10^3."
msgstr "<item type=\"input\">=CONVERT_ADD(10;\"km\";\"mi\") </item> 返回 6.21,结果保留小数点后两位。10 公里等于 6.21 英里。k 是允许使用的前缀符号,相当于因子 10^3。"
@@ -31785,7 +30036,6 @@ msgstr "<bookmark_value>FACTDOUBLE 函数</bookmark_value><bookmark_value>阶乘
msgctxt ""
"04060116.xhp\n"
"hd_id3147096\n"
-"36\n"
"help.text"
msgid "FACTDOUBLE"
msgstr "FACTDOUBLE"
@@ -31794,7 +30044,6 @@ msgstr "FACTDOUBLE"
msgctxt ""
"04060116.xhp\n"
"par_id3151309\n"
-"37\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_FACTDOUBLE\">Returns the double factorial of a number.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_FACTDOUBLE\">返回以一个数的双阶乘。</ahelp>"
@@ -31803,7 +30052,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_FACTDOUBLE\">返回以一个数的双阶乘。
msgctxt ""
"04060116.xhp\n"
"hd_id3154666\n"
-"38\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -31812,7 +30060,6 @@ msgstr "语法"
msgctxt ""
"04060116.xhp\n"
"par_id3155121\n"
-"39\n"
"help.text"
msgid "FACTDOUBLE(Number)"
msgstr "FACTDOUBLE(Number)"
@@ -31821,7 +30068,6 @@ msgstr "FACTDOUBLE(Number)"
msgctxt ""
"04060116.xhp\n"
"par_id3158440\n"
-"40\n"
"help.text"
msgid "Returns <emph>Number</emph> <emph>!!</emph>, the double factorial of <emph>Number</emph>, where <emph>Number</emph> is an integer greater than or equal to zero."
msgstr "返回 <emph>Number</emph><emph>!!</emph>,<emph>Number</emph> 的双阶乘,其中 <emph>Number</emph> 是大于或等于 0 的整数。"
@@ -31870,7 +30116,6 @@ msgstr "根据定义,FACTDOUBLE(0) 返回 1。"
msgctxt ""
"04060116.xhp\n"
"hd_id3154622\n"
-"42\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -31887,7 +30132,6 @@ msgstr "<item type=\"input\">=FACTDOUBLE(5)</item> 返回 15。"
msgctxt ""
"04060116.xhp\n"
"par_id3154116\n"
-"43\n"
"help.text"
msgid "<item type=\"input\">=FACTDOUBLE(6)</item> returns 48."
msgstr "<item type=\"input\">=FACTDOUBLE(6)</item> 返回 48。"
@@ -31917,7 +30161,6 @@ msgid "Financial Functions Part Three"
msgstr "金融函数第三部分"
#: 04060118.xhp
-#, fuzzy
msgctxt ""
"04060118.xhp\n"
"bm_id3145112\n"
@@ -32382,7 +30625,6 @@ msgid "=ODDLYIELD(\"1999-04-20\";\"1999-06-15\"; \"1998-10-15\"; 0.0375; 99.875;
msgstr "=ODDLYIELD(\"1999-04-20\";\"1999-06-15\"; \"1998-10-15\"; 0.0375; 99.875; 100;2;0) 返回 0.044873 或 4.4873%。"
#: 04060118.xhp
-#, fuzzy
msgctxt ""
"04060118.xhp\n"
"bm_id3148768\n"
@@ -32431,7 +30673,6 @@ msgid "<emph>Cost</emph> is the initial value of an asset."
msgstr "<emph>成本</emph> 是资产的初始价值。"
#: 04060118.xhp
-#, fuzzy
msgctxt ""
"04060118.xhp\n"
"par_id3155369\n"
@@ -32504,7 +30745,6 @@ msgid "<item type=\"input\">=VDB(35000;7500;36;10;20;2)</item> = 8603.80 currenc
msgstr "<item type=\"input\">=VDB(35000;7500;36;10;20;2)</item> = 8603.80 . 在第10和20期的折旧额为8,603.80 ."
#: 04060118.xhp
-#, fuzzy
msgctxt ""
"04060118.xhp\n"
"bm_id3147485\n"
@@ -32841,7 +31081,6 @@ msgid "<item type=\"input\">=XNPV(0.06;B1:B5;A1:A5)</item> returns 323.02."
msgstr "<item type=\"input\">=XNPV(0.06;B1:B5;A1:A5)</item> 返回 323.02。"
#: 04060118.xhp
-#, fuzzy
msgctxt ""
"04060118.xhp\n"
"bm_id3148822\n"
@@ -32938,7 +31177,6 @@ msgid "The interest rate must be 7.46 % so that 7,500 currency units will become
msgstr "为了让一项现值为 7,500 货币单位的投资在 4 年后升值为 10,000 货币单位,年利率必须是 7.46%。"
#: 04060118.xhp
-#, fuzzy
msgctxt ""
"04060118.xhp\n"
"bm_id3154267\n"
@@ -33411,7 +31649,6 @@ msgid "=COUPDAYSNC(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 110."
msgstr "=COUPDAYSNC(\"2001-01-25\"; \"2001-11-15\"; 2; 3) 返回 110。"
#: 04060118.xhp
-#, fuzzy
msgctxt ""
"04060118.xhp\n"
"bm_id3150408\n"
@@ -33500,7 +31737,6 @@ msgid "=COUPDAYBS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 71."
msgstr "=COUPDAYBS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) 返回 71。"
#: 04060118.xhp
-#, fuzzy
msgctxt ""
"04060118.xhp\n"
"bm_id3152957\n"
@@ -33589,7 +31825,6 @@ msgid "=COUPPCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2000-15-11."
msgstr "=COUPPCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) 返回 2000-15-11。"
#: 04060118.xhp
-#, fuzzy
msgctxt ""
"04060118.xhp\n"
"bm_id3150673\n"
@@ -33678,7 +31913,6 @@ msgid "=COUPNUM(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2."
msgstr "=COUPNUM(\"2001-01-25\"; \"2001-11-15\"; 2; 3) 返回 2。"
#: 04060118.xhp
-#, fuzzy
msgctxt ""
"04060118.xhp\n"
"bm_id3149339\n"
@@ -33791,7 +32025,6 @@ msgid "<item type=\"input\">=IPMT(5%;5;7;15000)</item> = -352.97 currency units.
msgstr "<item type=\"input\">=IPMT(5%;5;7;15000)</item> = -352.97 个货币单位。在第五个周期(年份)中应支付的复利为 352.97 个货币单位。"
#: 04060118.xhp
-#, fuzzy
msgctxt ""
"04060118.xhp\n"
"bm_id3151205\n"
@@ -33896,7 +32129,6 @@ msgid "<item type=\"input\">=FV(4%;2;750;2500) </item>= -4234.00 currency units.
msgstr "<item type=\"input\">=FV(4%;2;750;2500) </item>= -4234.00 个货币单位。该笔贷款的最终值是 4234.00 个货币单位。"
#: 04060118.xhp
-#, fuzzy
msgctxt ""
"04060118.xhp\n"
"bm_id3155912\n"
@@ -33977,7 +32209,6 @@ msgid "<item type=\"input\">=FVSCHEDULE(1000;{0.03;0.04;0.05})</item> returns 11
msgstr "<item type=\"input\">=FVSCHEDULE(1000;{0.03;0.04;0.05})</item> 返回 1124.76。"
#: 04060118.xhp
-#, fuzzy
msgctxt ""
"04060118.xhp\n"
"bm_id3156435\n"
@@ -34109,7 +32340,6 @@ msgstr "财务函数第二部分"
msgctxt ""
"04060119.xhp\n"
"hd_id3149052\n"
-"1\n"
"help.text"
msgid "Financial Functions Part Two"
msgstr "财务函数第二部分"
@@ -34118,7 +32348,6 @@ msgstr "财务函数第二部分"
msgctxt ""
"04060119.xhp\n"
"par_id3148742\n"
-"343\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Back to Financial Functions Part One</link>"
msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">返回至财务函数第一部分</link>"
@@ -34127,7 +32356,6 @@ msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Funct
msgctxt ""
"04060119.xhp\n"
"par_id3151341\n"
-"344\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Forward to Financial Functions Part Three</link>"
msgstr "<link href=\"text/scalc/01/04060118.xhp\" name=\"转至财务函数第三部分\">转至财务函数第三部分</link>"
@@ -34144,7 +32372,6 @@ msgstr "<bookmark_value>PPMT 函数</bookmark_value>"
msgctxt ""
"04060119.xhp\n"
"hd_id3150026\n"
-"238\n"
"help.text"
msgid "PPMT"
msgstr "PPMT"
@@ -34153,7 +32380,6 @@ msgstr "PPMT"
msgctxt ""
"04060119.xhp\n"
"par_id3146942\n"
-"239\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_KAPZ\">Returns for a given period the payment on the principal for an investment that is based on periodic and constant payments and a constant interest rate.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KAPZ\">在利率恒定且定期额定支付的条件下,根据规定返回投资在指定期限内的本金支付额。</ahelp>"
@@ -34162,7 +32388,6 @@ msgstr "<ahelp hid=\"HID_FUNC_KAPZ\">在利率恒定且定期额定支付的条
msgctxt ""
"04060119.xhp\n"
"hd_id3150459\n"
-"240\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -34171,7 +32396,6 @@ msgstr "语法"
msgctxt ""
"04060119.xhp\n"
"par_id3146878\n"
-"241\n"
"help.text"
msgid "PPMT(Rate; Period; NPer; PV; FV; Type)"
msgstr "PPMT(Rate; Period; NPer; PV; FV; Type)"
@@ -34180,7 +32404,6 @@ msgstr "PPMT(Rate; Period; NPer; PV; FV; Type)"
msgctxt ""
"04060119.xhp\n"
"par_id3151228\n"
-"242\n"
"help.text"
msgid "<emph>Rate</emph> is the periodic interest rate."
msgstr "<emph>rate</emph> 是指各个周期的利率。"
@@ -34189,7 +32412,6 @@ msgstr "<emph>rate</emph> 是指各个周期的利率。"
msgctxt ""
"04060119.xhp\n"
"par_id3148887\n"
-"243\n"
"help.text"
msgid "<emph>Period</emph> is the amortizement period. P = 1 for the first and P = NPer for the last period."
msgstr "<emph>Period</emph> 分期偿付周期。P = 1 表示第一个周期,P=NPer 表示最后一个周期。"
@@ -34198,7 +32420,6 @@ msgstr "<emph>Period</emph> 分期偿付周期。P = 1 表示第一个周期,P
msgctxt ""
"04060119.xhp\n"
"par_id3148436\n"
-"244\n"
"help.text"
msgid "<emph>NPer</emph> is the total number of periods during which annuity is paid."
msgstr "<emph>NPer</emph> 支付年金的周期总数。"
@@ -34207,7 +32428,6 @@ msgstr "<emph>NPer</emph> 支付年金的周期总数。"
msgctxt ""
"04060119.xhp\n"
"par_id3153035\n"
-"245\n"
"help.text"
msgid "<emph>PV</emph> is the present value in the sequence of payments."
msgstr "<emph>PV</emph> 指的是在一系列定期支付后的目前价值。"
@@ -34216,7 +32436,6 @@ msgstr "<emph>PV</emph> 指的是在一系列定期支付后的目前价值。"
msgctxt ""
"04060119.xhp\n"
"par_id3147474\n"
-"246\n"
"help.text"
msgid "<emph>FV</emph> (optional) is the desired (future) value."
msgstr "<emph>FV</emph>(可选择的)指的是期望值(未来值)。"
@@ -34225,7 +32444,6 @@ msgstr "<emph>FV</emph>(可选择的)指的是期望值(未来值)。"
msgctxt ""
"04060119.xhp\n"
"par_id3144744\n"
-"247\n"
"help.text"
msgid "<emph>Type</emph> (optional) defines the due date. F = 1 for payment at the beginning of a period and F = 0 for payment at the end of a period."
msgstr "<emph>Type</emph> (可选择的)指定到期日期。F=1 表示在周期的开始时到期,F=0 表示在周期结束时到期。"
@@ -34234,7 +32452,6 @@ msgstr "<emph>Type</emph> (可选择的)指定到期日期。F=1 表示在
msgctxt ""
"04060119.xhp\n"
"hd_id3148582\n"
-"248\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -34243,7 +32460,6 @@ msgstr "示例"
msgctxt ""
"04060119.xhp\n"
"par_id3154811\n"
-"249\n"
"help.text"
msgid "How high is the periodic monthly payment at an annual interest rate of 8.75% over a period of 3 years? The cash value is 5,000 currency units and is always paid at the beginning of a period. The future value is 8,000 currency units."
msgstr "如果一项贷款的现值是 5,000 个货币单位,未来值是 8,000 个货币单位,年利率为 8.75%,偿还期限为 3 年,且始终在周期的开始时支付,则定期的月支付额是多少?"
@@ -34252,7 +32468,6 @@ msgstr "如果一项贷款的现值是 5,000 个货币单位,未来值是 8,00
msgctxt ""
"04060119.xhp\n"
"par_id3149246\n"
-"250\n"
"help.text"
msgid "<item type=\"input\">=PPMT(8.75%/12;1;36;5000;8000;1)</item> = -350.99 currency units."
msgstr "<item type=\"input\">=PPMT(8.75%/12;1;36;5000;8000;1)</item> = -350.99 个货币单位。"
@@ -34269,7 +32484,6 @@ msgstr "<bookmark_value>计算; 总分期偿还率</bookmark_value><bookmark_val
msgctxt ""
"04060119.xhp\n"
"hd_id3146139\n"
-"252\n"
"help.text"
msgid "CUMPRINC"
msgstr "CUMPRINC"
@@ -34278,7 +32492,6 @@ msgstr "CUMPRINC"
msgctxt ""
"04060119.xhp\n"
"par_id3150140\n"
-"253\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_KUMKAPITAL\">Returns the cumulative interest paid for an investment period with a constant interest rate.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KUMKAPITAL\">返回固定利率下投资期限内应偿还的累计利息。</ahelp>"
@@ -34287,7 +32500,6 @@ msgstr "<ahelp hid=\"HID_FUNC_KUMKAPITAL\">返回固定利率下投资期限内
msgctxt ""
"04060119.xhp\n"
"hd_id3149188\n"
-"254\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -34296,7 +32508,6 @@ msgstr "语法"
msgctxt ""
"04060119.xhp\n"
"par_id3148733\n"
-"255\n"
"help.text"
msgid "CUMPRINC(Rate; NPer; PV; S; E; Type)"
msgstr "CUMPRINC(Rate; NPer; PV; S; E; Type)"
@@ -34305,7 +32516,6 @@ msgstr "CUMPRINC(Rate; NPer; PV; S; E; Type)"
msgctxt ""
"04060119.xhp\n"
"par_id3150864\n"
-"256\n"
"help.text"
msgid "<emph>Rate</emph> is the periodic interest rate."
msgstr "<emph>rate</emph> 是指各个周期的利率。"
@@ -34314,7 +32524,6 @@ msgstr "<emph>rate</emph> 是指各个周期的利率。"
msgctxt ""
"04060119.xhp\n"
"par_id3166052\n"
-"257\n"
"help.text"
msgid "<emph>NPer</emph> is the payment period with the total number of periods. NPER can also be a non-integer value."
msgstr "<emph>NPer</emph> 是支付周期总数。NPER 可以不是整数值。"
@@ -34323,7 +32532,6 @@ msgstr "<emph>NPer</emph> 是支付周期总数。NPER 可以不是整数值。"
msgctxt ""
"04060119.xhp\n"
"par_id3150007\n"
-"258\n"
"help.text"
msgid "<emph>PV</emph> is the current value in the sequence of payments."
msgstr "<emph>PV</emph> 指的是在一系列定期支付后的当前价值。"
@@ -34332,7 +32540,6 @@ msgstr "<emph>PV</emph> 指的是在一系列定期支付后的当前价值。"
msgctxt ""
"04060119.xhp\n"
"par_id3153112\n"
-"259\n"
"help.text"
msgid "<emph>S</emph> is the first period."
msgstr "<emph>S</emph> 是第一个周期。"
@@ -34341,7 +32548,6 @@ msgstr "<emph>S</emph> 是第一个周期。"
msgctxt ""
"04060119.xhp\n"
"par_id3146847\n"
-"260\n"
"help.text"
msgid "<emph>E</emph> is the last period."
msgstr "<emph>E</emph> 最后一个周期。"
@@ -34350,7 +32556,6 @@ msgstr "<emph>E</emph> 最后一个周期。"
msgctxt ""
"04060119.xhp\n"
"par_id3145167\n"
-"261\n"
"help.text"
msgid "<emph>Type</emph> is the due date of the payment at the beginning or end of each period."
msgstr "<emph>Type</emph> 指定分期支付的到期日期,即是在周期开始时还是周期终止时到期。"
@@ -34359,7 +32564,6 @@ msgstr "<emph>Type</emph> 指定分期支付的到期日期,即是在周期开
msgctxt ""
"04060119.xhp\n"
"hd_id3154502\n"
-"262\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -34368,7 +32572,6 @@ msgstr "示例"
msgctxt ""
"04060119.xhp\n"
"par_id3153570\n"
-"263\n"
"help.text"
msgid "What are the payoff amounts if the yearly interest rate is 5.5% for 36 months? The cash value is 15,000 currency units. The payoff amount is calculated between the 10th and 18th period. The due date is at the end of the period."
msgstr "假设一项贷款的年利率为 5.5% 且必须在 36 个月内完成偿付,那么分期偿还额是多少呢?现金值是 15,000 货币单位。要计算的是在第 10 至第 18 个周期内应支付的分期偿还额。到期日期是周期的结束日期。"
@@ -34377,7 +32580,6 @@ msgstr "假设一项贷款的年利率为 5.5% 且必须在 36 个月内完成
msgctxt ""
"04060119.xhp\n"
"par_id3149884\n"
-"264\n"
"help.text"
msgid "<item type=\"input\">=CUMPRINC(5.5%/12;36;15000;10;18;0)</item> = -3669.74 currency units. The payoff amount between the 10th and 18th period is 3669.74 currency units."
msgstr "<item type=\"input\">=CUMPRINC(5.5%/12;36;15000;10;18;0)</item> = -3669.74 个货币单位。第 10 至第 18 个周期内应支付的分期偿还额为 3669.74 个货币单位。"
@@ -34394,7 +32596,6 @@ msgstr "<bookmark_value>CUMPRINC_ADD 函数</bookmark_value>"
msgctxt ""
"04060119.xhp\n"
"hd_id3150019\n"
-"182\n"
"help.text"
msgid "CUMPRINC_ADD"
msgstr "CUMPRINC_ADD"
@@ -34403,7 +32604,6 @@ msgstr "CUMPRINC_ADD"
msgctxt ""
"04060119.xhp\n"
"par_id3145246\n"
-"183\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_CUMPRINC\"> Calculates the cumulative redemption of a loan in a period.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_CUMPRINC\"> 计算一笔贷款在一段期限内的累计偿还额。</ahelp>"
@@ -34412,7 +32612,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_CUMPRINC\"> 计算一笔贷款在一段期限
msgctxt ""
"04060119.xhp\n"
"hd_id3153047\n"
-"184\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -34421,7 +32620,6 @@ msgstr "语法"
msgctxt ""
"04060119.xhp\n"
"par_id3157970\n"
-"185\n"
"help.text"
msgid "CUMPRINC_ADD(Rate; NPer; PV; StartPeriod; EndPeriod; Type)"
msgstr "CUMPRINC_ADD(Rate; NPer; PV; StartPeriod; EndPeriod; Type)"
@@ -34430,7 +32628,6 @@ msgstr "CUMPRINC_ADD(Rate; NPer; PV; StartPeriod; EndPeriod; Type)"
msgctxt ""
"04060119.xhp\n"
"par_id3145302\n"
-"186\n"
"help.text"
msgid "<emph>Rate</emph> is the interest rate for each period."
msgstr "<emph>Rate</emph> 是指每个周期的利率。"
@@ -34439,7 +32636,6 @@ msgstr "<emph>Rate</emph> 是指每个周期的利率。"
msgctxt ""
"04060119.xhp\n"
"par_id3151017\n"
-"187\n"
"help.text"
msgid "<emph>NPer</emph> is the total number of payment periods. The rate and NPER must refer to the same unit, and thus both be calculated annually or monthly."
msgstr "<emph>NPer</emph> 是支付周期总数。利率和 NPER 的单位必须相同,即两者必须同是按年或按月计算。"
@@ -34448,7 +32644,6 @@ msgstr "<emph>NPer</emph> 是支付周期总数。利率和 NPER 的单位必须
msgctxt ""
"04060119.xhp\n"
"par_id3155620\n"
-"188\n"
"help.text"
msgid "<emph>PV</emph> is the current value."
msgstr "<emph>PV</emph> 指的是当前值。"
@@ -34457,7 +32652,6 @@ msgstr "<emph>PV</emph> 指的是当前值。"
msgctxt ""
"04060119.xhp\n"
"par_id3145352\n"
-"189\n"
"help.text"
msgid "<emph>StartPeriod</emph> is the first payment period for the calculation."
msgstr "<emph>StartPeriod</emph> 是要计算的第一个支付周期。"
@@ -34466,7 +32660,6 @@ msgstr "<emph>StartPeriod</emph> 是要计算的第一个支付周期。"
msgctxt ""
"04060119.xhp\n"
"par_id3157986\n"
-"190\n"
"help.text"
msgid "<emph>EndPeriod</emph> is the last payment period for the calculation."
msgstr "<emph>EndPeriod</emph> 是要计算的最后一个支付周期。"
@@ -34475,7 +32668,6 @@ msgstr "<emph>EndPeriod</emph> 是要计算的最后一个支付周期。"
msgctxt ""
"04060119.xhp\n"
"par_id3150570\n"
-"191\n"
"help.text"
msgid "<emph>Type</emph> is the maturity of a payment at the end of each period (Type = 0) or at the start of the period (Type = 1)."
msgstr "<emph>Type</emph> 到期支付类型:在一个周期的结束时 (Type = 0) 或在一个周期的开始时 (Type = 1)。"
@@ -34484,7 +32676,6 @@ msgstr "<emph>Type</emph> 到期支付类型:在一个周期的结束时 (Type
msgctxt ""
"04060119.xhp\n"
"hd_id3150269\n"
-"192\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -34493,7 +32684,6 @@ msgstr "示例"
msgctxt ""
"04060119.xhp\n"
"par_id3148774\n"
-"193\n"
"help.text"
msgid "The following mortgage loan is taken out on a house:"
msgstr "一幢住房的抵押贷款如下:"
@@ -34502,7 +32692,6 @@ msgstr "一幢住房的抵押贷款如下:"
msgctxt ""
"04060119.xhp\n"
"par_id3150661\n"
-"194\n"
"help.text"
msgid "Rate: 9.00 per cent per annum (9% / 12 = 0.0075), Duration: 30 years (payment periods = 30 * 12 = 360), NPV: 125000 currency units."
msgstr "rate:每年 9。00%(9% / 12 = 0.0075),贷款年限:30 年(还款周期= 30 * 12 = 360),NPV: 125000 个货币单位。"
@@ -34511,7 +32700,6 @@ msgstr "rate:每年 9。00%(9% / 12 = 0.0075),贷款年限:30 年(还款
msgctxt ""
"04060119.xhp\n"
"par_id3155512\n"
-"195\n"
"help.text"
msgid "How much will you repay in the second year of the mortgage (thus from periods 13 to 24)?"
msgstr "在抵押贷款的第二年中(即在第 13 至 24 周期中)要支付多少本金?"
@@ -34520,7 +32708,6 @@ msgstr "在抵押贷款的第二年中(即在第 13 至 24 周期中)要支
msgctxt ""
"04060119.xhp\n"
"par_id3149394\n"
-"196\n"
"help.text"
msgid "<item type=\"input\">=CUMPRINC_ADD(0.0075;360;125000;13;24;0)</item> returns -934.1071"
msgstr "<item type=\"input\">=CUMPRINC_ADD(0.0075;360;125000;13;24;0)</item> 返回 -934.1071"
@@ -34529,7 +32716,6 @@ msgstr "<item type=\"input\">=CUMPRINC_ADD(0.0075;360;125000;13;24;0)</item> 返
msgctxt ""
"04060119.xhp\n"
"par_id3149026\n"
-"197\n"
"help.text"
msgid "In the first month you will be repaying the following amount:"
msgstr "在第一个月偿付的金额为:"
@@ -34538,7 +32724,6 @@ msgstr "在第一个月偿付的金额为:"
msgctxt ""
"04060119.xhp\n"
"par_id3154636\n"
-"198\n"
"help.text"
msgid "<item type=\"input\">=CUMPRINC_ADD(0.0075;360;125000;1;1;0)</item> returns -68.27827"
msgstr "<item type=\"input\">=CUMPRINC_ADD(0.0075;360;125000;1;1;0)</item> 返回 -68.27827"
@@ -34555,7 +32740,6 @@ msgstr "<bookmark_value>计算; 累计利息</bookmark_value><bookmark_value>累
msgctxt ""
"04060119.xhp\n"
"hd_id3155370\n"
-"266\n"
"help.text"
msgid "CUMIPMT"
msgstr "CUMIPMT"
@@ -34564,7 +32748,6 @@ msgstr "CUMIPMT"
msgctxt ""
"04060119.xhp\n"
"par_id3158411\n"
-"267\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_KUMZINSZ\">Calculates the cumulative interest payments, that is, the total interest, for an investment based on a constant interest rate.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KUMZINSZ\">计算累积的利息款项,即一项基于恒定利率的投资的利息总额。</ahelp>"
@@ -34573,7 +32756,6 @@ msgstr "<ahelp hid=\"HID_FUNC_KUMZINSZ\">计算累积的利息款项,即一项
msgctxt ""
"04060119.xhp\n"
"hd_id3155814\n"
-"268\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -34582,7 +32764,6 @@ msgstr "语法"
msgctxt ""
"04060119.xhp\n"
"par_id3147536\n"
-"269\n"
"help.text"
msgid "CUMIPMT(Rate; NPer; PV; S; E; Type)"
msgstr "CUMIPMT(Rate; NPer; PV; S; E; Type)"
@@ -34591,7 +32772,6 @@ msgstr "CUMIPMT(Rate; NPer; PV; S; E; Type)"
msgctxt ""
"04060119.xhp\n"
"par_id3150475\n"
-"270\n"
"help.text"
msgid "<emph>Rate</emph> is the periodic interest rate."
msgstr "<emph>rate</emph> 是指各个周期的利率。"
@@ -34600,7 +32780,6 @@ msgstr "<emph>rate</emph> 是指各个周期的利率。"
msgctxt ""
"04060119.xhp\n"
"par_id3153921\n"
-"271\n"
"help.text"
msgid "<emph>NPer</emph> is the payment period with the total number of periods. NPER can also be a non-integer value."
msgstr "<emph>NPer</emph> 是支付周期总数。NPER 可以不是整数值。"
@@ -34609,7 +32788,6 @@ msgstr "<emph>NPer</emph> 是支付周期总数。NPER 可以不是整数值。"
msgctxt ""
"04060119.xhp\n"
"par_id3153186\n"
-"272\n"
"help.text"
msgid "<emph>PV</emph> is the current value in the sequence of payments."
msgstr "<emph>PV</emph> 指的是在一系列定期支付后的当前价值。"
@@ -34618,7 +32796,6 @@ msgstr "<emph>PV</emph> 指的是在一系列定期支付后的当前价值。"
msgctxt ""
"04060119.xhp\n"
"par_id3156259\n"
-"273\n"
"help.text"
msgid "<emph>S</emph> is the first period."
msgstr "<emph>S</emph> 是第一个周期。"
@@ -34627,7 +32804,6 @@ msgstr "<emph>S</emph> 是第一个周期。"
msgctxt ""
"04060119.xhp\n"
"par_id3155990\n"
-"274\n"
"help.text"
msgid "<emph>E</emph> is the last period."
msgstr "<emph>E</emph> 最后一个周期。"
@@ -34636,7 +32812,6 @@ msgstr "<emph>E</emph> 最后一个周期。"
msgctxt ""
"04060119.xhp\n"
"par_id3149777\n"
-"275\n"
"help.text"
msgid "<emph>Type</emph> is the due date of the payment at the beginning or end of each period."
msgstr "<emph>Type</emph> 指定分期支付的到期日期,即是在周期开始时还是周期终止时到期。"
@@ -34645,7 +32820,6 @@ msgstr "<emph>Type</emph> 指定分期支付的到期日期,即是在周期开
msgctxt ""
"04060119.xhp\n"
"hd_id3153723\n"
-"276\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -34654,7 +32828,6 @@ msgstr "示例"
msgctxt ""
"04060119.xhp\n"
"par_id3147478\n"
-"277\n"
"help.text"
msgid "What are the interest payments at a yearly interest rate of 5.5 %, a payment period of monthly payments for 2 years and a current cash value of 5,000 currency units? The start period is the 4th and the end period is the 6th period. The payment is due at the beginning of each period."
msgstr "如果一项贷款的当前现金值是 5,000 货币单位,年利率为 5.5%,偿还期限为 2 年,按月支付,且分期支付额在一个周期的开始时到期,则第 4 至第 6 个周期内的利息总额是多少?"
@@ -34663,7 +32836,6 @@ msgstr "如果一项贷款的当前现金值是 5,000 货币单位,年利率
msgctxt ""
"04060119.xhp\n"
"par_id3149819\n"
-"278\n"
"help.text"
msgid "<item type=\"input\">=CUMIPMT(5.5%/12;24;5000;4;6;1)</item> = -57.54 currency units. The interest payments for between the 4th and 6th period are 57.54 currency units."
msgstr "<item type=\"input\">=CUMIPMT(5.5%/12;24;5000;4;6;1)</item> = -57.54 个货币单位。第 4 至第 6 个周期内的利息总额是 57.54 个货币单位。"
@@ -34680,7 +32852,6 @@ msgstr "<bookmark_value>CUMIPMT_ADD 函数</bookmark_value>"
msgctxt ""
"04060119.xhp\n"
"hd_id3083280\n"
-"165\n"
"help.text"
msgid "CUMIPMT_ADD"
msgstr "CUMIPMT_ADD"
@@ -34689,7 +32860,6 @@ msgstr "CUMIPMT_ADD"
msgctxt ""
"04060119.xhp\n"
"par_id3152482\n"
-"166\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_CUMIPMT\">Calculates the accumulated interest for a period.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_CUMIPMT\">计算周期内的累计利息。</ahelp>"
@@ -34698,7 +32868,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_CUMIPMT\">计算周期内的累计利息。</a
msgctxt ""
"04060119.xhp\n"
"hd_id3149713\n"
-"167\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -34707,7 +32876,6 @@ msgstr "语法"
msgctxt ""
"04060119.xhp\n"
"par_id3145087\n"
-"168\n"
"help.text"
msgid "CUMIPMT_ADD(Rate; NPer; PV; StartPeriod; EndPeriod; Type)"
msgstr "CUMIPMT_ADD(Rate; NPer; PV; StartPeriod; EndPeriod; Type)"
@@ -34716,7 +32884,6 @@ msgstr "CUMIPMT_ADD(Rate; NPer; PV; StartPeriod; EndPeriod; Type)"
msgctxt ""
"04060119.xhp\n"
"par_id3149277\n"
-"169\n"
"help.text"
msgid "<emph>Rate</emph> is the interest rate for each period."
msgstr "<emph>Rate</emph> 是指每个周期的利率。"
@@ -34725,7 +32892,6 @@ msgstr "<emph>Rate</emph> 是指每个周期的利率。"
msgctxt ""
"04060119.xhp\n"
"par_id3149270\n"
-"170\n"
"help.text"
msgid "<emph>NPer</emph> is the total number of payment periods. The rate and NPER must refer to the same unit, and thus both be calculated annually or monthly."
msgstr "<emph>NPer</emph> 是支付周期总数。利率和 NPER 的单位必须相同,即两者必须同是按年或按月计算。"
@@ -34734,7 +32900,6 @@ msgstr "<emph>NPer</emph> 是支付周期总数。利率和 NPER 的单位必须
msgctxt ""
"04060119.xhp\n"
"par_id3152967\n"
-"171\n"
"help.text"
msgid "<emph>PV</emph> is the current value."
msgstr "<emph>PV</emph> 指的是当前值。"
@@ -34743,7 +32908,6 @@ msgstr "<emph>PV</emph> 指的是当前值。"
msgctxt ""
"04060119.xhp\n"
"par_id3156308\n"
-"172\n"
"help.text"
msgid "<emph>StartPeriod</emph> is the first payment period for the calculation."
msgstr "<emph>StartPeriod</emph> 是要计算的第一个支付周期。"
@@ -34752,7 +32916,6 @@ msgstr "<emph>StartPeriod</emph> 是要计算的第一个支付周期。"
msgctxt ""
"04060119.xhp\n"
"par_id3149453\n"
-"173\n"
"help.text"
msgid "<emph>EndPeriod</emph> is the last payment period for the calculation."
msgstr "<emph>EndPeriod</emph> 是要计算的最后一个支付周期。"
@@ -34761,7 +32924,6 @@ msgstr "<emph>EndPeriod</emph> 是要计算的最后一个支付周期。"
msgctxt ""
"04060119.xhp\n"
"par_id3150962\n"
-"174\n"
"help.text"
msgid "<emph>Type</emph> is the maturity of a payment at the end of each period (Type = 0) or at the start of the period (Type = 1)."
msgstr "<emph>Type</emph> 到期支付类型:在一个周期的结束时 (Type = 0) 或在一个周期的开始时 (Type = 1)。"
@@ -34770,7 +32932,6 @@ msgstr "<emph>Type</emph> 到期支付类型:在一个周期的结束时 (Type
msgctxt ""
"04060119.xhp\n"
"hd_id3152933\n"
-"175\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -34779,7 +32940,6 @@ msgstr "示例"
msgctxt ""
"04060119.xhp\n"
"par_id3156324\n"
-"176\n"
"help.text"
msgid "The following mortgage loan is taken out on a house:"
msgstr "一幢住房的抵押贷款如下:"
@@ -34788,7 +32948,6 @@ msgstr "一幢住房的抵押贷款如下:"
msgctxt ""
"04060119.xhp\n"
"par_id3147566\n"
-"177\n"
"help.text"
msgid "Rate: 9.00 per cent per annum (9% / 12 = 0.0075), Duration: 30 years (NPER = 30 * 12 = 360), Pv: 125000 currency units."
msgstr "利率:每年 9.00% (9% / 12 = 0.0075),期限:30 年 (NPER = 30 * 12 = 360),Pv:125000 个货币单位。"
@@ -34797,7 +32956,6 @@ msgstr "利率:每年 9.00% (9% / 12 = 0.0075),期限:30 年 (NPER = 30 *
msgctxt ""
"04060119.xhp\n"
"par_id3151272\n"
-"178\n"
"help.text"
msgid "How much interest must you pay in the second year of the mortgage (thus from periods 13 to 24)?"
msgstr "在抵押贷款的第二年中(即在第 13 至 24 周期中)要支付多少利息?"
@@ -34806,7 +32964,6 @@ msgstr "在抵押贷款的第二年中(即在第 13 至 24 周期中)要支
msgctxt ""
"04060119.xhp\n"
"par_id3156130\n"
-"179\n"
"help.text"
msgid "<item type=\"input\">=CUMIPMT_ADD(0.0075;360;125000;13;24;0)</item> returns -11135.23."
msgstr "<item type=\"input\">=CUMIPMT_ADD(0.0075;360;125000;13;24;0)</item> 返回 -11135.23。"
@@ -34815,7 +32972,6 @@ msgstr "<item type=\"input\">=CUMIPMT_ADD(0.0075;360;125000;13;24;0)</item> 返
msgctxt ""
"04060119.xhp\n"
"par_id3150764\n"
-"180\n"
"help.text"
msgid "How much interest must you pay in the first month?"
msgstr "第一个月应支付多少利息?"
@@ -34824,7 +32980,6 @@ msgstr "第一个月应支付多少利息?"
msgctxt ""
"04060119.xhp\n"
"par_id3146857\n"
-"181\n"
"help.text"
msgid "<item type=\"input\">=CUMIPMT_ADD(0.0075;360;125000;1;1;0)</item> returns -937.50."
msgstr "<item type=\"input\">=CUMIPMT_ADD(0.0075;360;125000;1;1;0)</item> 返回 -937.50。"
@@ -34841,7 +32996,6 @@ msgstr "<bookmark_value>PRICE 函数</bookmark_value><bookmark_value>价格; 固
msgctxt ""
"04060119.xhp\n"
"hd_id3150878\n"
-"9\n"
"help.text"
msgid "PRICE"
msgstr "PRICE"
@@ -34850,7 +33004,6 @@ msgstr "PRICE"
msgctxt ""
"04060119.xhp\n"
"par_id3153210\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_PRICE\">Calculates the market value of a fixed interest security with a par value of 100 currency units as a function of the forecast yield.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_PRICE\">根据目标收益率计算每股 100 货币单位的定额利息有价证券的市值,预测该有价证券的收益率。</ahelp>"
@@ -34859,7 +33012,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_PRICE\">根据目标收益率计算每股 100
msgctxt ""
"04060119.xhp\n"
"hd_id3154646\n"
-"11\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -34868,7 +33020,6 @@ msgstr "语法"
msgctxt ""
"04060119.xhp\n"
"par_id3152804\n"
-"12\n"
"help.text"
msgid "PRICE(Settlement; Maturity; Rate; Yield; Redemption; Frequency; Basis)"
msgstr "PRICE(Settlement; Maturity; Rate; Yield; Redemption; Frequency; Basis)"
@@ -34877,7 +33028,6 @@ msgstr "PRICE(Settlement; Maturity; Rate; Yield; Redemption; Frequency; Basis)"
msgctxt ""
"04060119.xhp\n"
"par_id3156121\n"
-"13\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr "<emph>Settlement</emph> 指有价证券的购买日期。"
@@ -34886,7 +33036,6 @@ msgstr "<emph>Settlement</emph> 指有价证券的购买日期。"
msgctxt ""
"04060119.xhp\n"
"par_id3149983\n"
-"14\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "<emph>Maturity</emph> 该有价证券的到期日(期满)。"
@@ -34895,7 +33044,6 @@ msgstr "<emph>Maturity</emph> 该有价证券的到期日(期满)。"
msgctxt ""
"04060119.xhp\n"
"par_id3153755\n"
-"15\n"
"help.text"
msgid "<emph>Rate</emph> is the annual nominal rate of interest (coupon interest rate)"
msgstr "<emph>Rate</emph> 指年名义利率(息票利率)"
@@ -34904,7 +33052,6 @@ msgstr "<emph>Rate</emph> 指年名义利率(息票利率)"
msgctxt ""
"04060119.xhp\n"
"par_id3155999\n"
-"16\n"
"help.text"
msgid "<emph>Yield</emph> is the annual yield of the security."
msgstr "<emph>Yield</emph> 有价证券的年收益率。"
@@ -34913,7 +33060,6 @@ msgstr "<emph>Yield</emph> 有价证券的年收益率。"
msgctxt ""
"04060119.xhp\n"
"par_id3156114\n"
-"17\n"
"help.text"
msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
msgstr "<emph>Redemption</emph> 是面额为 100 个货币单位的清偿价格。"
@@ -34922,7 +33068,6 @@ msgstr "<emph>Redemption</emph> 是面额为 100 个货币单位的清偿价格
msgctxt ""
"04060119.xhp\n"
"par_id3155846\n"
-"18\n"
"help.text"
msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
msgstr "<emph>Frequency</emph> 指每年支付利息的次数(1、2 或 4)。"
@@ -34931,7 +33076,6 @@ msgstr "<emph>Frequency</emph> 指每年支付利息的次数(1、2 或 4)
msgctxt ""
"04060119.xhp\n"
"hd_id3153148\n"
-"19\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -34940,7 +33084,6 @@ msgstr "示例"
msgctxt ""
"04060119.xhp\n"
"par_id3150260\n"
-"20\n"
"help.text"
msgid "A security is purchased on 1999-02-15; the maturity date is 2007-11-15. The nominal rate of interest is 5.75%. The yield is 6.5%. The redemption value is 100 currency units. Interest is paid half-yearly (frequency is 2). With calculation on basis 0, the price is as follows:"
msgstr "一有价证券在 1999 年 2 月 15 日买入;2007 年 11 月 15 日到期。名义利率为 5.75%。收益率为 6.5%。偿还价为 100 货币单位。利息每半年支付一次(年付息次数为 2)。以 basis 0 计算,价值如下:"
@@ -34949,7 +33092,6 @@ msgstr "一有价证券在 1999 年 2 月 15 日买入;2007 年 11 月 15 日
msgctxt ""
"04060119.xhp\n"
"par_id3147273\n"
-"21\n"
"help.text"
msgid "=PRICE(\"1999-02-15\"; \"2007-11-15\"; 0.0575; 0.065; 100; 2; 0) returns 95.04287."
msgstr "=PRICE(\"1999-02-15\"; \"2007-11-15\"; 0.0575; 0.065; 100; 2; 0) 返回 95.04287。"
@@ -34966,7 +33108,6 @@ msgstr "<bookmark_value>PRICEDISC 函数</bookmark_value><bookmark_value>价格;
msgctxt ""
"04060119.xhp\n"
"hd_id3151297\n"
-"22\n"
"help.text"
msgid "PRICEDISC"
msgstr "PRICEDISC"
@@ -34975,7 +33116,6 @@ msgstr "PRICEDISC"
msgctxt ""
"04060119.xhp\n"
"par_id3155100\n"
-"23\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_PRICEDISC\">Calculates the price per 100 currency units of par value of a non-interest- bearing security.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_PRICEDISC\">计算面额为 100 货币单位且不付息的有价证券的价格。</ahelp>"
@@ -34984,7 +33124,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_PRICEDISC\">计算面额为 100 货币单位
msgctxt ""
"04060119.xhp\n"
"hd_id3149294\n"
-"24\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -34993,7 +33132,6 @@ msgstr "语法"
msgctxt ""
"04060119.xhp\n"
"par_id3146084\n"
-"25\n"
"help.text"
msgid "PRICEDISC(Settlement; Maturity; Discount; Redemption; Basis)"
msgstr "PRICEDISC(Settlement; Maturity; Discount; Redemption; Basis)"
@@ -35002,7 +33140,6 @@ msgstr "PRICEDISC(Settlement; Maturity; Discount; Redemption; Basis)"
msgctxt ""
"04060119.xhp\n"
"par_id3159179\n"
-"26\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr "<emph>Settlement</emph> 指有价证券的购买日期。"
@@ -35011,7 +33148,6 @@ msgstr "<emph>Settlement</emph> 指有价证券的购买日期。"
msgctxt ""
"04060119.xhp\n"
"par_id3154304\n"
-"27\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "<emph>Maturity</emph> 该有价证券的到期日(期满)。"
@@ -35020,7 +33156,6 @@ msgstr "<emph>Maturity</emph> 该有价证券的到期日(期满)。"
msgctxt ""
"04060119.xhp\n"
"par_id3156014\n"
-"28\n"
"help.text"
msgid "<emph>Discount</emph> is the discount of a security as a percentage."
msgstr "<emph>Discount</emph> 有价证券的贴现率百分比。"
@@ -35029,7 +33164,6 @@ msgstr "<emph>Discount</emph> 有价证券的贴现率百分比。"
msgctxt ""
"04060119.xhp\n"
"par_id3147489\n"
-"29\n"
"help.text"
msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
msgstr "<emph>Redemption</emph> 是面额为 100 个货币单位的清偿价格。"
@@ -35038,7 +33172,6 @@ msgstr "<emph>Redemption</emph> 是面额为 100 个货币单位的清偿价格
msgctxt ""
"04060119.xhp\n"
"hd_id3152794\n"
-"30\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -35047,7 +33180,6 @@ msgstr "示例"
msgctxt ""
"04060119.xhp\n"
"par_id3149198\n"
-"31\n"
"help.text"
msgid "A security is purchased on 1999-02-15; the maturity date is 1999-03-01. Discount in per cent is 5.25%. The redemption value is 100. When calculating on basis 2 the price discount is as follows:"
msgstr "一有价证券于 1999 年 2 月 15 日买入;有效期截止到 1999 年 3 月 1 日。贴现率百分比为 5.25%。偿还价值为 100。以 basis 2 计算价格贴现率如下:"
@@ -35056,7 +33188,6 @@ msgstr "一有价证券于 1999 年 2 月 15 日买入;有效期截止到 1999
msgctxt ""
"04060119.xhp\n"
"par_id3151178\n"
-"32\n"
"help.text"
msgid "=PRICEDISC(\"1999-02-15\"; \"1999-03-01\"; 0.0525; 100; 2) returns 99.79583."
msgstr "=PRICEDISC(\"1999-02-15\"; \"1999-03-01\"; 0.0525; 100; 2) 返回 99.79583。"
@@ -35073,7 +33204,6 @@ msgstr "<bookmark_value>PRICEMAT 函数</bookmark_value><bookmark_value>价格;
msgctxt ""
"04060119.xhp\n"
"hd_id3154693\n"
-"33\n"
"help.text"
msgid "PRICEMAT"
msgstr "PRICEMAT"
@@ -35082,7 +33212,6 @@ msgstr "PRICEMAT"
msgctxt ""
"04060119.xhp\n"
"par_id3153906\n"
-"34\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_PRICEMAT\">Calculates the price per 100 currency units of par value of a security, that pays interest on the maturity date.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_PRICEMAT\">计算面额为 100 货币单位且在到期日期支付利息的有价证券的价格。</ahelp>"
@@ -35091,7 +33220,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_PRICEMAT\">计算面额为 100 货币单位且
msgctxt ""
"04060119.xhp\n"
"hd_id3154933\n"
-"35\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -35100,7 +33228,6 @@ msgstr "语法"
msgctxt ""
"04060119.xhp\n"
"par_id3155393\n"
-"36\n"
"help.text"
msgid "PRICEMAT(Settlement; Maturity; Issue; Rate; Yield; Basis)"
msgstr "PRICEMAT(Settlement; Maturity; Issue; Rate; Yield; Basis)"
@@ -35109,7 +33236,6 @@ msgstr "PRICEMAT(Settlement; Maturity; Issue; Rate; Yield; Basis)"
msgctxt ""
"04060119.xhp\n"
"par_id3153102\n"
-"37\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr "<emph>Settlement</emph> 指有价证券的购买日期。"
@@ -35118,7 +33244,6 @@ msgstr "<emph>Settlement</emph> 指有价证券的购买日期。"
msgctxt ""
"04060119.xhp\n"
"par_id3150530\n"
-"38\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "<emph>Maturity</emph> 该有价证券的到期日(期满)。"
@@ -35127,7 +33252,6 @@ msgstr "<emph>Maturity</emph> 该有价证券的到期日(期满)。"
msgctxt ""
"04060119.xhp\n"
"par_id3149903\n"
-"39\n"
"help.text"
msgid "<emph>Issue</emph> is the date of issue of the security."
msgstr "<emph>Issue</emph> 有价证券的发行日期。"
@@ -35136,7 +33260,6 @@ msgstr "<emph>Issue</emph> 有价证券的发行日期。"
msgctxt ""
"04060119.xhp\n"
"par_id3148828\n"
-"40\n"
"help.text"
msgid "<emph>Rate</emph> is the interest rate of the security on the issue date."
msgstr "<emph>Rate</emph> 有价证券在发行日的利率。"
@@ -35145,7 +33268,6 @@ msgstr "<emph>Rate</emph> 有价证券在发行日的利率。"
msgctxt ""
"04060119.xhp\n"
"par_id3146993\n"
-"41\n"
"help.text"
msgid "<emph>Yield</emph> is the annual yield of the security."
msgstr "<emph>Yield</emph> 有价证券的年收益率。"
@@ -35154,7 +33276,6 @@ msgstr "<emph>Yield</emph> 有价证券的年收益率。"
msgctxt ""
"04060119.xhp\n"
"hd_id3150507\n"
-"42\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -35163,7 +33284,6 @@ msgstr "示例"
msgctxt ""
"04060119.xhp\n"
"par_id3154289\n"
-"43\n"
"help.text"
msgid "Settlement date: February 15 1999, maturity date: April 13 1999, issue date: November 11 1998. Interest rate: 6.1 per cent, yield: 6.1 per cent, basis: 30/360 = 0."
msgstr "成交日: 1999年2月7日,到期日期: 1999年4月13日,发行日期:1998年11月11日。利率:6.1%,收益率:6.1%,基数:30/360 = 0。"
@@ -35172,7 +33292,6 @@ msgstr "成交日: 1999年2月7日,到期日期: 1999年4月13日,发行
msgctxt ""
"04060119.xhp\n"
"par_id3154905\n"
-"44\n"
"help.text"
msgid "The price is calculated as follows:"
msgstr "价格计算如下:"
@@ -35181,7 +33300,6 @@ msgstr "价格计算如下:"
msgctxt ""
"04060119.xhp\n"
"par_id3158409\n"
-"45\n"
"help.text"
msgid "=PRICEMAT(\"1999-02-15\";\"1999-04-13\";\"1998-11-11\"; 0.061; 0.061;0) returns 99.98449888."
msgstr "=PRICEMAT(\"1999-02-15\";\"1999-04-13\";\"1998-11-11\"; 0.061; 0.061;0) 返回 99.98449888。"
@@ -35198,7 +33316,6 @@ msgstr "<bookmark_value>计算; 期限</bookmark_value><bookmark_value>期限;
msgctxt ""
"04060119.xhp\n"
"hd_id3148448\n"
-"280\n"
"help.text"
msgid "DURATION"
msgstr "DURATION"
@@ -35207,7 +33324,6 @@ msgstr "DURATION"
msgctxt ""
"04060119.xhp\n"
"par_id3153056\n"
-"281\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_LAUFZEIT\">Calculates the number of periods required by an investment to attain the desired value.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_LAUFZEIT\">计算获得所需投资回报的周期数。</ahelp>"
@@ -35216,7 +33332,6 @@ msgstr "<ahelp hid=\"HID_FUNC_LAUFZEIT\">计算获得所需投资回报的周期
msgctxt ""
"04060119.xhp\n"
"hd_id3145421\n"
-"282\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -35225,7 +33340,6 @@ msgstr "语法"
msgctxt ""
"04060119.xhp\n"
"par_id3148933\n"
-"283\n"
"help.text"
msgid "DURATION(Rate; PV; FV)"
msgstr "DURATION(Rate; PV; FV)"
@@ -35234,7 +33348,6 @@ msgstr "DURATION(Rate; PV; FV)"
msgctxt ""
"04060119.xhp\n"
"par_id3148801\n"
-"284\n"
"help.text"
msgid "<emph>Rate</emph> is a constant. The interest rate is to be calculated for the entire duration (duration period). The interest rate per period is calculated by dividing the interest rate by the calculated duration. The internal rate for an annuity is to be entered as Rate/12."
msgstr "<emph>Rate</emph> 一个常数,指的是整个周期内的利率。各个周期的利率等于利率除以要计算的周期数。内部年利率为 Rate/12。"
@@ -35243,7 +33356,6 @@ msgstr "<emph>Rate</emph> 一个常数,指的是整个周期内的利率。各
msgctxt ""
"04060119.xhp\n"
"par_id3147239\n"
-"285\n"
"help.text"
msgid "<emph>PV</emph> is the present (current) value. The cash value is the deposit of cash or the current cash value of an allowance in kind. As a deposit value a positive value must be entered; the deposit must not be 0 or <0."
msgstr "<emph>PV</emph> 指的是目前(当前)价值。现金值是现金存款或某种类型折让的当前现金值;存款值必须大于 0,即不可以为 0 或小于 0。"
@@ -35252,7 +33364,6 @@ msgstr "<emph>PV</emph> 指的是目前(当前)价值。现金值是现金
msgctxt ""
"04060119.xhp\n"
"par_id3147515\n"
-"286\n"
"help.text"
msgid "<emph>FV</emph> is the expected value. The future value determines the desired (future) value of the deposit."
msgstr "<emph>FV</emph> 期待值。未来值确定一项投资的期待(未来)值。"
@@ -35261,7 +33372,6 @@ msgstr "<emph>FV</emph> 期待值。未来值确定一项投资的期待(未
msgctxt ""
"04060119.xhp\n"
"hd_id3153579\n"
-"287\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -35270,7 +33380,6 @@ msgstr "示例"
msgctxt ""
"04060119.xhp\n"
"par_id3148480\n"
-"288\n"
"help.text"
msgid "At an interest rate of 4.75%, a cash value of 25,000 currency units and a future value of 1,000,000 currency units, a duration of 79.49 payment periods is returned. The periodic payment is the resulting quotient from the future value and the duration, in this case 1,000,000/79.49=12,850.20."
msgstr "一项投资的现金价值是 25000 个货币单位,利率是 4.75%,要升值为 1000000 个货币单位的未来值就需要 79.49 个支付周期。各个周期的分期支付额等于期待的投资未来值/整个时间期限,即:1000000/79.49 = 12850.20。"
@@ -35287,7 +33396,6 @@ msgstr "<bookmark_value>计算; 线性折旧</bookmark_value><bookmark_value>折
msgctxt ""
"04060119.xhp\n"
"hd_id3148912\n"
-"290\n"
"help.text"
msgid "SLN"
msgstr "SLN"
@@ -35296,7 +33404,6 @@ msgstr "SLN"
msgctxt ""
"04060119.xhp\n"
"par_id3149154\n"
-"291\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_LIA\">Returns the straight-line depreciation of an asset for one period.</ahelp> The amount of the depreciation is constant during the depreciation period."
msgstr "<ahelp hid=\"HID_FUNC_LIA\">返回一个周期内资产的直线折旧额。</ahelp>整个折旧期间内的折旧总额是恒定的。"
@@ -35305,7 +33412,6 @@ msgstr "<ahelp hid=\"HID_FUNC_LIA\">返回一个周期内资产的直线折旧
msgctxt ""
"04060119.xhp\n"
"hd_id3153240\n"
-"292\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -35314,7 +33420,6 @@ msgstr "语法"
msgctxt ""
"04060119.xhp\n"
"par_id3166456\n"
-"293\n"
"help.text"
msgid "SLN(Cost; Salvage; Life)"
msgstr "SLN(Cost; Salvage; Life)"
@@ -35323,7 +33428,6 @@ msgstr "SLN(Cost; Salvage; Life)"
msgctxt ""
"04060119.xhp\n"
"par_id3146955\n"
-"294\n"
"help.text"
msgid "<emph>Cost</emph> is the initial cost of an asset."
msgstr "<emph>Cost</emph> 是资产的购入价。"
@@ -35332,7 +33436,6 @@ msgstr "<emph>Cost</emph> 是资产的购入价。"
msgctxt ""
"04060119.xhp\n"
"par_id3149796\n"
-"295\n"
"help.text"
msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
msgstr "<emph>Salvage</emph> 栏位输入的是资产在折旧(使用)期限终止时的残值。"
@@ -35341,7 +33444,6 @@ msgstr "<emph>Salvage</emph> 栏位输入的是资产在折旧(使用)期限终
msgctxt ""
"04060119.xhp\n"
"par_id3166444\n"
-"296\n"
"help.text"
msgid "<emph>Life</emph> is the depreciation period determining the number of periods in the depreciation of the asset."
msgstr "<emph>Life</emph> 折旧期限确定资产折旧的周期数。"
@@ -35350,7 +33452,6 @@ msgstr "<emph>Life</emph> 折旧期限确定资产折旧的周期数。"
msgctxt ""
"04060119.xhp\n"
"hd_id3155579\n"
-"297\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -35359,7 +33460,6 @@ msgstr "示例"
msgctxt ""
"04060119.xhp\n"
"par_id3154098\n"
-"298\n"
"help.text"
msgid "Office equipment with an initial cost of 50,000 currency units is to be depreciated over 7 years. The value at the end of the depreciation is to be 3,500 currency units."
msgstr "一套初始成本为 50000 货币单位的办公设备的折旧期限为 7 年。7 年后此套办公设备的价值预计为 3500 货币单位。"
@@ -35368,7 +33468,6 @@ msgstr "一套初始成本为 50000 货币单位的办公设备的折旧期限
msgctxt ""
"04060119.xhp\n"
"par_id3153390\n"
-"299\n"
"help.text"
msgid "<item type=\"input\">=SLN(50000;3,500;84)</item> = 553.57 currency units. The periodic monthly depreciation of the office equipment is 553.57 currency units."
msgstr "<item type=\"input\">=SLN(50000;3,500;84)</item> = 553.57 个货币单位。该办公设备的每月折旧额为 553.57 个货币单位。"
@@ -35385,7 +33484,6 @@ msgstr "<bookmark_value>MDURATION 函数</bookmark_value><bookmark_value>Macaule
msgctxt ""
"04060119.xhp\n"
"hd_id3153739\n"
-"217\n"
"help.text"
msgid "MDURATION"
msgstr "MDURATION"
@@ -35394,7 +33492,6 @@ msgstr "MDURATION"
msgctxt ""
"04060119.xhp\n"
"par_id3149923\n"
-"218\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_MDURATION\">Calculates the modified Macauley duration of a fixed interest security in years.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_MDURATION\">计算数年内某一固定利率有价证券的 Macauley 修正期限。</ahelp>"
@@ -35403,7 +33500,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_MDURATION\">计算数年内某一固定利率
msgctxt ""
"04060119.xhp\n"
"hd_id3149964\n"
-"219\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -35412,7 +33508,6 @@ msgstr "语法"
msgctxt ""
"04060119.xhp\n"
"par_id3148987\n"
-"220\n"
"help.text"
msgid "MDURATION(Settlement; Maturity; Coupon; Yield; Frequency; Basis)"
msgstr "MDURATION(Settlement; Maturity; Coupon; Yield; Frequency; Basis)"
@@ -35421,7 +33516,6 @@ msgstr "MDURATION(Settlement; Maturity; Coupon; Yield; Frequency; Basis)"
msgctxt ""
"04060119.xhp\n"
"par_id3148619\n"
-"221\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr "<emph>Settlement</emph> 指有价证券的购买日期。"
@@ -35430,7 +33524,6 @@ msgstr "<emph>Settlement</emph> 指有价证券的购买日期。"
msgctxt ""
"04060119.xhp\n"
"par_id3149805\n"
-"222\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "<emph>Maturity</emph> 该有价证券的到期日(期满)。"
@@ -35439,7 +33532,6 @@ msgstr "<emph>Maturity</emph> 该有价证券的到期日(期满)。"
msgctxt ""
"04060119.xhp\n"
"par_id3154338\n"
-"223\n"
"help.text"
msgid "<emph>Coupon</emph> is the annual nominal rate of interest (coupon interest rate)"
msgstr "<emph>Coupon</emph> 年名义利率(息票利率)。"
@@ -35448,7 +33540,6 @@ msgstr "<emph>Coupon</emph> 年名义利率(息票利率)。"
msgctxt ""
"04060119.xhp\n"
"par_id3148466\n"
-"224\n"
"help.text"
msgid "<emph>Yield</emph> is the annual yield of the security."
msgstr "<emph>Yield</emph> 有价证券的年收益率。"
@@ -35457,7 +33548,6 @@ msgstr "<emph>Yield</emph> 有价证券的年收益率。"
msgctxt ""
"04060119.xhp\n"
"par_id3149423\n"
-"225\n"
"help.text"
msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
msgstr "<emph>Frequency</emph> 指每年支付利息的次数(1、2 或 4)。"
@@ -35466,7 +33556,6 @@ msgstr "<emph>Frequency</emph> 指每年支付利息的次数(1、2 或 4)
msgctxt ""
"04060119.xhp\n"
"hd_id3154602\n"
-"226\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -35475,7 +33564,6 @@ msgstr "示例"
msgctxt ""
"04060119.xhp\n"
"par_id3148652\n"
-"227\n"
"help.text"
msgid "A security is purchased on 2001-01-01; the maturity date is 2006-01-01. The nominal rate of interest is 8%. The yield is 9.0%. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how long is the modified duration?"
msgstr "一有价证券于 2001 年 1 月 1 日买入;有效期截止到 2006 年 1 月 1 日。年息票利率为 8%。年收益率为 9.0%。利息每半年支付一次(年付息的次数为 2)。如果使用日余额利息(基数为 3)计算,修正后周期为多长?"
@@ -35484,7 +33572,6 @@ msgstr "一有价证券于 2001 年 1 月 1 日买入;有效期截止到 2006
msgctxt ""
"04060119.xhp\n"
"par_id3145378\n"
-"228\n"
"help.text"
msgid "=MDURATION(\"2001-01-01\"; \"2006-01-01\"; 0.08; 0.09; 2; 3) returns 4.02 years."
msgstr "=MDURATION(\"2001-01-01\"; \"2006-01-01\"; 0.08; 0.09; 2; 3) 返回 4.02 年。"
@@ -35501,7 +33588,6 @@ msgstr "<bookmark_value>计算;净现值</bookmark_value><bookmark_value>净现
msgctxt ""
"04060119.xhp\n"
"hd_id3149242\n"
-"301\n"
"help.text"
msgid "NPV"
msgstr "NPV"
@@ -35526,7 +33612,6 @@ msgstr ""
msgctxt ""
"04060119.xhp\n"
"hd_id3149937\n"
-"303\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -35535,7 +33620,6 @@ msgstr "语法"
msgctxt ""
"04060119.xhp\n"
"par_id3153321\n"
-"304\n"
"help.text"
msgid "NPV(Rate; Value1; Value2; ...)"
msgstr "NPV(Rate; Value1; Value2; ...)"
@@ -35544,7 +33628,6 @@ msgstr "NPV(Rate; Value1; Value2; ...)"
msgctxt ""
"04060119.xhp\n"
"par_id3150630\n"
-"305\n"
"help.text"
msgid "<emph>Rate</emph> is the discount rate for a period."
msgstr "<emph>Rate</emph> 各个周期的贴现率。"
@@ -35553,7 +33636,6 @@ msgstr "<emph>Rate</emph> 各个周期的贴现率。"
msgctxt ""
"04060119.xhp\n"
"par_id3150427\n"
-"306\n"
"help.text"
msgid "<emph>Value1;...</emph> are up to 30 values, which represent deposits or withdrawals."
msgstr "<emph>Value1;...</emph> 最多有 30 个数值,表示投资额或回收金额。"
@@ -35562,7 +33644,6 @@ msgstr "<emph>Value1;...</emph> 最多有 30 个数值,表示投资额或回
msgctxt ""
"04060119.xhp\n"
"hd_id3153538\n"
-"307\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -35571,7 +33652,6 @@ msgstr "示例"
msgctxt ""
"04060119.xhp\n"
"par_id3154800\n"
-"308\n"
"help.text"
msgid "What is the net present value of periodic payments of 10, 20 and 30 currency units with a discount rate of 8.75%. At time zero the costs were payed as -40 currency units."
msgstr "在贴现率为 8.75% 且定期支付额为 10、20 和 30 个货币单位的情况下,此项投资的净现值是多少?时间为零时所支付的成本为 -40 个货币单位。"
@@ -35580,7 +33660,6 @@ msgstr "在贴现率为 8.75% 且定期支付额为 10、20 和 30 个货币单
msgctxt ""
"04060119.xhp\n"
"par_id3143270\n"
-"309\n"
"help.text"
msgid "<item type=\"input\">=NPV(8.75%;10;20;30)</item> = 49.43 currency units. The net present value is the returned value minus the initial costs of 40 currency units, therefore 9.43 currency units."
msgstr "<item type=\"input\">=NPV(8.75%;10;20;30)</item> = 49.43 个货币单位。净现值等于返回值减去 40 个货币单位的初始成本,因此为 9.43 个货币单位。"
@@ -35597,7 +33676,6 @@ msgstr "<bookmark_value>计算; 名义利率</bookmark_value><bookmark_value>名
msgctxt ""
"04060119.xhp\n"
"hd_id3149484\n"
-"311\n"
"help.text"
msgid "NOMINAL"
msgstr "NOMINAL"
@@ -35606,7 +33684,6 @@ msgstr "NOMINAL"
msgctxt ""
"04060119.xhp\n"
"par_id3149596\n"
-"312\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_NOMINAL\">Calculates the yearly nominal interest rate, given the effective rate and the number of compounding periods per year.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_NOMINAL\">给定每年的实际利率和复利周期后,计算年名义利率。</ahelp>"
@@ -35615,7 +33692,6 @@ msgstr "<ahelp hid=\"HID_FUNC_NOMINAL\">给定每年的实际利率和复利周
msgctxt ""
"04060119.xhp\n"
"hd_id3151252\n"
-"313\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -35624,7 +33700,6 @@ msgstr "语法"
msgctxt ""
"04060119.xhp\n"
"par_id3152769\n"
-"314\n"
"help.text"
msgid "NOMINAL(EffectiveRate; NPerY)"
msgstr "NOMINAL(EffectiveRate; NPerY)"
@@ -35633,7 +33708,6 @@ msgstr "NOMINAL(EffectiveRate; NPerY)"
msgctxt ""
"04060119.xhp\n"
"par_id3147521\n"
-"315\n"
"help.text"
msgid "<emph>EffectiveRate</emph> is the effective interest rate"
msgstr "<emph>EffectiveRate</emph> 有效利率"
@@ -35642,7 +33716,6 @@ msgstr "<emph>EffectiveRate</emph> 有效利率"
msgctxt ""
"04060119.xhp\n"
"par_id3156334\n"
-"316\n"
"help.text"
msgid "<emph>NPerY</emph> is the number of periodic interest payments per year."
msgstr "<emph>NPerY</emph> 每年支付利息的周期数。"
@@ -35651,7 +33724,6 @@ msgstr "<emph>NPerY</emph> 每年支付利息的周期数。"
msgctxt ""
"04060119.xhp\n"
"hd_id3154473\n"
-"317\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -35660,7 +33732,6 @@ msgstr "示例"
msgctxt ""
"04060119.xhp\n"
"par_id3147091\n"
-"318\n"
"help.text"
msgid "What is the nominal interest per year for an effective interest rate of 13.5% if twelve payments are made per year."
msgstr "假设实际利率为13.5%,且每年支付利息的次数为12次。要计算的是年名义利率。"
@@ -35669,7 +33740,6 @@ msgstr "假设实际利率为13.5%,且每年支付利息的次数为12次。
msgctxt ""
"04060119.xhp\n"
"par_id3154831\n"
-"319\n"
"help.text"
msgid "<item type=\"input\">=NOMINAL(13.5%;12)</item> = 12.73%. The nominal interest rate per year is 12.73%."
msgstr "<item type=\"input\">=NOMINAL(13.5%;12)</item> = 12.73%。即年名义利率为 12.73%。"
@@ -35686,7 +33756,6 @@ msgstr "<bookmark_value>NOMINAL_ADD 函数</bookmark_value>"
msgctxt ""
"04060119.xhp\n"
"hd_id3155123\n"
-"229\n"
"help.text"
msgid "NOMINAL_ADD"
msgstr "NOMINAL_ADD"
@@ -35695,7 +33764,6 @@ msgstr "NOMINAL_ADD"
msgctxt ""
"04060119.xhp\n"
"par_id3148671\n"
-"230\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_NOMINAL\">Calculates the annual nominal rate of interest on the basis of the effective rate and the number of interest payments per annum.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_NOMINAL\">根据实际利率和年付息次数计算名义年利率。</ahelp>"
@@ -35704,7 +33772,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_NOMINAL\">根据实际利率和年付息次数
msgctxt ""
"04060119.xhp\n"
"hd_id3155611\n"
-"231\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -35713,7 +33780,6 @@ msgstr "语法"
msgctxt ""
"04060119.xhp\n"
"par_id3156157\n"
-"232\n"
"help.text"
msgid "NOMINAL_ADD(EffectiveRate; NPerY)"
msgstr "NOMINAL_ADD(EffectiveRate; NPerY)"
@@ -35722,7 +33788,6 @@ msgstr "NOMINAL_ADD(EffectiveRate; NPerY)"
msgctxt ""
"04060119.xhp\n"
"par_id3153777\n"
-"233\n"
"help.text"
msgid "<emph>EffectiveRate</emph> is the effective annual rate of interest."
msgstr "<emph>EffectiveRate</emph> 实际年利率。"
@@ -35731,7 +33796,6 @@ msgstr "<emph>EffectiveRate</emph> 实际年利率。"
msgctxt ""
"04060119.xhp\n"
"par_id3150409\n"
-"234\n"
"help.text"
msgid "<emph>NPerY</emph> the number of interest payments per year."
msgstr "<emph>NPerY</emph> 指的是每年支付利息的次数。"
@@ -35740,7 +33804,6 @@ msgstr "<emph>NPerY</emph> 指的是每年支付利息的次数。"
msgctxt ""
"04060119.xhp\n"
"hd_id3146789\n"
-"235\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -35749,7 +33812,6 @@ msgstr "示例"
msgctxt ""
"04060119.xhp\n"
"par_id3145777\n"
-"236\n"
"help.text"
msgid "What is the nominal rate of interest for a 5.3543% effective rate of interest and quarterly payment."
msgstr "实际利率为 5.354% 且每季度付息时,名义利率是多少呢?"
@@ -35758,7 +33820,6 @@ msgstr "实际利率为 5.354% 且每季度付息时,名义利率是多少呢
msgctxt ""
"04060119.xhp\n"
"par_id3156146\n"
-"237\n"
"help.text"
msgid "<item type=\"input\">=NOMINAL_ADD(5.3543%;4)</item> returns 0.0525 or 5.25%."
msgstr "<item type=\"input\">=NOMINAL_ADD(5.3543%;4)</item> 返回 0.0525 或 5.25%。"
@@ -35775,7 +33836,6 @@ msgstr "<bookmark_value>DOLLARFR 函数</bookmark_value><bookmark_value>转换;
msgctxt ""
"04060119.xhp\n"
"hd_id3159087\n"
-"208\n"
"help.text"
msgid "DOLLARFR"
msgstr "DOLLARFR"
@@ -35784,7 +33844,6 @@ msgstr "DOLLARFR"
msgctxt ""
"04060119.xhp\n"
"par_id3150593\n"
-"209\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_DOLLARFR\">Converts a quotation that has been given as a decimal number into a mixed decimal fraction.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_DOLLARFR\">将用小数表示的价格转换成用混合式分数。</ahelp>"
@@ -35793,7 +33852,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_DOLLARFR\">将用小数表示的价格转换
msgctxt ""
"04060119.xhp\n"
"hd_id3151106\n"
-"210\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -35802,7 +33860,6 @@ msgstr "语法"
msgctxt ""
"04060119.xhp\n"
"par_id3152959\n"
-"211\n"
"help.text"
msgid "DOLLARFR(DecimalDollar; Fraction)"
msgstr "DOLLARFR(DecimalDollar; Fraction)"
@@ -35811,7 +33868,6 @@ msgstr "DOLLARFR(DecimalDollar; Fraction)"
msgctxt ""
"04060119.xhp\n"
"par_id3149558\n"
-"212\n"
"help.text"
msgid "<emph>DecimalDollar</emph> is a decimal number."
msgstr "<emph>DecimalDollar</emph> 一个十进制数字。"
@@ -35820,7 +33876,6 @@ msgstr "<emph>DecimalDollar</emph> 一个十进制数字。"
msgctxt ""
"04060119.xhp\n"
"par_id3153672\n"
-"213\n"
"help.text"
msgid "<emph>Fraction</emph> is a whole number that is used as the denominator of the decimal fraction."
msgstr "<emph>Fraction</emph> 用作分数分母的整数。"
@@ -35829,7 +33884,6 @@ msgstr "<emph>Fraction</emph> 用作分数分母的整数。"
msgctxt ""
"04060119.xhp\n"
"hd_id3156274\n"
-"214\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -35838,7 +33892,6 @@ msgstr "示例"
msgctxt ""
"04060119.xhp\n"
"par_id3153795\n"
-"215\n"
"help.text"
msgid "<item type=\"input\">=DOLLARFR(1.125;16)</item> converts into sixteenths. The result is 1.02 for 1 plus 2/16."
msgstr "<item type=\"input\">=DOLLARFR(1.125;16)</item> 转换成分母为 16 的分数。结果为 1.02 即 1 又 2/16。"
@@ -35847,7 +33900,6 @@ msgstr "<item type=\"input\">=DOLLARFR(1.125;16)</item> 转换成分母为 16
msgctxt ""
"04060119.xhp\n"
"par_id3150995\n"
-"216\n"
"help.text"
msgid "<item type=\"input\">=DOLLARFR(1.125;8)</item> converts into eighths. The result is 1.1 for 1 plus 1/8."
msgstr "<item type=\"input\">=DOLLARFR(1.125;8)</item> 转换成分母为 8 的分数。结果为 1.1,即 1 又 1/8。"
@@ -35864,7 +33916,6 @@ msgstr "<bookmark_value>分数; 转换</bookmark_value><bookmark_value>转换;
msgctxt ""
"04060119.xhp\n"
"hd_id3154671\n"
-"199\n"
"help.text"
msgid "DOLLARDE"
msgstr "DOLLARDE"
@@ -35873,7 +33924,6 @@ msgstr "DOLLARDE"
msgctxt ""
"04060119.xhp\n"
"par_id3154418\n"
-"200\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_DOLLARDE\">Converts a quotation that has been given as a decimal fraction into a decimal number.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_DOLLARDE\">将某一用分数表示的价格转换成用小数表示。</ahelp>"
@@ -35882,7 +33932,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_DOLLARDE\">将某一用分数表示的价格
msgctxt ""
"04060119.xhp\n"
"hd_id3146124\n"
-"201\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -35891,7 +33940,6 @@ msgstr "语法"
msgctxt ""
"04060119.xhp\n"
"par_id3150348\n"
-"202\n"
"help.text"
msgid "DOLLARDE(FractionalDollar; Fraction)"
msgstr "DOLLARDE(FractionalDollar; Fraction)"
@@ -35900,7 +33948,6 @@ msgstr "DOLLARDE(FractionalDollar; Fraction)"
msgctxt ""
"04060119.xhp\n"
"par_id3154111\n"
-"203\n"
"help.text"
msgid "<emph>FractionalDollar</emph> is a number given as a decimal fraction."
msgstr "<emph>FractionalDollar</emph> 一个以小数表示的数字。"
@@ -35909,7 +33956,6 @@ msgstr "<emph>FractionalDollar</emph> 一个以小数表示的数字。"
msgctxt ""
"04060119.xhp\n"
"par_id3153695\n"
-"204\n"
"help.text"
msgid "<emph>Fraction</emph> is a whole number that is used as the denominator of the decimal fraction."
msgstr "<emph>Fraction</emph> 用作分数分母的整数。"
@@ -35918,7 +33964,6 @@ msgstr "<emph>Fraction</emph> 用作分数分母的整数。"
msgctxt ""
"04060119.xhp\n"
"hd_id3153884\n"
-"205\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -35927,7 +33972,6 @@ msgstr "示例"
msgctxt ""
"04060119.xhp\n"
"par_id3150941\n"
-"206\n"
"help.text"
msgid "<item type=\"input\">=DOLLARDE(1.02;16)</item> stands for 1 and 2/16. This returns 1.125."
msgstr "<item type=\"input\">=DOLLARDE(1.02;16)</item> 表示 1 又 2/16。返回 1.125。"
@@ -35936,7 +33980,6 @@ msgstr "<item type=\"input\">=DOLLARDE(1.02;16)</item> 表示 1 又 2/16。返
msgctxt ""
"04060119.xhp\n"
"par_id3150830\n"
-"207\n"
"help.text"
msgid "<item type=\"input\">=DOLLARDE(1.1;8)</item> stands for 1 and 1/8. This returns 1.125."
msgstr "<item type=\"input\">=DOLLARDE(1.1;8)</item> 表示 1又1/8。结果为 1.125。"
@@ -35953,7 +33996,6 @@ msgstr "<bookmark_value>计算; 修改的内部收益率</bookmark_value><bookma
msgctxt ""
"04060119.xhp\n"
"hd_id3148974\n"
-"321\n"
"help.text"
msgid "MIRR"
msgstr "MIRR"
@@ -35962,7 +34004,6 @@ msgstr "MIRR"
msgctxt ""
"04060119.xhp\n"
"par_id3155497\n"
-"322\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_QIKV\">Calculates the modified internal rate of return of a series of investments.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_QIKV\">计算一系列投资的修正内部收益率。</ahelp>"
@@ -35971,7 +34012,6 @@ msgstr "<ahelp hid=\"HID_FUNC_QIKV\">计算一系列投资的修正内部收益
msgctxt ""
"04060119.xhp\n"
"hd_id3154354\n"
-"323\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -35980,7 +34020,6 @@ msgstr "语法"
msgctxt ""
"04060119.xhp\n"
"par_id3148399\n"
-"324\n"
"help.text"
msgid "MIRR(Values; Investment; ReinvestRate)"
msgstr "MIRR(Values; Investment; ReinvestRate)"
@@ -35989,7 +34028,6 @@ msgstr "MIRR(Values; Investment; ReinvestRate)"
msgctxt ""
"04060119.xhp\n"
"par_id3155896\n"
-"325\n"
"help.text"
msgid "<emph>Values</emph> corresponds to the array or the cell reference for cells whose content corresponds to the payments."
msgstr "<emph>Values</emph> 对应于内容符合支付金额的单元格的数组或单元格引用。"
@@ -35998,7 +34036,6 @@ msgstr "<emph>Values</emph> 对应于内容符合支付金额的单元格的数
msgctxt ""
"04060119.xhp\n"
"par_id3149998\n"
-"326\n"
"help.text"
msgid "<emph>Investment</emph> is the rate of interest of the investments (the negative values of the array)"
msgstr "<emph>Investment</emph> 投资的利率(数组的负值)"
@@ -36007,7 +34044,6 @@ msgstr "<emph>Investment</emph> 投资的利率(数组的负值)"
msgctxt ""
"04060119.xhp\n"
"par_id3159408\n"
-"327\n"
"help.text"
msgid "<emph>ReinvestRate</emph>:the rate of interest of the reinvestment (the positive values of the array)"
msgstr "<emph>ReinvestRate</emph>:再投资的利率(数组的正值)"
@@ -36016,7 +34052,6 @@ msgstr "<emph>ReinvestRate</emph>:再投资的利率(数组的正值)"
msgctxt ""
"04060119.xhp\n"
"hd_id3154714\n"
-"328\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -36025,7 +34060,6 @@ msgstr "示例"
msgctxt ""
"04060119.xhp\n"
"par_id3147352\n"
-"329\n"
"help.text"
msgid "Assuming a cell content of A1 = <item type=\"input\">-5</item>, A2 = <item type=\"input\">10</item>, A3 = <item type=\"input\">15</item>, and A4 = <item type=\"input\">8</item>, and an investment value of 0.5 and a reinvestment value of 0.1, the result is 94.16%."
msgstr "假设单元格内容为 A1 = <item type=\"input\">-5</item>、A2 = <item type=\"input\">10</item>、A3 = <item type=\"input\">15</item> 和 A4 = <item type=\"input\">8</item>,投资值为 0.5,再投资值为 0.1,则计算的结果为 94.16%。"
@@ -36042,7 +34076,6 @@ msgstr "<bookmark_value>YIELD 函数</bookmark_value><bookmark_value>收益率;
msgctxt ""
"04060119.xhp\n"
"hd_id3149323\n"
-"129\n"
"help.text"
msgid "YIELD"
msgstr "YIELD"
@@ -36051,7 +34084,6 @@ msgstr "YIELD"
msgctxt ""
"04060119.xhp\n"
"par_id3150643\n"
-"130\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_YIELD\">Calculates the yield of a security.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_YIELD\">计算有价证券的收益率。</ahelp>"
@@ -36060,7 +34092,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_YIELD\">计算有价证券的收益率。</ahe
msgctxt ""
"04060119.xhp\n"
"hd_id3149344\n"
-"131\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -36069,7 +34100,6 @@ msgstr "语法"
msgctxt ""
"04060119.xhp\n"
"par_id3149744\n"
-"132\n"
"help.text"
msgid "YIELD(Settlement; Maturity; Rate; Price; Redemption; Frequency; Basis)"
msgstr "YIELD(Settlement; Maturity; Rate; Price; Redemption; Frequency; Basis)"
@@ -36078,7 +34108,6 @@ msgstr "YIELD(Settlement; Maturity; Rate; Price; Redemption; Frequency; Basis)"
msgctxt ""
"04060119.xhp\n"
"par_id3154526\n"
-"133\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr "<emph>Settlement</emph> 指有价证券的购买日期。"
@@ -36087,7 +34116,6 @@ msgstr "<emph>Settlement</emph> 指有价证券的购买日期。"
msgctxt ""
"04060119.xhp\n"
"par_id3153266\n"
-"134\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "<emph>Maturity</emph> 该有价证券的到期日(期满)。"
@@ -36096,7 +34124,6 @@ msgstr "<emph>Maturity</emph> 该有价证券的到期日(期满)。"
msgctxt ""
"04060119.xhp\n"
"par_id3151284\n"
-"135\n"
"help.text"
msgid "<emph>Rate</emph> is the annual rate of interest."
msgstr "<emph>Rate</emph> 是年息利率。"
@@ -36105,7 +34132,6 @@ msgstr "<emph>Rate</emph> 是年息利率。"
msgctxt ""
"04060119.xhp\n"
"par_id3147314\n"
-"136\n"
"help.text"
msgid "<emph>Price</emph> is the price (purchase price) of the security per 100 currency units of par value."
msgstr "<emph>Price</emph> 是面额为 100 货币单位的有价证券买入价。"
@@ -36114,7 +34140,6 @@ msgstr "<emph>Price</emph> 是面额为 100 货币单位的有价证券买入价
msgctxt ""
"04060119.xhp\n"
"par_id3145156\n"
-"137\n"
"help.text"
msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
msgstr "<emph>Redemption</emph> 是面额为 100 个货币单位的清偿价格。"
@@ -36123,7 +34148,6 @@ msgstr "<emph>Redemption</emph> 是面额为 100 个货币单位的清偿价格
msgctxt ""
"04060119.xhp\n"
"par_id3159218\n"
-"138\n"
"help.text"
msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
msgstr "<emph>Frequency</emph> 指每年支付利息的次数(1、2 或 4)。"
@@ -36132,7 +34156,6 @@ msgstr "<emph>Frequency</emph> 指每年支付利息的次数(1、2 或 4)
msgctxt ""
"04060119.xhp\n"
"hd_id3147547\n"
-"139\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -36141,7 +34164,6 @@ msgstr "示例"
msgctxt ""
"04060119.xhp\n"
"par_id3151214\n"
-"140\n"
"help.text"
msgid "A security is purchased on 1999-02-15. It matures on 2007-11-15. The rate of interest is 5.75%. The price is 95.04287 currency units per 100 units of par value, the redemption value is 100 units. Interest is paid half-yearly (frequency = 2) and the basis is 0. How high is the yield?"
msgstr "一有价证券于 1999 年 2 月 15 日买入。到期日为 2007 年 11 月 15 日。利率为 5.75%。实际价格为每 100 个货币单位,面额为 95.04287 货币单位,偿还价格为 100 个货币单位。利息每半年支付一次(利息支付次数 = 2),basis 为 0。收益率为多少?"
@@ -36150,7 +34172,6 @@ msgstr "一有价证券于 1999 年 2 月 15 日买入。到期日为 2007 年 1
msgctxt ""
"04060119.xhp\n"
"par_id3154194\n"
-"141\n"
"help.text"
msgid "=YIELD(\"1999-02-15\"; \"2007-11-15\"; 0.0575 ;95.04287; 100; 2; 0) returns 0.065 or 6.50 per cent."
msgstr "=YIELD(\"1999-02-15\"; \"2007-11-15\"; 0.0575 ;95.04287; 100; 2; 0) 返回 0.065 或 6.50%。"
@@ -36167,7 +34188,6 @@ msgstr "<bookmark_value>YIELDDISC 函数</bookmark_value><bookmark_value>收益
msgctxt ""
"04060119.xhp\n"
"hd_id3150100\n"
-"142\n"
"help.text"
msgid "YIELDDISC"
msgstr "YIELDDISC"
@@ -36176,7 +34196,6 @@ msgstr "YIELDDISC"
msgctxt ""
"04060119.xhp\n"
"par_id3150486\n"
-"143\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_YIELDDISC\">Calculates the annual yield of a non-interest-bearing security.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_YIELDDISC\">计算某一无息有价证券的年收益率。</ahelp>"
@@ -36185,7 +34204,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_YIELDDISC\">计算某一无息有价证券的
msgctxt ""
"04060119.xhp\n"
"hd_id3149171\n"
-"144\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -36194,7 +34212,6 @@ msgstr "语法"
msgctxt ""
"04060119.xhp\n"
"par_id3159191\n"
-"145\n"
"help.text"
msgid "YIELDDISC(Settlement; Maturity; Price; Redemption; Basis)"
msgstr "YIELDDISC(Settlement; Maturity; Price; Redemption; Basis)"
@@ -36203,7 +34220,6 @@ msgstr "YIELDDISC(Settlement; Maturity; Price; Redemption; Basis)"
msgctxt ""
"04060119.xhp\n"
"par_id3150237\n"
-"146\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr "<emph>Settlement</emph> 指有价证券的购买日期。"
@@ -36212,7 +34228,6 @@ msgstr "<emph>Settlement</emph> 指有价证券的购买日期。"
msgctxt ""
"04060119.xhp\n"
"par_id3146924\n"
-"147\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "<emph>Maturity</emph> 该有价证券的到期日(期满)。"
@@ -36221,7 +34236,6 @@ msgstr "<emph>Maturity</emph> 该有价证券的到期日(期满)。"
msgctxt ""
"04060119.xhp\n"
"par_id3151201\n"
-"148\n"
"help.text"
msgid "<emph>Price</emph> is the price (purchase price) of the security per 100 currency units of par value."
msgstr "<emph>Price</emph> 是面额为 100 货币单位的有价证券买入价。"
@@ -36230,7 +34244,6 @@ msgstr "<emph>Price</emph> 是面额为 100 货币单位的有价证券买入价
msgctxt ""
"04060119.xhp\n"
"par_id3156049\n"
-"149\n"
"help.text"
msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
msgstr "<emph>Redemption</emph> 是面额为 100 个货币单位的清偿价格。"
@@ -36239,7 +34252,6 @@ msgstr "<emph>Redemption</emph> 是面额为 100 个货币单位的清偿价格
msgctxt ""
"04060119.xhp\n"
"hd_id3154139\n"
-"150\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -36248,7 +34260,6 @@ msgstr "示例"
msgctxt ""
"04060119.xhp\n"
"par_id3163815\n"
-"151\n"
"help.text"
msgid "A non-interest-bearing security is purchased on 1999-02-15. It matures on 1999-03-01. The price is 99.795 currency units per 100 units of par value, the redemption value is 100 units. The basis is 2. How high is the yield?"
msgstr "贴现有价证券于 1999 年 2 月 15 日买入。到期日为 1999 年 3 月 1 日。实际价格为每 100 个货币单位面额 99.795 个货币单位,偿还价格为 100 个货币单位。basis 为 2。收益率为多少?"
@@ -36257,7 +34268,6 @@ msgstr "贴现有价证券于 1999 年 2 月 15 日买入。到期日为 1999
msgctxt ""
"04060119.xhp\n"
"par_id3155187\n"
-"152\n"
"help.text"
msgid "=YIELDDISC(\"1999-02-15\"; \"1999-03-01\"; 99.795; 100; 2) returns 0.052823 or 5.2823 per cent."
msgstr "=YIELDDISC(\"1999-02-15\"; \"1999-03-01\"; 99.795; 100; 2) 返回 0.052823 或 5.2823%。"
@@ -36274,7 +34284,6 @@ msgstr "<bookmark_value>YIELDMAT 函数</bookmark_value><bookmark_value>收益
msgctxt ""
"04060119.xhp\n"
"hd_id3155140\n"
-"153\n"
"help.text"
msgid "YIELDMAT"
msgstr "YIELDMAT"
@@ -36283,7 +34292,6 @@ msgstr "YIELDMAT"
msgctxt ""
"04060119.xhp\n"
"par_id3151332\n"
-"154\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_YIELDMAT\">Calculates the annual yield of a security, the interest of which is paid on the date of maturity.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_YIELDMAT\">计算到期付息有价证券的年收益率。</ahelp>"
@@ -36292,7 +34300,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_YIELDMAT\">计算到期付息有价证券的
msgctxt ""
"04060119.xhp\n"
"hd_id3159100\n"
-"155\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -36301,7 +34308,6 @@ msgstr "语法"
msgctxt ""
"04060119.xhp\n"
"par_id3159113\n"
-"156\n"
"help.text"
msgid "YIELDMAT(Settlement; Maturity; Issue; Rate; Price; Basis)"
msgstr "YIELDMAT(Settlement; Maturity; Issue; Rate; Price; Basis)"
@@ -36310,7 +34316,6 @@ msgstr "YIELDMAT(Settlement; Maturity; Issue; Rate; Price; Basis)"
msgctxt ""
"04060119.xhp\n"
"par_id3149309\n"
-"157\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr "<emph>Settlement</emph> 指有价证券的购买日期。"
@@ -36319,7 +34324,6 @@ msgstr "<emph>Settlement</emph> 指有价证券的购买日期。"
msgctxt ""
"04060119.xhp\n"
"par_id3151381\n"
-"158\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "<emph>Maturity</emph> 该有价证券的到期日(期满)。"
@@ -36328,7 +34332,6 @@ msgstr "<emph>Maturity</emph> 该有价证券的到期日(期满)。"
msgctxt ""
"04060119.xhp\n"
"par_id3153302\n"
-"159\n"
"help.text"
msgid "<emph>Issue</emph> is the date of issue of the security."
msgstr "<emph>Issue</emph> 有价证券的发行日期。"
@@ -36337,7 +34340,6 @@ msgstr "<emph>Issue</emph> 有价证券的发行日期。"
msgctxt ""
"04060119.xhp\n"
"par_id3147140\n"
-"160\n"
"help.text"
msgid "<emph>Rate</emph> is the interest rate of the security on the issue date."
msgstr "<emph>Rate</emph> 有价证券在发行日的利率。"
@@ -36346,7 +34348,6 @@ msgstr "<emph>Rate</emph> 有价证券在发行日的利率。"
msgctxt ""
"04060119.xhp\n"
"par_id3151067\n"
-"161\n"
"help.text"
msgid "<emph>Price</emph> is the price (purchase price) of the security per 100 currency units of par value."
msgstr "<emph>Price</emph> 是面额为 100 货币单位的有价证券买入价。"
@@ -36355,7 +34356,6 @@ msgstr "<emph>Price</emph> 是面额为 100 货币单位的有价证券买入价
msgctxt ""
"04060119.xhp\n"
"hd_id3155342\n"
-"162\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -36364,7 +34364,6 @@ msgstr "示例"
msgctxt ""
"04060119.xhp\n"
"par_id3163717\n"
-"163\n"
"help.text"
msgid "A security is purchased on 1999-03-15. It matures on 1999-11-03. The issue date was 1998-11-08. The rate of interest is 6.25%, the price is 100.0123 units. The basis is 0. How high is the yield?"
msgstr "一有价证券于 1999 年 3 月 15 日买入。 到期日为 1999 年 11 月 3 日。发行日期为 1998 年 11 月 8 日。利率为 6.25%,实际价格为 100.0123 个货币单位。basis 为 0。收益率为多少?"
@@ -36373,7 +34372,6 @@ msgstr "一有价证券于 1999 年 3 月 15 日买入。 到期日为 1999 年
msgctxt ""
"04060119.xhp\n"
"par_id3155311\n"
-"164\n"
"help.text"
msgid "=YIELDMAT(\"1999-03-15\"; \"1999-11-03\"; \"1998-11-08\"; 0.0625; 100.0123; 0) returns 0.060954 or 6.0954 per cent."
msgstr "=YIELDMAT(\"1999-03-15\"; \"1999-11-03\"; \"1998-11-08\"; 0.0625; 100.0123; 0) 返回 0.060954 或 6.0954%。"
@@ -36390,7 +34388,6 @@ msgstr "<bookmark_value>计算;年金</bookmark_value><bookmark_value>年金</bo
msgctxt ""
"04060119.xhp\n"
"hd_id3149577\n"
-"330\n"
"help.text"
msgid "PMT"
msgstr "PMT"
@@ -36399,7 +34396,6 @@ msgstr "PMT"
msgctxt ""
"04060119.xhp\n"
"par_id3148563\n"
-"331\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_RMZ\">Returns the periodic payment for an annuity with constant interest rates.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_RMZ\">返回利率固定情况下年金的定期支付金额。</ahelp>"
@@ -36408,7 +34404,6 @@ msgstr "<ahelp hid=\"HID_FUNC_RMZ\">返回利率固定情况下年金的定期
msgctxt ""
"04060119.xhp\n"
"hd_id3145257\n"
-"332\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -36417,7 +34412,6 @@ msgstr "语法"
msgctxt ""
"04060119.xhp\n"
"par_id3147278\n"
-"333\n"
"help.text"
msgid "PMT(Rate; NPer; PV; FV; Type)"
msgstr "PMT(Rate; NPer; PV; FV; Type)"
@@ -36426,7 +34420,6 @@ msgstr "PMT(Rate; NPer; PV; FV; Type)"
msgctxt ""
"04060119.xhp\n"
"par_id3147291\n"
-"334\n"
"help.text"
msgid "<emph>Rate</emph> is the periodic interest rate."
msgstr "<emph>rate</emph> 是指各个周期的利率。"
@@ -36435,7 +34428,6 @@ msgstr "<emph>rate</emph> 是指各个周期的利率。"
msgctxt ""
"04060119.xhp\n"
"par_id3148641\n"
-"335\n"
"help.text"
msgid "<emph>NPer</emph> is the number of periods in which annuity is paid."
msgstr "<emph>NPer</emph> 支付年金的周期数。"
@@ -36444,7 +34436,6 @@ msgstr "<emph>NPer</emph> 支付年金的周期数。"
msgctxt ""
"04060119.xhp\n"
"par_id3156360\n"
-"336\n"
"help.text"
msgid "<emph>PV</emph> is the present value (cash value) in a sequence of payments."
msgstr "<emph>PV</emph> 指的是一项投资在一系列定期支付后的目前价值(现金值)。"
@@ -36453,7 +34444,6 @@ msgstr "<emph>PV</emph> 指的是一项投资在一系列定期支付后的目
msgctxt ""
"04060119.xhp\n"
"par_id3154920\n"
-"337\n"
"help.text"
msgid "<emph>FV</emph> (optional) is the desired value (future value) to be reached at the end of the periodic payments."
msgstr "<emph>FV</emph> (可选择的)指的是期望值(未来值),即完成最后一次支付后达到的金额。"
@@ -36462,7 +34452,6 @@ msgstr "<emph>FV</emph> (可选择的)指的是期望值(未来值),
msgctxt ""
"04060119.xhp\n"
"par_id3156434\n"
-"338\n"
"help.text"
msgid "<emph>Type</emph> (optional) is the due date for the periodic payments. Type=1 is payment at the beginning and Type=0 is payment at the end of each period."
msgstr "<emph>Type</emph> (可选择的)分期支付的到期日期。Type=1 表示在周期开始时支付,Type=0 表示在周期结束时支付。"
@@ -36471,7 +34460,6 @@ msgstr "<emph>Type</emph> (可选择的)分期支付的到期日期。Type=1
msgctxt ""
"04060119.xhp\n"
"hd_id3152358\n"
-"339\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -36480,7 +34468,6 @@ msgstr "示例"
msgctxt ""
"04060119.xhp\n"
"par_id3154222\n"
-"340\n"
"help.text"
msgid "What are the periodic payments at a yearly interest rate of 1.99% if the payment time is 3 years and the cash value is 25,000 currency units. There are 36 months as 36 payment periods, and the interest rate per payment period is 1.99%/12."
msgstr "如果一项贷款的现金值是 25,000 货币单位,年利率是 1.99%,偿还期限为 3 年,则周期支付额是多少?总共 36 个月,即 36 个支付周期,支付周期的利率为 1.99%/12。"
@@ -36489,7 +34476,6 @@ msgstr "如果一项贷款的现金值是 25,000 货币单位,年利率是 1.9
msgctxt ""
"04060119.xhp\n"
"par_id3155943\n"
-"341\n"
"help.text"
msgid "<item type=\"input\">=PMT(1.99%/12;36;25000)</item> = -715.96 currency units. The periodic monthly payment is therefore 715.96 currency units."
msgstr "<item type=\"input\">=PMT(1.99%/12;36;25000)</item> = -715.96 个货币单位。因此,月定期支付额为 715.96 个货币单位。"
@@ -36506,7 +34492,6 @@ msgstr "<bookmark_value>TBILLEQ 函数</bookmark_value><bookmark_value>短期国
msgctxt ""
"04060119.xhp\n"
"hd_id3155799\n"
-"58\n"
"help.text"
msgid "TBILLEQ"
msgstr "TBILLEQ"
@@ -36515,7 +34500,6 @@ msgstr "TBILLEQ"
msgctxt ""
"04060119.xhp\n"
"par_id3154403\n"
-"59\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_TBILLEQ\">Calculates the annual return on a treasury bill.</ahelp> A treasury bill is purchased on the settlement date and sold at the full par value on the maturity date, that must fall within the same year. A discount is deducted from the purchase price."
msgstr "<ahelp hid=\"HID_AAI_FUNC_TBILLEQ\">计算国库券的年化收益率。</ahelp> 国库券在结算日买入,在到期日以完全面值卖出,且均在同一年。贴现从购买价格中扣除。"
@@ -36524,7 +34508,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_TBILLEQ\">计算国库券的年化收益率。
msgctxt ""
"04060119.xhp\n"
"hd_id3155080\n"
-"60\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -36533,7 +34516,6 @@ msgstr "语法"
msgctxt ""
"04060119.xhp\n"
"par_id3150224\n"
-"61\n"
"help.text"
msgid "TBILLEQ(Settlement; Maturity; Discount)"
msgstr "TBILLEQ(Settlement; Maturity; Discount)"
@@ -36542,7 +34524,6 @@ msgstr "TBILLEQ(Settlement; Maturity; Discount)"
msgctxt ""
"04060119.xhp\n"
"par_id3156190\n"
-"62\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr "<emph>Settlement</emph> 指有价证券的购买日期。"
@@ -36551,7 +34532,6 @@ msgstr "<emph>Settlement</emph> 指有价证券的购买日期。"
msgctxt ""
"04060119.xhp\n"
"par_id3153827\n"
-"63\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "<emph>Maturity</emph> 该有价证券的到期日(期满)。"
@@ -36560,7 +34540,6 @@ msgstr "<emph>Maturity</emph> 该有价证券的到期日(期满)。"
msgctxt ""
"04060119.xhp\n"
"par_id3150310\n"
-"64\n"
"help.text"
msgid "<emph>Discount</emph> is the percentage discount on acquisition of the security."
msgstr "<emph>Discount</emph> 指有价证券的贴现率。"
@@ -36569,7 +34548,6 @@ msgstr "<emph>Discount</emph> 指有价证券的贴现率。"
msgctxt ""
"04060119.xhp\n"
"hd_id3150324\n"
-"65\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -36578,7 +34556,6 @@ msgstr "示例"
msgctxt ""
"04060119.xhp\n"
"par_id3153173\n"
-"66\n"
"help.text"
msgid "Settlement date: March 31 1999, maturity date: June 1 1999, discount: 9.14 per cent."
msgstr "成交日:1999 年 3 月 31 日,到期日期:1999 年 6 月 1 日,贴现率:9.14%。"
@@ -36587,7 +34564,6 @@ msgstr "成交日:1999 年 3 月 31 日,到期日期:1999 年 6 月 1 日
msgctxt ""
"04060119.xhp\n"
"par_id3153520\n"
-"67\n"
"help.text"
msgid "The return on the treasury bill corresponding to a security is worked out as follows:"
msgstr "该短期国库券对应的对应于有价证券的收益计算如下:"
@@ -36596,7 +34572,6 @@ msgstr "该短期国库券对应的对应于有价证券的收益计算如下:
msgctxt ""
"04060119.xhp\n"
"par_id3154382\n"
-"68\n"
"help.text"
msgid "=TBILLEQ(\"1999-03-31\";\"1999-06-01\"; 0.0914) returns 0.094151 or 9.4151 per cent."
msgstr "=TBILLEQ(\"1999-03-31\";\"1999-06-01\"; 0.0914) 返回 0.094151 或 9.4151%。"
@@ -36613,7 +34588,6 @@ msgstr "<bookmark_value>TBILLPRICE 函数</bookmark_value><bookmark_value>短期
msgctxt ""
"04060119.xhp\n"
"hd_id3151032\n"
-"69\n"
"help.text"
msgid "TBILLPRICE"
msgstr "TBILLPRICE"
@@ -36622,7 +34596,6 @@ msgstr "TBILLPRICE"
msgctxt ""
"04060119.xhp\n"
"par_id3157887\n"
-"70\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_TBILLPRICE\">Calculates the price of a treasury bill per 100 currency units.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_TBILLPRICE\">计算每 100 个货币单位的短期国库券的价格。</ahelp>"
@@ -36631,7 +34604,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_TBILLPRICE\">计算每 100 个货币单位的
msgctxt ""
"04060119.xhp\n"
"hd_id3156374\n"
-"71\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -36640,7 +34612,6 @@ msgstr "语法"
msgctxt ""
"04060119.xhp\n"
"par_id3150284\n"
-"72\n"
"help.text"
msgid "TBILLPRICE(Settlement; Maturity; Discount)"
msgstr "TBILLPRICE(Settlement; Maturity; Discount)"
@@ -36649,7 +34620,6 @@ msgstr "TBILLPRICE(Settlement; Maturity; Discount)"
msgctxt ""
"04060119.xhp\n"
"par_id3154059\n"
-"73\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr "<emph>Settlement</emph> 指有价证券的购买日期。"
@@ -36658,7 +34628,6 @@ msgstr "<emph>Settlement</emph> 指有价证券的购买日期。"
msgctxt ""
"04060119.xhp\n"
"par_id3154073\n"
-"74\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "<emph>Maturity</emph> 该有价证券的到期日(期满)。"
@@ -36667,7 +34636,6 @@ msgstr "<emph>Maturity</emph> 该有价证券的到期日(期满)。"
msgctxt ""
"04060119.xhp\n"
"par_id3145765\n"
-"75\n"
"help.text"
msgid "<emph>Discount</emph> is the percentage discount upon acquisition of the security."
msgstr "<emph>Discount</emph> 购买有价证券的贴现率百分比。"
@@ -36676,7 +34644,6 @@ msgstr "<emph>Discount</emph> 购买有价证券的贴现率百分比。"
msgctxt ""
"04060119.xhp\n"
"hd_id3153373\n"
-"76\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -36685,7 +34652,6 @@ msgstr "示例"
msgctxt ""
"04060119.xhp\n"
"par_id3155542\n"
-"77\n"
"help.text"
msgid "Settlement date: March 31 1999, maturity date: June 1 1999, discount: 9 per cent."
msgstr "成交日: 1999年3月31日,到期日期: 1999年6月1日,贴现率: 9%。"
@@ -36694,7 +34660,6 @@ msgstr "成交日: 1999年3月31日,到期日期: 1999年6月1日,贴现
msgctxt ""
"04060119.xhp\n"
"par_id3154578\n"
-"78\n"
"help.text"
msgid "The price of the treasury bill is worked out as follows:"
msgstr "国库券价格结果如下:"
@@ -36703,7 +34668,6 @@ msgstr "国库券价格结果如下:"
msgctxt ""
"04060119.xhp\n"
"par_id3154592\n"
-"79\n"
"help.text"
msgid "=TBILLPRICE(\"1999-03-31\";\"1999-06-01\"; 0.09) returns 98.45."
msgstr "=TBILLPRICE(\"1999-03-31\";\"1999-06-01\"; 0.09) 返回 98.45。"
@@ -36720,7 +34684,6 @@ msgstr "<bookmark_value>TBILLYIELD 函数</bookmark_value><bookmark_value>短期
msgctxt ""
"04060119.xhp\n"
"hd_id3152912\n"
-"80\n"
"help.text"
msgid "TBILLYIELD"
msgstr "TBILLYIELD"
@@ -36729,7 +34692,6 @@ msgstr "TBILLYIELD"
msgctxt ""
"04060119.xhp\n"
"par_id3145560\n"
-"81\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_TBILLYIELD\">Calculates the yield of a treasury bill.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_TBILLYIELD\">计算短期国库券的收益率。</ahelp>"
@@ -36738,7 +34700,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_TBILLYIELD\">计算短期国库券的收益率
msgctxt ""
"04060119.xhp\n"
"hd_id3145578\n"
-"82\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -36747,7 +34708,6 @@ msgstr "语法"
msgctxt ""
"04060119.xhp\n"
"par_id3156077\n"
-"83\n"
"help.text"
msgid "TBILLYIELD(Settlement; Maturity; Price)"
msgstr "TBILLYIELD(Settlement; Maturity; Price)"
@@ -36756,7 +34716,6 @@ msgstr "TBILLYIELD(Settlement; Maturity; Price)"
msgctxt ""
"04060119.xhp\n"
"par_id3156091\n"
-"84\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr "<emph>Settlement</emph> 指有价证券的购买日期。"
@@ -36765,7 +34724,6 @@ msgstr "<emph>Settlement</emph> 指有价证券的购买日期。"
msgctxt ""
"04060119.xhp\n"
"par_id3157856\n"
-"85\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "<emph>Maturity</emph> 该有价证券的到期日(期满)。"
@@ -36774,7 +34732,6 @@ msgstr "<emph>Maturity</emph> 该有价证券的到期日(期满)。"
msgctxt ""
"04060119.xhp\n"
"par_id3149627\n"
-"86\n"
"help.text"
msgid "<emph>Price</emph> is the price (purchase price) of the treasury bill per 100 currency units of par value."
msgstr "<emph>Price</emph> 面额为 100 个货币单位的国库券价格(购买价格)。"
@@ -36783,7 +34740,6 @@ msgstr "<emph>Price</emph> 面额为 100 个货币单位的国库券价格(购
msgctxt ""
"04060119.xhp\n"
"hd_id3149642\n"
-"87\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -36792,7 +34748,6 @@ msgstr "示例"
msgctxt ""
"04060119.xhp\n"
"par_id3145178\n"
-"88\n"
"help.text"
msgid "Settlement date: March 31 1999, maturity date: June 1 1999, price: 98.45 currency units."
msgstr "成交日:1999 年 3 月 31 日,计息日期: 1999 年 6 月 1 日,价格: 98.45 货币单位。"
@@ -36801,7 +34756,6 @@ msgstr "成交日:1999 年 3 月 31 日,计息日期: 1999 年 6 月 1 日
msgctxt ""
"04060119.xhp\n"
"par_id3145193\n"
-"89\n"
"help.text"
msgid "The yield of the treasury bill is worked out as follows:"
msgstr "国库券收益率结果如下:"
@@ -36810,7 +34764,6 @@ msgstr "国库券收益率结果如下:"
msgctxt ""
"04060119.xhp\n"
"par_id3148528\n"
-"90\n"
"help.text"
msgid "=TBILLYIELD(\"1999-03-31\";\"1999-06-01\"; 98.45) returns 0.091417 or 9.1417 per cent."
msgstr "=TBILLYIELD(\"1999-03-31\";\"1999-06-01\"; 98.45) 返回 0.091417 或 9.1417%。"
@@ -36819,7 +34772,6 @@ msgstr "=TBILLYIELD(\"1999-03-31\";\"1999-06-01\"; 98.45) 返回 0.091417 或 9.
msgctxt ""
"04060119.xhp\n"
"par_id3148546\n"
-"345\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Back to Financial Functions Part One</link>"
msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">返回至财务函数第一部分</link>"
@@ -36828,7 +34780,6 @@ msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Funct
msgctxt ""
"04060119.xhp\n"
"par_id3146762\n"
-"346\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Forward to Financial Functions Part Three</link>"
msgstr "<link href=\"text/scalc/01/04060118.xhp\" name=\"转至财务函数第三部分\">转至财务函数第三部分</link>"
@@ -36845,7 +34796,6 @@ msgstr "位操作函数"
msgctxt ""
"04060120.xhp\n"
"hd_id4149052\n"
-"1\n"
"help.text"
msgid "Bit Operation Functions"
msgstr "位操作函数"
@@ -36862,7 +34812,6 @@ msgstr "<bookmark_value>BITAND 函数</bookmark_value>"
msgctxt ""
"04060120.xhp\n"
"hd_id4150026\n"
-"238\n"
"help.text"
msgid "BITAND"
msgstr "BITAND"
@@ -36871,7 +34820,6 @@ msgstr "BITAND"
msgctxt ""
"04060120.xhp\n"
"par_id4146942\n"
-"239\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BITAND\">Returns a bitwise logical \"and\" of the parameters.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_BITAND\">返回参数按位逻辑“与”运算的结果。</ahelp>"
@@ -36880,7 +34828,6 @@ msgstr "<ahelp hid=\"HID_FUNC_BITAND\">返回参数按位逻辑“与”运算
msgctxt ""
"04060120.xhp\n"
"hd_id4150459\n"
-"240\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -36889,7 +34836,6 @@ msgstr "语法"
msgctxt ""
"04060120.xhp\n"
"par_id4146878\n"
-"241\n"
"help.text"
msgid "BITAND(number1; number2)"
msgstr "BITAND(数字1; 数字2)"
@@ -36898,7 +34844,6 @@ msgstr "BITAND(数字1; 数字2)"
msgctxt ""
"04060120.xhp\n"
"par_id4151228\n"
-"242\n"
"help.text"
msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
msgstr "<emph>数字1</emph> 和 <emph>数字2</emph> 都应当是小于 2 ^ 48 (281 474 976 710 656) 的正整数。"
@@ -36907,7 +34852,6 @@ msgstr "<emph>数字1</emph> 和 <emph>数字2</emph> 都应当是小于 2 ^ 48
msgctxt ""
"04060120.xhp\n"
"hd_id4148582\n"
-"248\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -36916,7 +34860,6 @@ msgstr "示例"
msgctxt ""
"04060120.xhp\n"
"par_id4149246\n"
-"250\n"
"help.text"
msgid "<item type=\"input\">=BITAND(6;10)</item> returns 2 (0110 & 1010 = 0010)."
msgstr "<item type=\"input\">=BITAND(6;10)</item> 返回 2 (0110 & 1010 = 0010)。"
@@ -36933,7 +34876,6 @@ msgstr "<bookmark_value>BITOR 函数</bookmark_value>"
msgctxt ""
"04060120.xhp\n"
"hd_id4146139\n"
-"252\n"
"help.text"
msgid "BITOR"
msgstr "BITOR"
@@ -36942,7 +34884,6 @@ msgstr "BITOR"
msgctxt ""
"04060120.xhp\n"
"par_id4150140\n"
-"253\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BITOR\">Returns a bitwise logical \"or\" of the parameters.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_BITOR\">返回将参数进行按位逻辑 “或” 的结果。</ahelp>"
@@ -36951,7 +34892,6 @@ msgstr "<ahelp hid=\"HID_FUNC_BITOR\">返回将参数进行按位逻辑 “或
msgctxt ""
"04060120.xhp\n"
"hd_id4149188\n"
-"254\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -36960,7 +34900,6 @@ msgstr "语法"
msgctxt ""
"04060120.xhp\n"
"par_id4148733\n"
-"255\n"
"help.text"
msgid "BITOR(number1; number2)"
msgstr "BITOR(数字1; 数字2)"
@@ -36969,7 +34908,6 @@ msgstr "BITOR(数字1; 数字2)"
msgctxt ""
"04060120.xhp\n"
"par_id4150864\n"
-"256\n"
"help.text"
msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
msgstr "<emph>数字1</emph> 和 <emph>数字2</emph> 都应当是小于 2 ^ 48 (281 474 976 710 656) 的正整数。"
@@ -36978,7 +34916,6 @@ msgstr "<emph>数字1</emph> 和 <emph>数字2</emph> 都应当是小于 2 ^ 48
msgctxt ""
"04060120.xhp\n"
"par_id4149884\n"
-"264\n"
"help.text"
msgid "<item type=\"input\">=BITOR(6;10)</item> returns 14 (0110 | 1010 = 1110)."
msgstr "<item type=\"input\">=BITOR(6;10)</item> 返回 14 (0110 | 1010 = 1110)。"
@@ -36995,7 +34932,6 @@ msgstr "<bookmark_value>BITXOR 函数</bookmark_value>"
msgctxt ""
"04060120.xhp\n"
"hd_id4150019\n"
-"182\n"
"help.text"
msgid "BITXOR"
msgstr "BITXOR"
@@ -37004,7 +34940,6 @@ msgstr "BITXOR"
msgctxt ""
"04060120.xhp\n"
"par_id4145246\n"
-"183\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BITXOR\">Returns a bitwise logical \"exclusive or\" of the parameters.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_BITXOR\">返回将参数进行按位逻辑 “异或” 的结果。</ahelp>"
@@ -37013,7 +34948,6 @@ msgstr "<ahelp hid=\"HID_FUNC_BITXOR\">返回将参数进行按位逻辑 “异
msgctxt ""
"04060120.xhp\n"
"hd_id4153047\n"
-"184\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -37022,7 +34956,6 @@ msgstr "语法"
msgctxt ""
"04060120.xhp\n"
"par_id4157970\n"
-"185\n"
"help.text"
msgid "BITXOR(number1; number2)"
msgstr "BITXOR(数字1; 数字2)"
@@ -37031,7 +34964,6 @@ msgstr "BITXOR(数字1; 数字2)"
msgctxt ""
"04060120.xhp\n"
"par_id4145302\n"
-"186\n"
"help.text"
msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
msgstr "<emph>数字1</emph> 和 <emph>数字2</emph> 都应当是小于 2 ^ 48 (281 474 976 710 656) 的正整数。"
@@ -37040,7 +34972,6 @@ msgstr "<emph>数字1</emph> 和 <emph>数字2</emph> 都应当是小于 2 ^ 48
msgctxt ""
"04060120.xhp\n"
"hd_id4150269\n"
-"192\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -37049,7 +34980,6 @@ msgstr "示例"
msgctxt ""
"04060120.xhp\n"
"par_id4149394\n"
-"196\n"
"help.text"
msgid "<item type=\"input\">=BITXOR(6;10)</item> returns 12 (0110 ^ 1010 = 1100)"
msgstr "<item type=\"input\">=BITXOR(6;10)</item> 返回 12 (0110 ^ 1010 = 1100)"
@@ -37066,7 +34996,6 @@ msgstr "<bookmark_value>BITLSHIFT 函数</bookmark_value>"
msgctxt ""
"04060120.xhp\n"
"hd_id4155370\n"
-"266\n"
"help.text"
msgid "BITLSHIFT"
msgstr "BITLSHIFT"
@@ -37075,7 +35004,6 @@ msgstr "BITLSHIFT"
msgctxt ""
"04060120.xhp\n"
"par_id4158411\n"
-"267\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BITLSHIFT\">Shifts a number left by n bits.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_BITLSHIFT\">将一个数字左移 n 位。</ahelp>"
@@ -37084,7 +35012,6 @@ msgstr "<ahelp hid=\"HID_FUNC_BITLSHIFT\">将一个数字左移 n 位。</ahelp>
msgctxt ""
"04060120.xhp\n"
"hd_id4155814\n"
-"268\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -37093,7 +35020,6 @@ msgstr "语法"
msgctxt ""
"04060120.xhp\n"
"par_id4147536\n"
-"269\n"
"help.text"
msgid "BITLSHIFT(number; shift)"
msgstr "BITLSHIFT(数字; 移动位数)"
@@ -37102,7 +35028,6 @@ msgstr "BITLSHIFT(数字; 移动位数)"
msgctxt ""
"04060120.xhp\n"
"par_id4150475\n"
-"270\n"
"help.text"
msgid "<emph>Number</emph> is a positive integer less than 2 ^ 48 (281 474 976 710 656)."
msgstr "<emph>数字</emph> 是小于 2 ^ 48 (281 474 976 710 656) 的正整数。"
@@ -37111,7 +35036,6 @@ msgstr "<emph>数字</emph> 是小于 2 ^ 48 (281 474 976 710 656) 的正整数
msgctxt ""
"04060120.xhp\n"
"par_id4153921\n"
-"271\n"
"help.text"
msgid "<emph>Shift</emph> is the number of positions the bits will be moved to the left. If shift is negative, it is synonymous with BITRSHIFT (number; -shift)."
msgstr "<emph>移动位数</emph> 指原二进制数将被左移的位数。如果该 移动位数 是负数,则相当于调用函数 BITRSHIFT (数字; -移动位数)。"
@@ -37120,7 +35044,6 @@ msgstr "<emph>移动位数</emph> 指原二进制数将被左移的位数。如
msgctxt ""
"04060120.xhp\n"
"hd_id4153723\n"
-"276\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -37129,7 +35052,6 @@ msgstr "示例"
msgctxt ""
"04060120.xhp\n"
"par_id4149819\n"
-"278\n"
"help.text"
msgid "<item type=\"input\">=BITLSHIFT(6;1)</item> returns 12 (0110 << 1 = 1100)."
msgstr "<item type=\"input\">=BITLSHIFT(6;1)</item> 返回 12 (0110 << 1 = 1100)。"
@@ -37146,7 +35068,6 @@ msgstr "<bookmark_value>BITRSHIFT 函数</bookmark_value>"
msgctxt ""
"04060120.xhp\n"
"hd_id4083280\n"
-"165\n"
"help.text"
msgid "BITRSHIFT"
msgstr "BITRSHIFT"
@@ -37155,7 +35076,6 @@ msgstr "BITRSHIFT"
msgctxt ""
"04060120.xhp\n"
"par_id4152482\n"
-"166\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BITRSHIFT\">Shifts a number right by n bits.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_BITRSHIFT\">将一个数字右移 n 位。</ahelp>"
@@ -37164,7 +35084,6 @@ msgstr "<ahelp hid=\"HID_FUNC_BITRSHIFT\">将一个数字右移 n 位。</ahelp>
msgctxt ""
"04060120.xhp\n"
"hd_id4149713\n"
-"167\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -37173,7 +35092,6 @@ msgstr "语法"
msgctxt ""
"04060120.xhp\n"
"par_id4145087\n"
-"168\n"
"help.text"
msgid "BITRSHIFT(number; shift)"
msgstr "BITRSHIFT(数字; 移动位数)"
@@ -37182,7 +35100,6 @@ msgstr "BITRSHIFT(数字; 移动位数)"
msgctxt ""
"04060120.xhp\n"
"par_id4149277\n"
-"169\n"
"help.text"
msgid "<emph>Number</emph> is a positive integer less than 2 ^ 48 (281 474 976 710 656)."
msgstr "<emph>数字</emph> 是小于 2 ^ 48 (281 474 976 710 656) 的正整数。"
@@ -37191,7 +35108,6 @@ msgstr "<emph>数字</emph> 是小于 2 ^ 48 (281 474 976 710 656) 的正整数
msgctxt ""
"04060120.xhp\n"
"par_id4149270\n"
-"170\n"
"help.text"
msgid "<emph>Shift</emph> is the number of positions the bits will be moved to the right. If shift is negative, it is synonymous with BITLSHIFT (number; -shift)."
msgstr "<emph>移动位数</emph> 是指原二进制数将被右移的位数。如果该 移动位数 是负数,相当于调用函数 BITLSHIFT (数字; -移动位数)。"
@@ -37200,7 +35116,6 @@ msgstr "<emph>移动位数</emph> 是指原二进制数将被右移的位数。
msgctxt ""
"04060120.xhp\n"
"hd_id4152933\n"
-"175\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -37209,7 +35124,6 @@ msgstr "示例"
msgctxt ""
"04060120.xhp\n"
"par_id4156130\n"
-"179\n"
"help.text"
msgid "<item type=\"input\">=BITRSHIFT(6;1)</item> returns 3 (0110 >> 1 = 0011)."
msgstr "<item type=\"input\">=BITRSHIFT(6;1)</item> 返回 3 (0110 >> 1 = 0011)。"
@@ -37231,7 +35145,6 @@ msgid "<variable id=\"ae\"><link href=\"text/scalc/01/04060181.xhp\">Statistical
msgstr "<variable id=\"ae\"><link href=\"text/scalc/01/04060181.xhp\">统计函数第一部分</link></variable>"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id3145632\n"
@@ -37320,7 +35233,6 @@ msgid "<item type=\"input\">=INTERCEPT(D3:D9;C3:C9)</item> = 2.15."
msgstr "<item type=\"input\">=INTERCEPT(D3:D9;C3:C9)</item> = 2.15。"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id3148437\n"
@@ -37393,7 +35305,6 @@ msgid "<item type=\"input\">=COUNT(2;4;6;\"eight\")</item> = 3. The count of num
msgstr "<item type=\"input\">=COUNT(2;4;6;\"eight\")</item> = 3. 即数字个数为 3。"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id3149729\n"
@@ -37466,7 +35377,6 @@ msgid "<item type=\"input\">=COUNTA(2;4;6;\"eight\")</item> = 4. The count of va
msgstr "<item type=\"input\">=COUNTA(2;4;6;\"eight\")</item> = 4. 即值的个数为 4。"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id3150896\n"
@@ -37483,7 +35393,6 @@ msgid "COUNTBLANK"
msgstr "COUNTBLANK"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id3155260\n"
@@ -37508,7 +35417,6 @@ msgid "COUNTBLANK(Range)"
msgstr "COUNTBLANK(Range)"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id3149512\n"
@@ -37525,7 +35433,6 @@ msgid "Example"
msgstr "示例"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id3148586\n"
@@ -37534,7 +35441,6 @@ msgid "<item type=\"input\">=COUNTBLANK(A1:B2)</item> returns 4 if cells A1, A2,
msgstr "如果单元格 A1、A2、B1 和 B2 全部为空,<item type=\"input\">=COUNTBLANK(A1:B2)</item> 返回 4。"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id3164897\n"
@@ -37551,7 +35457,6 @@ msgid "COUNTIF"
msgstr "COUNTIF"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id3164926\n"
@@ -37576,7 +35481,6 @@ msgid "COUNTIF(Range; Criteria)"
msgstr "COUNTIF(Range; Criteria)"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id3164980\n"
@@ -37601,7 +35505,6 @@ msgid "Example"
msgstr "示例"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id3166505\n"
@@ -37634,7 +35537,6 @@ msgid "<item type=\"input\">=COUNTIF(A1:A10;\">=2006\") </item>- this returns 4"
msgstr "<item type=\"input\">=COUNTIF(A1:A10;\">=2006\") </item>- 返回 4"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2118594\n"
@@ -37643,7 +35545,6 @@ msgid "<item type=\"input\">=COUNTIF(A1:A10;\"<\"&B1)</item> - when B1 contains
msgstr "<item type=\"input\">=COUNTIF(A1:A10;\"<\"&B1)</item> - 当 B1 包含 <item type=\"input\">2006</item> 时,返回 6"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id166020\n"
@@ -37652,7 +35553,6 @@ msgid "<item type=\"input\">=COUNTIF(A1:A10;C2)</item> where cell C2 contains th
msgstr "<item type=\"input\">=COUNTIF(A1:A10;C2)</item> 计算区域 A1:A10 中大于 2006 的单元格的数量,其中单元格 C2 包含文本 <item type=\"input\">>2006</item>"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id6386913\n"
@@ -37661,7 +35561,6 @@ msgid "To count only negative numbers: <item type=\"input\">=COUNTIF(A1:A10;\"<0
msgstr "仅计算负数:<item type=\"input\">=COUNTIF(A1:A10;\"<0\")</item>"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id3150267\n"
@@ -37758,7 +35657,6 @@ msgid "<item type=\"input\">=B(10;1/6;2)</item> returns a probability of 29%."
msgstr "<item type=\"input\">=B(10;1/6;2)</item> 返回的概率结果为 29%。"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id3158416\n"
@@ -37831,7 +35729,6 @@ msgid "<item type=\"input\">=RSQ(A1:A20;B1:B20)</item> calculates the determinat
msgstr "<item type=\"input\">=RSQ(A1:A20;B1:B20)</item> 计算列 A 和列 B 中的两个数据集合的相关系数。"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id3145620\n"
@@ -37928,7 +35825,6 @@ msgid "<item type=\"input\">=BETAINV(0.5;5;10)</item> returns the value 0.33."
msgstr "<item type=\"input\">=BETAINV(0.5;5;10)</item> 返回数值 0.33。"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id2945620\n"
@@ -37969,7 +35865,6 @@ msgid "BETA.INV(Number; Alpha; Beta; Start; End)"
msgstr "BETA.INV(数值; Alpha; Beta; 起始; 结束)"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2949266\n"
@@ -37978,7 +35873,6 @@ msgid "<emph>Number</emph> is the value between <emph>Start</emph> and <emph>End
msgstr "<emph>Number</emph> 是用来进行函数计算的介于<emph>Start</emph>和<emph>End</emph>区间的之间的值。"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2949710\n"
@@ -37987,7 +35881,6 @@ msgid "<emph>Alpha</emph> is a parameter to the distribution."
msgstr "<emph>Alpha</emph> 是分布的参数。"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2956306\n"
@@ -37996,7 +35889,6 @@ msgid "<emph>Beta</emph> is a parameter to the distribution."
msgstr "<emph>Beta</emph> 是分布的参数。"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2950960\n"
@@ -38005,7 +35897,6 @@ msgid "<emph>Start</emph> (optional) is the lower bound for <emph>Number</emph>.
msgstr "<emph>Start</emph> (可选择的)是 <emph>Number</emph> 的下界。"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2951268\n"
@@ -38030,7 +35921,6 @@ msgid "<item type=\"input\">=BETA.INV(0.5;5;10)</item> returns the value 0.32575
msgstr "<item type=\"input\">=BETA.INV(0.5;5;10)</item> 返回值 0.3257511553。"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id3156096\n"
@@ -38135,7 +36025,6 @@ msgid "<item type=\"input\">=BETADIST(0.75;3;4)</item> returns the value 0.96"
msgstr "<item type=\"input\">=BETADIST(0.75;3;4)</item> 返回数值 0.96"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id2956096\n"
@@ -38176,7 +36065,6 @@ msgid "BETA.DIST(Number; Alpha; Beta; Cumulative; Start; End)"
msgstr "BETA.DIST(Number; Alpha; Beta; Cumulative; Start; End)"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2956317\n"
@@ -38201,7 +36089,6 @@ msgid "<emph>Beta</emph> (required) is a parameter to the distribution."
msgstr "<emph>Beta</emph> (必填) 是该分布的一个参数。"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id062920141254453\n"
@@ -38210,7 +36097,6 @@ msgid "<emph>Cumulative</emph> (required) can be 0 or False to calculate the pro
msgstr "<emph>Cumulative</emph> (可选择的): 可取 0 或 False 计算概率密度函数。可取其它任意值或 True 或缺省用于计算累积分布函数"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2950254\n"
@@ -38219,7 +36105,6 @@ msgid "<emph>Start</emph> (optional) is the lower bound for <emph>Number</emph>.
msgstr "<emph>Start</emph> (可选择的)是 <emph>Number</emph> 的下界。"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2949138\n"
@@ -38364,7 +36249,6 @@ msgid "BINOM.DIST"
msgstr "BINOM.DIST"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2946897\n"
@@ -38413,7 +36297,6 @@ msgid "<emph>SP</emph> is the probability of success on each trial."
msgstr "<emph>SP</emph> 是单个试验的成功概率。"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id299760\n"
@@ -38430,7 +36313,6 @@ msgid "Example"
msgstr "示例"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id295666\n"
@@ -38439,7 +36321,6 @@ msgid "<item type=\"input\">=BINOM.DIST(A1;12;0.5;0)</item> shows (if the values
msgstr "抛掷 12 次硬币,如果在 A1 中输入的数值为从 <item type=\"input\">0</item> 到 <item type=\"input\">12</item>,函数<item type=\"input\">=BINOMDIST(A1;12;0.5;0)</item> 求得的值表示 12 次中有 A1 次正面朝上。"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id290120\n"
@@ -38464,7 +36345,6 @@ msgid "BINOM.INV"
msgstr ""
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2846897\n"
@@ -38509,7 +36389,7 @@ msgctxt ""
"04060181.xhp\n"
"par_id289760\n"
"help.text"
-msgid "<emph>Alpha</emph>The border probability that is attained or exceeded."
+msgid "<emph>Alpha</emph> The border probability that is attained or exceeded."
msgstr ""
#: 04060181.xhp
@@ -38593,7 +36473,6 @@ msgid "CHISQ.INV"
msgstr "CHISQ.INV"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2919200902421449\n"
@@ -38618,7 +36497,6 @@ msgid "CHISQ.INV(Probability; DegreesFreedom)"
msgstr ""
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2919200902475286\n"
@@ -38627,7 +36505,6 @@ msgid "<emph>Probability</emph> is the probability value for which the inverse o
msgstr "<emph>Probability</emph> 是 chi 平方分布逆函数的概率值。"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2919200902475282\n"
@@ -38780,7 +36657,6 @@ msgid "CHISQ.INV.RT"
msgstr "CHISQ.INV.RT"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2949906\n"
@@ -38813,7 +36689,6 @@ msgid "<emph>Number</emph> is the value of the error probability."
msgstr "<emph>Number</emph> 是错误概率的值。"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2954294\n"
@@ -38830,7 +36705,6 @@ msgid "Example"
msgstr "示例"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2950777\n"
@@ -38839,7 +36713,6 @@ msgid "A die is thrown 1020 times. The numbers on the die 1 through 6 come up 19
msgstr "抛掷 1020 次骰子。1 至 6 点分别出现的次数为 195、151、148、189、183 和 154(观察值)。检验假设:骰子是否是真的。"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2953062\n"
@@ -38848,7 +36721,6 @@ msgid "The Chi square distribution of the random sample is determined by the for
msgstr "用上述公式计算抽样样本的 Chi 平方分布。掷出某一点的期望值为抛掷次数乘以 1/6,即 1020/6 = 170,公式计算出 Chi 平方值为 13.27。"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2948806\n"
@@ -38873,7 +36745,6 @@ msgid "<item type=\"input\">=CHISQ.INV.RT(0.02;5)</item> returns 13.388222599."
msgstr "<item type=\"input\">=CHISQ.INV.RT(0.02;5)</item> 返回 13.388222599。"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2958401\n"
@@ -39138,7 +37009,6 @@ msgid "CHISQ.TEST"
msgstr "CHISQ.TEST"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2951052\n"
@@ -39147,7 +37017,6 @@ msgid "<ahelp hid=\"HID_FUNC_CHITEST_MS\">Returns the probability of a deviance
msgstr "<ahelp hid=\"HID_FUNC_CHITEST\">基于测试相关性的 X2 检验,返回两个检验系列的随机分布的偏差概率。</ahelp>CHITEST 返回数据的 X2 分布。"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2948925\n"
@@ -39356,7 +37225,6 @@ msgid "<item type=\"input\">170</item>"
msgstr "<item type=\"input\">170</item>"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2949481\n"
@@ -39469,7 +37337,6 @@ msgid "CHISQ.DIST"
msgstr "CHISQ.DIST"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2856338\n"
@@ -39494,7 +37361,6 @@ msgid "CHISQ.DIST(Number; DegreesFreedom; Cumulative)"
msgstr "CHISQ.DIST(Number; DegreesFreedom; Cumulative)"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2848675\n"
@@ -39503,7 +37369,6 @@ msgid "<emph>Number</emph> is the chi-square value of the random sample used to
msgstr "<emph>Number</emph>是随机抽样的 chi 平方值,用来计算需要确定的错误概率。"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2855615\n"
@@ -39512,7 +37377,6 @@ msgid "<emph>DegreesFreedom</emph> are the degrees of freedom of the experiment.
msgstr "<emph>DegreesFreedom</emph> 是试验的自由度。"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id282020091254453\n"
@@ -39561,7 +37425,6 @@ msgid "CHISQ.DIST.RT"
msgstr "CHISQ.DIST.RT"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2956338\n"
@@ -39570,7 +37433,6 @@ msgid "<ahelp hid=\"HID_FUNC_CHIVERT_MS\">Returns the probability value from the
msgstr "<ahelp hid=\"HID_FUNC_CHIVERT\">利用指定的 X2 值计算假设成立的概率值。</ahelp>CHIDIST 将某一随机样本得出的 X2 值(该值通过利用公式求得的用于所有值的数值得出)与理论上的 X2 分布进行比较,并由此计算出待检验假设的错误概率。用公式(观察值 - 期望值)^2/期望值计算所有值后再求和即可得出样本的 X2 值。"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2951316\n"
@@ -39595,7 +37457,6 @@ msgid "CHISQ.DIST.RT(Number; DegreesFreedom)"
msgstr "CHISQ.DIST.RT(Number; DegreesFreedom)"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2948675\n"
@@ -39604,7 +37465,6 @@ msgid "<emph>Number</emph> is the chi-square value of the random sample used to
msgstr "<emph>Number</emph>是随机抽样的 chi 平方值,用来计算需要确定的错误概率。"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2955615\n"
@@ -39629,7 +37489,6 @@ msgid "<item type=\"input\">=CHISQ.DIST.RT(13.27; 5)</item> equals 0.0209757694.
msgstr "<item type=\"input\">=CHISQ.DIST.RT(13.27; 5)</item> 等于 0.0209757694。"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2956141\n"
@@ -39638,7 +37497,6 @@ msgid "If the Chi square value of the random sample is 13.27 and if the experime
msgstr "抽样样本的 Chi 平方值是13.27,试验自由度为5,那么确保假设成立的错误概率为2%。"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id0119200902231887\n"
@@ -39703,7 +37561,6 @@ msgid "<emph>Cumulative</emph> (optional): 0 or False calculates the probability
msgstr "<emph>Cumulative</emph> (可选择的): 0 或 False 计算概率密度函数。其它值或 True 或缺省计算累积分布函数。"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id3150603\n"
@@ -39784,7 +37641,6 @@ msgid "<item type=\"input\">=EXPONDIST(3;0.5;1)</item> returns 0.78."
msgstr "<item type=\"input\">=EXPONDIST(3;0.5;1)</item> 返回 0.78。"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id2950603\n"
@@ -39801,7 +37657,6 @@ msgid "EXPON.DIST"
msgstr "EXPON.DIST"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2949563\n"
@@ -39842,7 +37697,6 @@ msgid "<emph>Lambda</emph> is the parameter value."
msgstr "<emph>Lambda</emph> 是指数分布的参数。"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2947332\n"
@@ -39878,7 +37732,6 @@ msgstr "统计函数第二部分"
msgctxt ""
"04060182.xhp\n"
"hd_id3154372\n"
-"1\n"
"help.text"
msgid "<variable id=\"fh\"><link href=\"text/scalc/01/04060182.xhp\" name=\"Statistical Functions Part Two\">Statistical Functions Part Two</link></variable>"
msgstr "<variable id=\"fh\"><link href=\"text/scalc/01/04060182.xhp\" name=\"统计函数第二部分\">统计函数第二部分</link></variable>"
@@ -39895,7 +37748,6 @@ msgstr "<bookmark_value>FINV 函数</bookmark_value><bookmark_value>F 概率分
msgctxt ""
"04060182.xhp\n"
"hd_id3145388\n"
-"2\n"
"help.text"
msgid "FINV"
msgstr "FINV"
@@ -39904,7 +37756,6 @@ msgstr "FINV"
msgctxt ""
"04060182.xhp\n"
"par_id3155089\n"
-"3\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FINV\">Returns the inverse of the F probability distribution.</ahelp> The F distribution is used for F tests in order to set the relation between two differing data sets."
msgstr "<ahelp hid=\"HID_FUNC_FINV\">返回 F 概率分布函数的逆函数。</ahelp>F 分布函数用于 F 测试,以设置两个不同数据集之间的关系。"
@@ -39913,7 +37764,6 @@ msgstr "<ahelp hid=\"HID_FUNC_FINV\">返回 F 概率分布函数的逆函数。<
msgctxt ""
"04060182.xhp\n"
"hd_id3153816\n"
-"4\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -39922,7 +37772,6 @@ msgstr "语法"
msgctxt ""
"04060182.xhp\n"
"par_id3153068\n"
-"5\n"
"help.text"
msgid "FINV(Number; DegreesFreedom1; DegreesFreedom2)"
msgstr "FINV(Number; DegreesFreedom1; DegreesFreedom2)"
@@ -39931,7 +37780,6 @@ msgstr "FINV(Number; DegreesFreedom1; DegreesFreedom2)"
msgctxt ""
"04060182.xhp\n"
"par_id3146866\n"
-"6\n"
"help.text"
msgid "<emph>Number</emph> is probability value for which the inverse F distribution is to be calculated."
msgstr "<emph>Number</emph> 是用来计算 F 分布的逆函数值的概率值。"
@@ -39940,7 +37788,6 @@ msgstr "<emph>Number</emph> 是用来计算 F 分布的逆函数值的概率值
msgctxt ""
"04060182.xhp\n"
"par_id3153914\n"
-"7\n"
"help.text"
msgid "<emph>DegreesFreedom1</emph> is the number of degrees of freedom in the numerator of the F distribution."
msgstr "<emph>DegreesFreedom1</emph> 是 F 分布的分母自由度。"
@@ -39949,7 +37796,6 @@ msgstr "<emph>DegreesFreedom1</emph> 是 F 分布的分母自由度。"
msgctxt ""
"04060182.xhp\n"
"par_id3148607\n"
-"8\n"
"help.text"
msgid "<emph>DegreesFreedom2</emph> is the number of degrees of freedom in the denominator of the F distribution."
msgstr "<emph>DegreesFreedom2</emph> 是 F 分布的分母自由度。"
@@ -39958,7 +37804,6 @@ msgstr "<emph>DegreesFreedom2</emph> 是 F 分布的分母自由度。"
msgctxt ""
"04060182.xhp\n"
"hd_id3156021\n"
-"9\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -39967,13 +37812,11 @@ msgstr "示例"
msgctxt ""
"04060182.xhp\n"
"par_id3145073\n"
-"10\n"
"help.text"
msgid "<item type=\"input\">=FINV(0.5;5;10)</item> yields 0.93."
msgstr "<item type=\"input\">=FINV(0.5;5;10)</item> 等于 0.93。"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"bm_id2945388\n"
@@ -39985,17 +37828,14 @@ msgstr "<bookmark_value>FINV 函数</bookmark_value><bookmark_value>F 概率分
msgctxt ""
"04060182.xhp\n"
"hd_id2945388\n"
-"2\n"
"help.text"
msgid "F.INV"
msgstr "F.INV"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2955089\n"
-"3\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_F_INV_LT\">Returns the inverse of the cumulative F 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\">返回 F 概率分布函数的逆函数。</ahelp>F 分布函数用于 F 测试,以设置两个不同数据集之间的关系。"
@@ -40004,7 +37844,6 @@ msgstr "<ahelp hid=\"HID_FUNC_FINV\">返回 F 概率分布函数的逆函数。<
msgctxt ""
"04060182.xhp\n"
"hd_id2953816\n"
-"4\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -40013,37 +37852,30 @@ msgstr "语法"
msgctxt ""
"04060182.xhp\n"
"par_id2953068\n"
-"5\n"
"help.text"
msgid "F.INV(Number; DegreesFreedom1; DegreesFreedom2)"
msgstr "F.INV(Number; DegreesFreedom1; DegreesFreedom2)"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2946866\n"
-"6\n"
"help.text"
msgid "<emph>Number</emph> is probability value for which the inverse F distribution is to be calculated."
msgstr "<emph>Number</emph> 是用来计算 F 分布的逆函数值的概率值。"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2953914\n"
-"7\n"
"help.text"
msgid "<emph>DegreesFreedom1</emph> is the number of degrees of freedom in the numerator of the F distribution."
msgstr "<emph>DegreesFreedom1</emph> 是 F 分布的分母自由度。"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2948607\n"
-"8\n"
"help.text"
msgid "<emph>DegreesFreedom2</emph> is the number of degrees of freedom in the denominator of the F distribution."
msgstr "<emph>DegreesFreedom2</emph> 是 F 分布的分母自由度。"
@@ -40052,7 +37884,6 @@ msgstr "<emph>DegreesFreedom2</emph> 是 F 分布的分母自由度。"
msgctxt ""
"04060182.xhp\n"
"hd_id2956021\n"
-"9\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -40061,13 +37892,11 @@ msgstr "示例"
msgctxt ""
"04060182.xhp\n"
"par_id2945073\n"
-"10\n"
"help.text"
msgid "<item type=\"input\">=F.INV(0.5;5;10)</item> yields 0.9319331609."
msgstr "<item type=\"input\">=F.INV(0.5;5;10)</item> 返回 0.9319331609。"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"bm_id2845388\n"
@@ -40079,17 +37908,14 @@ msgstr "<bookmark_value>FINV 函数</bookmark_value><bookmark_value>F 概率分
msgctxt ""
"04060182.xhp\n"
"hd_id2845388\n"
-"2\n"
"help.text"
msgid "F.INV.RT"
msgstr ""
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2855089\n"
-"3\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_F_INV_RT\">Returns the inverse right tail of the F distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_TINV\">返回 t 分布函数的逆函数。</ahelp>"
@@ -40098,7 +37924,6 @@ msgstr "<ahelp hid=\"HID_FUNC_TINV\">返回 t 分布函数的逆函数。</ahelp
msgctxt ""
"04060182.xhp\n"
"hd_id2853816\n"
-"4\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -40107,37 +37932,30 @@ msgstr "语法"
msgctxt ""
"04060182.xhp\n"
"par_id2853068\n"
-"5\n"
"help.text"
msgid "F.INV.RT(Number; DegreesFreedom1; DegreesFreedom2)"
msgstr "F.INV.RT(Number; DegreesFreedom1; DegreesFreedom2)"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2846866\n"
-"6\n"
"help.text"
msgid "<emph>Number</emph> is probability value for which the inverse F distribution is to be calculated."
msgstr "<emph>Number</emph> 是用来计算 F 分布的逆函数值的概率值。"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2853914\n"
-"7\n"
"help.text"
msgid "<emph>DegreesFreedom1</emph> is the number of degrees of freedom in the numerator of the F distribution."
msgstr "<emph>DegreesFreedom1</emph> 是 F 分布的分母自由度。"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2848607\n"
-"8\n"
"help.text"
msgid "<emph>DegreesFreedom2</emph> is the number of degrees of freedom in the denominator of the F distribution."
msgstr "<emph>DegreesFreedom2</emph> 是 F 分布的分母自由度。"
@@ -40146,7 +37964,6 @@ msgstr "<emph>DegreesFreedom2</emph> 是 F 分布的分母自由度。"
msgctxt ""
"04060182.xhp\n"
"hd_id2856021\n"
-"9\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -40155,7 +37972,6 @@ msgstr "示例"
msgctxt ""
"04060182.xhp\n"
"par_id2845073\n"
-"10\n"
"help.text"
msgid "<item type=\"input\">=F.INV.RT(0.5;5;10)</item> yields 0.9319331609."
msgstr "<item type=\"input\">=F.INV.RT(0.5;5;10)</item> 返回 0.9319331609。"
@@ -40172,7 +37988,6 @@ msgstr "<bookmark_value>FISHER 函数</bookmark_value>"
msgctxt ""
"04060182.xhp\n"
"hd_id3150888\n"
-"12\n"
"help.text"
msgid "FISHER"
msgstr "FISHER"
@@ -40181,7 +37996,6 @@ msgstr "FISHER"
msgctxt ""
"04060182.xhp\n"
"par_id3155384\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FISHER\">Returns the Fisher transformation for x and creates a function close to a normal distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_FISHER\">返回 x 的 Fisher 转换,并且创建接近正态分布的函数。</ahelp>"
@@ -40190,7 +38004,6 @@ msgstr "<ahelp hid=\"HID_FUNC_FISHER\">返回 x 的 Fisher 转换,并且创建
msgctxt ""
"04060182.xhp\n"
"hd_id3149898\n"
-"14\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -40199,7 +38012,6 @@ msgstr "语法"
msgctxt ""
"04060182.xhp\n"
"par_id3143220\n"
-"15\n"
"help.text"
msgid "FISHER(Number)"
msgstr "FISHER(Number)"
@@ -40208,7 +38020,6 @@ msgstr "FISHER(Number)"
msgctxt ""
"04060182.xhp\n"
"par_id3159228\n"
-"16\n"
"help.text"
msgid "<emph>Number</emph> is the value to be transformed."
msgstr "<emph>Number</emph> 是要转换的数值。"
@@ -40217,7 +38028,6 @@ msgstr "<emph>Number</emph> 是要转换的数值。"
msgctxt ""
"04060182.xhp\n"
"hd_id3154763\n"
-"17\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -40226,7 +38036,6 @@ msgstr "示例"
msgctxt ""
"04060182.xhp\n"
"par_id3149383\n"
-"18\n"
"help.text"
msgid "<item type=\"input\">=FISHER(0.5)</item> yields 0.55."
msgstr "<item type=\"input\">=FISHER(0.5)</item> 等于 0.55。"
@@ -40243,7 +38052,6 @@ msgstr "<bookmark_value>FISHERINV 函数</bookmark_value><bookmark_value>Fisher
msgctxt ""
"04060182.xhp\n"
"hd_id3155758\n"
-"20\n"
"help.text"
msgid "FISHERINV"
msgstr "FISHERINV"
@@ -40252,7 +38060,6 @@ msgstr "FISHERINV"
msgctxt ""
"04060182.xhp\n"
"par_id3154734\n"
-"21\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FISHERINV\">Returns the inverse of the Fisher transformation for x and creates a function close to a normal distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_FISHERINV\">返回 x 的 Fisher 转换函数的逆函数,并且创建接近正态分布的函数。</ahelp>"
@@ -40261,7 +38068,6 @@ msgstr "<ahelp hid=\"HID_FUNC_FISHERINV\">返回 x 的 Fisher 转换函数的逆
msgctxt ""
"04060182.xhp\n"
"hd_id3155755\n"
-"22\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -40270,7 +38076,6 @@ msgstr "语法"
msgctxt ""
"04060182.xhp\n"
"par_id3146108\n"
-"23\n"
"help.text"
msgid "FISHERINV(Number)"
msgstr "FISHERINV(Number)"
@@ -40279,7 +38084,6 @@ msgstr "FISHERINV(Number)"
msgctxt ""
"04060182.xhp\n"
"par_id3145115\n"
-"24\n"
"help.text"
msgid "<emph>Number</emph> is the value that is to undergo reverse-transformation."
msgstr "<emph>Number</emph> 是一个数值,在该点进行反变换。"
@@ -40288,7 +38092,6 @@ msgstr "<emph>Number</emph> 是一个数值,在该点进行反变换。"
msgctxt ""
"04060182.xhp\n"
"hd_id3155744\n"
-"25\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -40297,7 +38100,6 @@ msgstr "示例"
msgctxt ""
"04060182.xhp\n"
"par_id3150432\n"
-"26\n"
"help.text"
msgid "<item type=\"input\">=FISHERINV(0.5)</item> yields 0.46."
msgstr "<item type=\"input\">=FISHERINV(0.5)</item> 等于 0.46。"
@@ -40314,7 +38116,6 @@ msgstr "<bookmark_value>FTEST 函数</bookmark_value>"
msgctxt ""
"04060182.xhp\n"
"hd_id3151390\n"
-"28\n"
"help.text"
msgid "FTEST"
msgstr "FTEST"
@@ -40323,7 +38124,6 @@ msgstr "FTEST"
msgctxt ""
"04060182.xhp\n"
"par_id3150534\n"
-"29\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FTEST\">Returns the result of an F test.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_FTEST\">返回 F 测试的结果。</ahelp>"
@@ -40332,7 +38132,6 @@ msgstr "<ahelp hid=\"HID_FUNC_FTEST\">返回 F 测试的结果。</ahelp>"
msgctxt ""
"04060182.xhp\n"
"hd_id3166466\n"
-"30\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -40341,7 +38140,6 @@ msgstr "语法"
msgctxt ""
"04060182.xhp\n"
"par_id3153024\n"
-"31\n"
"help.text"
msgid "FTEST(Data1; Data2)"
msgstr "FTEST(Data1; Data2)"
@@ -40350,7 +38148,6 @@ msgstr "FTEST(Data1; Data2)"
msgctxt ""
"04060182.xhp\n"
"par_id3150032\n"
-"32\n"
"help.text"
msgid "<emph>Data1</emph> is the first record array."
msgstr "<emph>Data1</emph> 为第一个记录数组。"
@@ -40359,7 +38156,6 @@ msgstr "<emph>Data1</emph> 为第一个记录数组。"
msgctxt ""
"04060182.xhp\n"
"par_id3153018\n"
-"33\n"
"help.text"
msgid "<emph>Data2</emph> is the second record array."
msgstr "<emph>Data2</emph> 为第二个记录数组。"
@@ -40368,7 +38164,6 @@ msgstr "<emph>Data2</emph> 为第二个记录数组。"
msgctxt ""
"04060182.xhp\n"
"hd_id3153123\n"
-"34\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -40377,7 +38172,6 @@ msgstr "示例"
msgctxt ""
"04060182.xhp\n"
"par_id3159126\n"
-"35\n"
"help.text"
msgid "<item type=\"input\">=FTEST(A1:A30;B1:B12)</item> calculates whether the two data sets are different in their variance and returns the probability that both sets could have come from the same total population."
msgstr "<item type=\"input\">=FTEST(A1:A30;B1:B12)</item> 判断这两个集合的方差是否有差异,如果两个集合来自相同的总体样本,则返回概率。"
@@ -40394,7 +38188,6 @@ msgstr "<bookmark_value>F.TEST 函数</bookmark_value>"
msgctxt ""
"04060182.xhp\n"
"hd_id2951390\n"
-"28\n"
"help.text"
msgid "F.TEST"
msgstr "F.TEST"
@@ -40403,7 +38196,6 @@ msgstr "F.TEST"
msgctxt ""
"04060182.xhp\n"
"par_id2950534\n"
-"29\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_F_TEST_MS\">Returns the result of an F test.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_F_TEST_MS\">返回F测试的结果。</ahelp>"
@@ -40412,7 +38204,6 @@ msgstr "<ahelp hid=\"HID_FUNC_F_TEST_MS\">返回F测试的结果。</ahelp>"
msgctxt ""
"04060182.xhp\n"
"hd_id2966466\n"
-"30\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -40421,7 +38212,6 @@ msgstr "语法"
msgctxt ""
"04060182.xhp\n"
"par_id2953024\n"
-"31\n"
"help.text"
msgid "F.TEST(Data1; Data2)"
msgstr "F.TEST(Data1; Data2)"
@@ -40430,7 +38220,6 @@ msgstr "F.TEST(Data1; Data2)"
msgctxt ""
"04060182.xhp\n"
"par_id2950032\n"
-"32\n"
"help.text"
msgid "<emph>Data1</emph> is the first record array."
msgstr "<emph>Data1</emph> 为第一个记录数组。"
@@ -40439,7 +38228,6 @@ msgstr "<emph>Data1</emph> 为第一个记录数组。"
msgctxt ""
"04060182.xhp\n"
"par_id2953018\n"
-"33\n"
"help.text"
msgid "<emph>Data2</emph> is the second record array."
msgstr "<emph>Data2</emph> 为第二个记录数组。"
@@ -40448,17 +38236,14 @@ msgstr "<emph>Data2</emph> 为第二个记录数组。"
msgctxt ""
"04060182.xhp\n"
"hd_id2953123\n"
-"34\n"
"help.text"
msgid "Example"
msgstr "示例"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2959126\n"
-"35\n"
"help.text"
msgid "<item type=\"input\">=F.TEST(A1:A30;B1:B12)</item> calculates whether the two data sets are different in their variance and returns the probability that both sets could have come from the same total population."
msgstr "<item type=\"input\">=FTEST(A1:A30;B1:B12)</item> 判断这两个集合的方差是否有差异,如果两个集合来自相同的总体样本,则返回概率。"
@@ -40475,7 +38260,6 @@ msgstr "<bookmark_value>FDIST 函数</bookmark_value>"
msgctxt ""
"04060182.xhp\n"
"hd_id3150372\n"
-"37\n"
"help.text"
msgid "FDIST"
msgstr "FDIST"
@@ -40484,7 +38268,6 @@ msgstr "FDIST"
msgctxt ""
"04060182.xhp\n"
"par_id3152981\n"
-"38\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FVERT\">Calculates the values of an F distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_FVERT\">计算 F 分布的值。</ahelp>"
@@ -40493,7 +38276,6 @@ msgstr "<ahelp hid=\"HID_FUNC_FVERT\">计算 F 分布的值。</ahelp>"
msgctxt ""
"04060182.xhp\n"
"hd_id3150484\n"
-"39\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -40502,7 +38284,6 @@ msgstr "语法"
msgctxt ""
"04060182.xhp\n"
"par_id3145826\n"
-"40\n"
"help.text"
msgid "FDIST(Number; DegreesFreedom1; DegreesFreedom2)"
msgstr "FDIST(Number; DegreesFreedom1; DegreesFreedom2)"
@@ -40511,7 +38292,6 @@ msgstr "FDIST(Number; DegreesFreedom1; DegreesFreedom2)"
msgctxt ""
"04060182.xhp\n"
"par_id3150461\n"
-"41\n"
"help.text"
msgid "<emph>Number</emph> is the value for which the F distribution is to be calculated."
msgstr "<emph>Number</emph> 用于计算 F 分布。"
@@ -40520,7 +38300,6 @@ msgstr "<emph>Number</emph> 用于计算 F 分布。"
msgctxt ""
"04060182.xhp\n"
"par_id3150029\n"
-"42\n"
"help.text"
msgid "<emph>degreesFreedom1</emph> is the degrees of freedom in the numerator in the F distribution."
msgstr "<emph>degreesFreedom1</emph> 是 F 分布的分子自由度。"
@@ -40529,7 +38308,6 @@ msgstr "<emph>degreesFreedom1</emph> 是 F 分布的分子自由度。"
msgctxt ""
"04060182.xhp\n"
"par_id3146877\n"
-"43\n"
"help.text"
msgid "<emph>degreesFreedom2</emph> is the degrees of freedom in the denominator in the F distribution."
msgstr "<emph>degreesFreedom2</emph> 是 F 分布的分母自由度。"
@@ -40538,7 +38316,6 @@ msgstr "<emph>degreesFreedom2</emph> 是 F 分布的分母自由度。"
msgctxt ""
"04060182.xhp\n"
"hd_id3147423\n"
-"44\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -40547,7 +38324,6 @@ msgstr "示例"
msgctxt ""
"04060182.xhp\n"
"par_id3150696\n"
-"45\n"
"help.text"
msgid "<item type=\"input\">=FDIST(0.8;8;12)</item> yields 0.61."
msgstr "<item type=\"input\">=FDIST(0.8;8;12)</item> 等于 0.61。"
@@ -40564,17 +38340,14 @@ msgstr "<bookmark_value>F.DIST 函数</bookmark_value>"
msgctxt ""
"04060182.xhp\n"
"hd_id2950372\n"
-"37\n"
"help.text"
msgid "F.DIST"
msgstr "F.DIST"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2952981\n"
-"38\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_F_DIST_LT\">Calculates the values of the left tail of the F distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_TINV\">返回 t 分布函数的逆函数。</ahelp>"
@@ -40583,7 +38356,6 @@ msgstr "<ahelp hid=\"HID_FUNC_TINV\">返回 t 分布函数的逆函数。</ahelp
msgctxt ""
"04060182.xhp\n"
"hd_id2950484\n"
-"39\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -40592,47 +38364,38 @@ msgstr "语法"
msgctxt ""
"04060182.xhp\n"
"par_id2945826\n"
-"40\n"
"help.text"
msgid "F.DIST(Number; DegreesFreedom1; DegreesFreedom2; Cumulative)"
msgstr "F.DIST(Number; DegreesFreedom1; DegreesFreedom2; Cumulative)"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2950461\n"
-"41\n"
"help.text"
msgid "<emph>Number</emph> is the value for which the F distribution is to be calculated."
msgstr "<emph>Number</emph> 用于计算 F 分布。"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2950029\n"
-"42\n"
"help.text"
msgid "<emph>degreesFreedom1</emph> is the degrees of freedom in the numerator in the F distribution."
msgstr "<emph>degreesFreedom1</emph> 是 F 分布的分子自由度。"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2946877\n"
-"43\n"
"help.text"
msgid "<emph>degreesFreedom2</emph> is the degrees of freedom in the denominator in the F distribution."
msgstr "<emph>degreesFreedom2</emph> 是 F 分布的分母自由度。"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2946878\n"
-"43\n"
"help.text"
msgid "<emph>Cumulative</emph> = 0 or False calculates the density function <emph>Cumulative</emph> = 1 or True calculates the distribution."
msgstr "<emph>C</emph>(可选) = 0 或 False 返回密度函数,<emph>C</emph> = 1 或 True 返回分布函数。"
@@ -40641,7 +38404,6 @@ msgstr "<emph>C</emph>(可选) = 0 或 False 返回密度函数,<emph>C</e
msgctxt ""
"04060182.xhp\n"
"hd_id2947423\n"
-"44\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -40650,7 +38412,6 @@ msgstr "示例"
msgctxt ""
"04060182.xhp\n"
"par_id2950696\n"
-"45\n"
"help.text"
msgid "<item type=\"input\">=F.DIST(0.8;8;12;0)</item> yields 0.7095282499."
msgstr "<item type=\"input\">=F.DIST(0.8;8;12;0)</item> 返回 0.7095282499。"
@@ -40659,7 +38420,6 @@ msgstr "<item type=\"input\">=F.DIST(0.8;8;12;0)</item> 返回 0.7095282499。"
msgctxt ""
"04060182.xhp\n"
"par_id2950697\n"
-"45\n"
"help.text"
msgid "<item type=\"input\">=F.DIST(0.8;8;12;1)</item> yields 0.3856603563."
msgstr "<item type=\"input\">=F.DIST(0.8;8;12;1)</item> 返回 0.3856603563。"
@@ -40676,17 +38436,14 @@ msgstr "<bookmark_value>F.DIST.RT 函数</bookmark_value>"
msgctxt ""
"04060182.xhp\n"
"hd_id280372\n"
-"37\n"
"help.text"
msgid "F.DIST.RT"
msgstr ""
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2852981\n"
-"38\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_F_DIST_RT\">Calculates the values of the right tail of the F distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_TINV\">返回 t 分布函数的逆函数。</ahelp>"
@@ -40695,7 +38452,6 @@ msgstr "<ahelp hid=\"HID_FUNC_TINV\">返回 t 分布函数的逆函数。</ahelp
msgctxt ""
"04060182.xhp\n"
"hd_id2850484\n"
-"39\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -40704,37 +38460,30 @@ msgstr "语法"
msgctxt ""
"04060182.xhp\n"
"par_id2845826\n"
-"40\n"
"help.text"
msgid "F.DIST.RT(Number; DegreesFreedom1; DegreesFreedom2)"
msgstr "F.DIST.RT(Number; DegreesFreedom1; DegreesFreedom2)"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2850461\n"
-"41\n"
"help.text"
msgid "<emph>Number</emph> is the value for which the F distribution is to be calculated."
msgstr "<emph>Number</emph> 用于计算 F 分布。"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2850029\n"
-"42\n"
"help.text"
msgid "<emph>degreesFreedom1</emph> is the degrees of freedom in the numerator in the F distribution."
msgstr "<emph>degreesFreedom1</emph> 是 F 分布的分子自由度。"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2846877\n"
-"43\n"
"help.text"
msgid "<emph>degreesFreedom2</emph> is the degrees of freedom in the denominator in the F distribution."
msgstr "<emph>degreesFreedom2</emph> 是 F 分布的分母自由度。"
@@ -40743,7 +38492,6 @@ msgstr "<emph>degreesFreedom2</emph> 是 F 分布的分母自由度。"
msgctxt ""
"04060182.xhp\n"
"hd_id2847423\n"
-"44\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -40752,7 +38500,6 @@ msgstr "示例"
msgctxt ""
"04060182.xhp\n"
"par_id2850696\n"
-"45\n"
"help.text"
msgid "<item type=\"input\">=F.DIST.RT(0.8;8;12)</item> yields 0.6143396437."
msgstr "<item type=\"input\">=F.DIST.RT(0.8;8;12)</item> 返回 0.6143396437。"
@@ -40809,7 +38556,6 @@ msgstr "<bookmark_value>GAMMAINV 函数</bookmark_value>"
msgctxt ""
"04060182.xhp\n"
"hd_id3154841\n"
-"47\n"
"help.text"
msgid "GAMMAINV"
msgstr "GAMMAINV"
@@ -40818,7 +38564,6 @@ msgstr "GAMMAINV"
msgctxt ""
"04060182.xhp\n"
"par_id3153932\n"
-"48\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GAMMAINV\">Returns the inverse of the Gamma cumulative distribution GAMMADIST.</ahelp> This function allows you to search for variables with different distribution."
msgstr "<ahelp hid=\"HID_FUNC_GAMMAINV\">返回 Gamma 累积分布函数 GAMMADIST 的逆函数。</ahelp> 此函数用于搜索具有不同分布的变量。"
@@ -40827,7 +38572,6 @@ msgstr "<ahelp hid=\"HID_FUNC_GAMMAINV\">返回 Gamma 累积分布函数 GAMMADI
msgctxt ""
"04060182.xhp\n"
"hd_id3149949\n"
-"49\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -40836,7 +38580,6 @@ msgstr "语法"
msgctxt ""
"04060182.xhp\n"
"par_id3155828\n"
-"50\n"
"help.text"
msgid "GAMMAINV(Number; Alpha; Beta)"
msgstr "GAMMAINV(Number; Alpha; Beta)"
@@ -40845,7 +38588,6 @@ msgstr "GAMMAINV(Number; Alpha; Beta)"
msgctxt ""
"04060182.xhp\n"
"par_id3145138\n"
-"51\n"
"help.text"
msgid "<emph>Number</emph> is the probability value for which the inverse Gamma distribution is to be calculated."
msgstr "<emph>Number</emph> 是 Gamma 分布逆函数的概率值。"
@@ -40854,7 +38596,6 @@ msgstr "<emph>Number</emph> 是 Gamma 分布逆函数的概率值。"
msgctxt ""
"04060182.xhp\n"
"par_id3152785\n"
-"52\n"
"help.text"
msgid "<emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
msgstr "<emph>Alpha</emph> 是 Gamma 分布的 alpha 参数。"
@@ -40863,7 +38604,6 @@ msgstr "<emph>Alpha</emph> 是 Gamma 分布的 alpha 参数。"
msgctxt ""
"04060182.xhp\n"
"par_id3154561\n"
-"53\n"
"help.text"
msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution."
msgstr "<emph>Beta</emph> 是 Gamma 分布的 Beta 参数。"
@@ -40872,7 +38612,6 @@ msgstr "<emph>Beta</emph> 是 Gamma 分布的 Beta 参数。"
msgctxt ""
"04060182.xhp\n"
"hd_id3148734\n"
-"54\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -40881,7 +38620,6 @@ msgstr "示例"
msgctxt ""
"04060182.xhp\n"
"par_id3153331\n"
-"55\n"
"help.text"
msgid "<item type=\"input\">=GAMMAINV(0.8;1;1)</item> yields 1.61."
msgstr "<item type=\"input\">=GAMMAINV(0.8;1;1)</item> 等于 1.61。"
@@ -40898,17 +38636,14 @@ msgstr "<bookmark_value>GAMMA.INV 函数</bookmark_value>"
msgctxt ""
"04060182.xhp\n"
"hd_id2914841\n"
-"47\n"
"help.text"
msgid "GAMMA.INV"
msgstr "GAMMA.INV"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2913932\n"
-"48\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GAMMAINV_MS\">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\">返回 Gamma 累积分布函数 GAMMADIST 的逆函数。</ahelp> 此函数用于搜索具有不同分布的变量。"
@@ -40925,7 +38660,6 @@ msgstr ""
msgctxt ""
"04060182.xhp\n"
"hd_id2919949\n"
-"49\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -40934,17 +38668,14 @@ msgstr "语法"
msgctxt ""
"04060182.xhp\n"
"par_id2915828\n"
-"50\n"
"help.text"
msgid "GAMMA.INV(Number; Alpha; Beta)"
msgstr "GAMMA.INV(Number; Alpha; Beta)"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2915138\n"
-"51\n"
"help.text"
msgid "<emph>Number</emph> is the probability value for which the inverse Gamma distribution is to be calculated."
msgstr "<emph>Number</emph> 是 Gamma 分布逆函数的概率值。"
@@ -40953,7 +38684,6 @@ msgstr "<emph>Number</emph> 是 Gamma 分布逆函数的概率值。"
msgctxt ""
"04060182.xhp\n"
"par_id2912785\n"
-"52\n"
"help.text"
msgid "<emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
msgstr "<emph>Alpha</emph> 是 Gamma 分布的 alpha 参数。"
@@ -40962,7 +38692,6 @@ msgstr "<emph>Alpha</emph> 是 Gamma 分布的 alpha 参数。"
msgctxt ""
"04060182.xhp\n"
"par_id2914561\n"
-"53\n"
"help.text"
msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution."
msgstr "<emph>Beta</emph> 是 Gamma 分布的 Beta 参数。"
@@ -40971,7 +38700,6 @@ msgstr "<emph>Beta</emph> 是 Gamma 分布的 Beta 参数。"
msgctxt ""
"04060182.xhp\n"
"hd_id2918734\n"
-"54\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -40980,7 +38708,6 @@ msgstr "示例"
msgctxt ""
"04060182.xhp\n"
"par_id2913331\n"
-"55\n"
"help.text"
msgid "<item type=\"input\">=GAMMA.INV(0.8;1;1)</item> yields 1.61."
msgstr "<item type=\"input\">=GAMMA.INV(0.8;1;1)</item> 返回 1.61。"
@@ -40997,7 +38724,6 @@ msgstr "<bookmark_value>GAMMALN 函数</bookmark_value><bookmark_value>Gamma 函
msgctxt ""
"04060182.xhp\n"
"hd_id3154806\n"
-"57\n"
"help.text"
msgid "GAMMALN"
msgstr "GAMMALN"
@@ -41006,7 +38732,6 @@ msgstr "GAMMALN"
msgctxt ""
"04060182.xhp\n"
"par_id3148572\n"
-"58\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GAMMALN\">Returns the natural logarithm of the Gamma function: G(x).</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GAMMALN\">返回 Gamma 函数的自然对数:G(x)。</ahelp>"
@@ -41015,7 +38740,6 @@ msgstr "<ahelp hid=\"HID_FUNC_GAMMALN\">返回 Gamma 函数的自然对数:G(x
msgctxt ""
"04060182.xhp\n"
"hd_id3152999\n"
-"59\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -41024,7 +38748,6 @@ msgstr "语法"
msgctxt ""
"04060182.xhp\n"
"par_id3153112\n"
-"60\n"
"help.text"
msgid "GAMMALN(Number)"
msgstr "GAMMALN(Number)"
@@ -41033,7 +38756,6 @@ msgstr "GAMMALN(Number)"
msgctxt ""
"04060182.xhp\n"
"par_id3154502\n"
-"61\n"
"help.text"
msgid "<emph>Number</emph> is the value for which the natural logarithm of the Gamma function is to be calculated."
msgstr "<emph>Number</emph> 是需要计算 Gamma 函数的自然对数的数值。"
@@ -41042,7 +38764,6 @@ msgstr "<emph>Number</emph> 是需要计算 Gamma 函数的自然对数的数值
msgctxt ""
"04060182.xhp\n"
"hd_id3153568\n"
-"62\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -41051,13 +38772,11 @@ msgstr "示例"
msgctxt ""
"04060182.xhp\n"
"par_id3153730\n"
-"63\n"
"help.text"
msgid "<item type=\"input\">=GAMMALN(2)</item> yields 0."
msgstr "<item type=\"input\">=GAMMALN(2)</item> 等于 0。"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"bm_id2914806\n"
@@ -41069,17 +38788,14 @@ msgstr "<bookmark_value>GAMMALN 函数</bookmark_value><bookmark_value>Gamma 函
msgctxt ""
"04060182.xhp\n"
"hd_id2914806\n"
-"57\n"
"help.text"
msgid "GAMMALN.PRECISE"
msgstr ""
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2918572\n"
-"58\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GAMMALN_MS\">Returns the natural logarithm of the Gamma function: G(x).</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GAMMALN\">返回 Gamma 函数的自然对数:G(x)。</ahelp>"
@@ -41088,7 +38804,6 @@ msgstr "<ahelp hid=\"HID_FUNC_GAMMALN\">返回 Gamma 函数的自然对数:G(x
msgctxt ""
"04060182.xhp\n"
"hd_id2912999\n"
-"59\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -41097,17 +38812,14 @@ msgstr "语法"
msgctxt ""
"04060182.xhp\n"
"par_id2913112\n"
-"60\n"
"help.text"
msgid "GAMMALN.PRECISE(Number)"
msgstr ""
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2914502\n"
-"61\n"
"help.text"
msgid "<emph>Number</emph> is the value for which the natural logarithm of the Gamma function is to be calculated."
msgstr "<emph>Number</emph> 是需要计算 Gamma 函数的自然对数的数值。"
@@ -41116,7 +38828,6 @@ msgstr "<emph>Number</emph> 是需要计算 Gamma 函数的自然对数的数值
msgctxt ""
"04060182.xhp\n"
"hd_id2913568\n"
-"62\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -41125,7 +38836,6 @@ msgstr "示例"
msgctxt ""
"04060182.xhp\n"
"par_id2913730\n"
-"63\n"
"help.text"
msgid "<item type=\"input\">=GAMMALN.PRECISE(2)</item> yields 0."
msgstr "<item type=\"input\">=GAMMALN.PRECISE(2)</item> 返回 0。"
@@ -41142,7 +38852,6 @@ msgstr "<bookmark_value>GAMMADIST 函数</bookmark_value>"
msgctxt ""
"04060182.xhp\n"
"hd_id3150132\n"
-"65\n"
"help.text"
msgid "GAMMADIST"
msgstr "GAMMADIST"
@@ -41151,7 +38860,6 @@ msgstr "GAMMADIST"
msgctxt ""
"04060182.xhp\n"
"par_id3155931\n"
-"66\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GAMMAVERT\">Returns the values of a Gamma distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GAMMAVERT\">返回 Gamma 分布的值。</ahelp>"
@@ -41168,7 +38876,6 @@ msgstr "逆函数是 GAMMAINV。"
msgctxt ""
"04060182.xhp\n"
"hd_id3147373\n"
-"67\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -41177,7 +38884,6 @@ msgstr "语法"
msgctxt ""
"04060182.xhp\n"
"par_id3155436\n"
-"68\n"
"help.text"
msgid "GAMMADIST(Number; Alpha; Beta; C)"
msgstr "GAMMADIST(Number; Alpha; Beta; C)"
@@ -41186,7 +38892,6 @@ msgstr "GAMMADIST(Number; Alpha; Beta; C)"
msgctxt ""
"04060182.xhp\n"
"par_id3150571\n"
-"69\n"
"help.text"
msgid "<emph>Number</emph> is the value for which the Gamma distribution is to be calculated."
msgstr "<emph>Number</emph> 是计算其 Gamma 分布的数值。"
@@ -41195,7 +38900,6 @@ msgstr "<emph>Number</emph> 是计算其 Gamma 分布的数值。"
msgctxt ""
"04060182.xhp\n"
"par_id3145295\n"
-"70\n"
"help.text"
msgid "<emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
msgstr "<emph>Alpha</emph> 是 Gamma 分布的 alpha 参数。"
@@ -41204,7 +38908,6 @@ msgstr "<emph>Alpha</emph> 是 Gamma 分布的 alpha 参数。"
msgctxt ""
"04060182.xhp\n"
"par_id3151015\n"
-"71\n"
"help.text"
msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution"
msgstr "<emph>Beta</emph> 是 Gamma 分布的 Beta 参数。"
@@ -41213,7 +38916,6 @@ msgstr "<emph>Beta</emph> 是 Gamma 分布的 Beta 参数。"
msgctxt ""
"04060182.xhp\n"
"par_id3157972\n"
-"72\n"
"help.text"
msgid "<emph>C</emph> (optional) = 0 or False calculates the density function <emph>C</emph> = 1 or True calculates the distribution."
msgstr "<emph>C</emph>(可选) = 0 或 False 返回密度函数,<emph>C</emph> = 1 或 True 返回分布函数。"
@@ -41222,7 +38924,6 @@ msgstr "<emph>C</emph>(可选) = 0 或 False 返回密度函数,<emph>C</e
msgctxt ""
"04060182.xhp\n"
"hd_id3149535\n"
-"73\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -41231,7 +38932,6 @@ msgstr "示例"
msgctxt ""
"04060182.xhp\n"
"par_id3145354\n"
-"74\n"
"help.text"
msgid "<item type=\"input\">=GAMMADIST(2;1;1;1)</item> yields 0.86."
msgstr "<item type=\"input\">=GAMMADIST(2;1;1;1)</item> 等于 0.86。"
@@ -41253,7 +38953,6 @@ msgid "GAMMA.DIST"
msgstr "GAMMA.DIST"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2406201422414690\n"
@@ -41294,7 +38993,6 @@ msgid "GAMMA.DIST(Number; Alpha; Beta; C)"
msgstr "GAMMA.DIST(Number, Alpha, Beta, C)"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2406201422385134\n"
@@ -41319,7 +39017,6 @@ msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution"
msgstr "<emph>Beta</emph> 是 Gamma 分布的 Beta 参数。"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2406201422391058\n"
@@ -41355,7 +39052,6 @@ msgstr "<bookmark_value>GAUSS 函数</bookmark_value><bookmark_value>正态分
msgctxt ""
"04060182.xhp\n"
"hd_id3150272\n"
-"76\n"
"help.text"
msgid "GAUSS"
msgstr "GAUSS"
@@ -41364,7 +39060,6 @@ msgstr "GAUSS"
msgctxt ""
"04060182.xhp\n"
"par_id3149030\n"
-"77\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GAUSS\">Returns the standard normal cumulative distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GAUSS\">返回标准正态累积分布的区间点。</ahelp>"
@@ -41381,7 +39076,6 @@ msgstr "为 GAUSS(x)=NORMSDIST(x)-0.5"
msgctxt ""
"04060182.xhp\n"
"hd_id3153551\n"
-"78\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -41390,7 +39084,6 @@ msgstr "语法"
msgctxt ""
"04060182.xhp\n"
"par_id3155368\n"
-"79\n"
"help.text"
msgid "GAUSS(Number)"
msgstr "GAUSS(Number)"
@@ -41399,7 +39092,6 @@ msgstr "GAUSS(Number)"
msgctxt ""
"04060182.xhp\n"
"par_id3153228\n"
-"80\n"
"help.text"
msgid "<emph>Number</emph> is the value for which the value of the standard normal distribution is to be calculated."
msgstr "<emph>Number</emph> 是要计算标准正态分布函数值的值。"
@@ -41408,7 +39100,6 @@ msgstr "<emph>Number</emph> 是要计算标准正态分布函数值的值。"
msgctxt ""
"04060182.xhp\n"
"hd_id3150691\n"
-"81\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -41417,7 +39108,6 @@ msgstr "示例"
msgctxt ""
"04060182.xhp\n"
"par_id3154867\n"
-"82\n"
"help.text"
msgid "<item type=\"input\">=GAUSS(0.19)</item> = 0.08"
msgstr "<item type=\"input\">=GAUSS(0.19)</item> = 0.08"
@@ -41426,7 +39116,6 @@ msgstr "<item type=\"input\">=GAUSS(0.19)</item> = 0.08"
msgctxt ""
"04060182.xhp\n"
"par_id3148594\n"
-"83\n"
"help.text"
msgid "<item type=\"input\">=GAUSS(0.0375)</item> = 0.01"
msgstr "<item type=\"input\">=GAUSS(0.0375)</item> = 0.01"
@@ -41443,7 +39132,6 @@ msgstr "<bookmark_value>GEOMEAN 函数</bookmark_value><bookmark_value>平均值
msgctxt ""
"04060182.xhp\n"
"hd_id3148425\n"
-"85\n"
"help.text"
msgid "GEOMEAN"
msgstr "GEOMEAN"
@@ -41452,7 +39140,6 @@ msgstr "GEOMEAN"
msgctxt ""
"04060182.xhp\n"
"par_id3156257\n"
-"86\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GEOMITTEL\">Returns the geometric mean of a sample.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GEOMITTEL\">返回抽样的几何平均值。</ahelp>"
@@ -41461,7 +39148,6 @@ msgstr "<ahelp hid=\"HID_FUNC_GEOMITTEL\">返回抽样的几何平均值。</ahe
msgctxt ""
"04060182.xhp\n"
"hd_id3147167\n"
-"87\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -41470,7 +39156,6 @@ msgstr "语法"
msgctxt ""
"04060182.xhp\n"
"par_id3153720\n"
-"88\n"
"help.text"
msgid "GEOMEAN(Number1; Number2; ...Number30)"
msgstr "GEOMEAN(Number1; Number2; ...Number30)"
@@ -41479,7 +39164,6 @@ msgstr "GEOMEAN(Number1; Number2; ...Number30)"
msgctxt ""
"04060182.xhp\n"
"par_id3152585\n"
-"89\n"
"help.text"
msgid "<emph>Number1, Number2,...Number30</emph> are numeric arguments or ranges that represent a random sample."
msgstr "<emph>Number1, Number2,...Number30</emph> 是数字参数或表示随机抽样的区域。"
@@ -41488,7 +39172,6 @@ msgstr "<emph>Number1, Number2,...Number30</emph> 是数字参数或表示随机
msgctxt ""
"04060182.xhp\n"
"hd_id3146146\n"
-"90\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -41497,7 +39180,6 @@ msgstr "示例"
msgctxt ""
"04060182.xhp\n"
"par_id3149819\n"
-"92\n"
"help.text"
msgid "<item type=\"input\">=GEOMEAN(23;46;69)</item> = 41.79. The geometric mean value of this random sample is therefore 41.79."
msgstr "<item type=\"input\">=GEOMEAN(23;46;69)</item> = 41.79. 因此,这三个数的几何平均值等于 41.79。"
@@ -41514,7 +39196,6 @@ msgstr "<bookmark_value>TRIMMEAN 函数</bookmark_value><bookmark_value>平均
msgctxt ""
"04060182.xhp\n"
"hd_id3152966\n"
-"94\n"
"help.text"
msgid "TRIMMEAN"
msgstr "TRIMMEAN"
@@ -41523,7 +39204,6 @@ msgstr "TRIMMEAN"
msgctxt ""
"04060182.xhp\n"
"par_id3149716\n"
-"95\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GESTUTZTMITTEL\">Returns the mean of a data set without the Alpha percent of data at the margins.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GESTUTZTMITTEL\">返回数据集的平均值(不含边际数据的 Alpha 百分比)。</ahelp>"
@@ -41532,7 +39212,6 @@ msgstr "<ahelp hid=\"HID_FUNC_GESTUTZTMITTEL\">返回数据集的平均值(不
msgctxt ""
"04060182.xhp\n"
"hd_id3149281\n"
-"96\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -41541,7 +39220,6 @@ msgstr "语法"
msgctxt ""
"04060182.xhp\n"
"par_id3154821\n"
-"97\n"
"help.text"
msgid "TRIMMEAN(Data; Alpha)"
msgstr "TRIMMEAN(Data; Alpha)"
@@ -41550,7 +39228,6 @@ msgstr "TRIMMEAN(Data; Alpha)"
msgctxt ""
"04060182.xhp\n"
"par_id3155834\n"
-"98\n"
"help.text"
msgid "<emph>Data</emph> is the array of data in the sample."
msgstr "<emph>Data</emph> 是示例中的数据矩阵。"
@@ -41559,7 +39236,6 @@ msgstr "<emph>Data</emph> 是示例中的数据矩阵。"
msgctxt ""
"04060182.xhp\n"
"par_id3156304\n"
-"99\n"
"help.text"
msgid "<emph>Alpha</emph> is the percentage of the marginal data that will not be taken into consideration."
msgstr "<emph>Alpha</emph> 是计算时所要除去的临界数据的比例。"
@@ -41568,7 +39244,6 @@ msgstr "<emph>Alpha</emph> 是计算时所要除去的临界数据的比例。"
msgctxt ""
"04060182.xhp\n"
"hd_id3151180\n"
-"100\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -41577,7 +39252,6 @@ msgstr "示例"
msgctxt ""
"04060182.xhp\n"
"par_id3156130\n"
-"101\n"
"help.text"
msgid "<item type=\"input\">=TRIMMEAN(A1:A50; 0.1)</item> calculates the mean value of numbers in A1:A50, without taking into consideration the 5 percent of the values representing the highest values and the 5 percent of the values representing the lowest ones. The percentage numbers refer to the amount of the untrimmed mean value, not to the number of summands."
msgstr "<item type=\"input\">=TRIMMEAN(A1:A50; 0.1)</item> 计算 A1:A50 中数字的平均值,且不考虑代表最高值的占 5% 的值和代表最低值的占 5% 的值。百分比是指未调和平均值的数量,而非被加数的数量。"
@@ -41594,7 +39268,6 @@ msgstr "<bookmark_value>ZTEST 函数</bookmark_value>"
msgctxt ""
"04060182.xhp\n"
"hd_id3153216\n"
-"103\n"
"help.text"
msgid "ZTEST"
msgstr "ZTEST"
@@ -41603,7 +39276,6 @@ msgstr "ZTEST"
msgctxt ""
"04060182.xhp\n"
"par_id3150758\n"
-"104\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GTEST\">Calculates the probability of observing a z-statistic greater than the one computed based on a sample.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GTEST\">计算观测统计信息的概率大于基于样本计算的概率。</ahelp>"
@@ -41612,7 +39284,6 @@ msgstr "<ahelp hid=\"HID_FUNC_GTEST\">计算观测统计信息的概率大于基
msgctxt ""
"04060182.xhp\n"
"hd_id3150872\n"
-"105\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -41621,7 +39292,6 @@ msgstr "语法"
msgctxt ""
"04060182.xhp\n"
"par_id3153274\n"
-"106\n"
"help.text"
msgid "ZTEST(Data; mu; Sigma)"
msgstr "ZTEST(Data; mu; Sigma)"
@@ -41630,7 +39300,6 @@ msgstr "ZTEST(Data; mu; Sigma)"
msgctxt ""
"04060182.xhp\n"
"par_id3156109\n"
-"107\n"
"help.text"
msgid "<emph>Data</emph> is the given sample, drawn from a normally distributed population."
msgstr "<emph>Data</emph> 指的是取自正态分布总体样本中的给定抽样。"
@@ -41639,7 +39308,6 @@ msgstr "<emph>Data</emph> 指的是取自正态分布总体样本中的给定抽
msgctxt ""
"04060182.xhp\n"
"par_id3149977\n"
-"108\n"
"help.text"
msgid "<emph>mu</emph> is the known mean of the population."
msgstr "<emph>mu</emph> 指的是总体样本已知的平均值。"
@@ -41648,7 +39316,6 @@ msgstr "<emph>mu</emph> 指的是总体样本已知的平均值。"
msgctxt ""
"04060182.xhp\n"
"par_id3154740\n"
-"109\n"
"help.text"
msgid "<emph>Sigma</emph> (optional) is the known standard deviation of the population. If omitted, the standard deviation of the given sample is used."
msgstr "<emph>Sigma</emph>(可选择的)指的是总体样本已知的标准偏差。如果省略,则使用给定样本的标准偏差。"
@@ -41673,17 +39340,14 @@ msgstr "<bookmark_value>Z.TEST 函数</bookmark_value>"
msgctxt ""
"04060182.xhp\n"
"hd_id2953216\n"
-"103\n"
"help.text"
msgid "Z.TEST"
msgstr "Z.TEST"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2950758\n"
-"104\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_Z_TEST_MS\">Calculates the probability of observing a z-statistic greater than the one computed based on a sample.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GTEST\">计算观测统计信息的概率大于基于样本计算的概率。</ahelp>"
@@ -41692,7 +39356,6 @@ msgstr "<ahelp hid=\"HID_FUNC_GTEST\">计算观测统计信息的概率大于基
msgctxt ""
"04060182.xhp\n"
"hd_id2950872\n"
-"105\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -41701,17 +39364,14 @@ msgstr "语法"
msgctxt ""
"04060182.xhp\n"
"par_id2953274\n"
-"106\n"
"help.text"
msgid "Z.TEST(Data; mu; Sigma)"
msgstr "Z.TEST(Data, mu, Sigma)"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2956109\n"
-"107\n"
"help.text"
msgid "<emph>Data</emph> is the given sample, drawn from a normally distributed population."
msgstr "<emph>Data</emph> 指的是取自正态分布总体样本中的给定抽样。"
@@ -41720,17 +39380,14 @@ msgstr "<emph>Data</emph> 指的是取自正态分布总体样本中的给定抽
msgctxt ""
"04060182.xhp\n"
"par_id2949977\n"
-"108\n"
"help.text"
msgid "<emph>mu</emph> is the known mean of the population."
msgstr "<emph>mu</emph> 指的是总体样本已知的平均值。"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2954740\n"
-"109\n"
"help.text"
msgid "<emph>Sigma</emph> (optional) is the known standard deviation of the population. If omitted, the standard deviation of the given sample is used."
msgstr "<emph>Sigma</emph>(可选择的)指的是总体样本已知的标准偏差。如果省略,则使用给定样本的标准偏差。"
@@ -41739,7 +39396,6 @@ msgstr "<emph>Sigma</emph>(可选择的)指的是总体样本已知的标准
msgctxt ""
"04060182.xhp\n"
"hd_id2949539\n"
-"58\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -41748,7 +39404,6 @@ msgstr "示例"
msgctxt ""
"04060182.xhp\n"
"par_id2948770\n"
-"59\n"
"help.text"
msgid "<item type=\"input\">=Z.TEST(A2:A20; 9; 2)</item> returns the result of a z-test on a sample A2:A20 drawn from a population with known mean 9 and known standard deviation 2."
msgstr ""
@@ -41765,7 +39420,6 @@ msgstr "<bookmark_value>HARMEAN 函数</bookmark_value><bookmark_value>平均值
msgctxt ""
"04060182.xhp\n"
"hd_id3153623\n"
-"113\n"
"help.text"
msgid "HARMEAN"
msgstr "HARMEAN"
@@ -41774,7 +39428,6 @@ msgstr "HARMEAN"
msgctxt ""
"04060182.xhp\n"
"par_id3155102\n"
-"114\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_HARMITTEL\">Returns the harmonic mean of a data set.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_HARMITTEL\">返回数据集的调和平均值。</ahelp>"
@@ -41783,7 +39436,6 @@ msgstr "<ahelp hid=\"HID_FUNC_HARMITTEL\">返回数据集的调和平均值。</
msgctxt ""
"04060182.xhp\n"
"hd_id3146900\n"
-"115\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -41792,7 +39444,6 @@ msgstr "语法"
msgctxt ""
"04060182.xhp\n"
"par_id3149287\n"
-"116\n"
"help.text"
msgid "HARMEAN(Number1; Number2; ...Number30)"
msgstr "HARMEAN(Number1; Number2; ...Number30)"
@@ -41801,7 +39452,6 @@ msgstr "HARMEAN(Number1; Number2; ...Number30)"
msgctxt ""
"04060182.xhp\n"
"par_id3154303\n"
-"117\n"
"help.text"
msgid "<emph>Number1,Number2,...Number30</emph> are up to 30 values or ranges, that can be used to calculate the harmonic mean."
msgstr "<emph>Number1,Number2,...Number30</emph> 最多有 30 个数值或区域,可用于计算调和平均值。"
@@ -41810,7 +39460,6 @@ msgstr "<emph>Number1,Number2,...Number30</emph> 最多有 30 个数值或区域
msgctxt ""
"04060182.xhp\n"
"hd_id3159179\n"
-"118\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -41819,7 +39468,6 @@ msgstr "示例"
msgctxt ""
"04060182.xhp\n"
"par_id3146093\n"
-"120\n"
"help.text"
msgid "<item type=\"input\">=HARMEAN(23;46;69)</item> = 37.64. The harmonic mean of this random sample is thus 37.64"
msgstr "<item type=\"input\">=HARMEAN(23;46;69)</item> = 37.64. 这三个随机样本的调和平均值为 37.64。"
@@ -41836,7 +39484,6 @@ msgstr "<bookmark_value>HYPGEOMDIST 函数</bookmark_value><bookmark_value>不
msgctxt ""
"04060182.xhp\n"
"hd_id3152801\n"
-"122\n"
"help.text"
msgid "HYPGEOMDIST"
msgstr "HYPGEOMDIST"
@@ -41845,7 +39492,6 @@ msgstr "HYPGEOMDIST"
msgctxt ""
"04060182.xhp\n"
"par_id3159341\n"
-"123\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\">Returns the hypergeometric distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\">返回超几何分布的函数值。</ahelp>"
@@ -41854,7 +39500,6 @@ msgstr "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\">返回超几何分布的函数值。
msgctxt ""
"04060182.xhp\n"
"hd_id3154697\n"
-"124\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -41863,7 +39508,6 @@ msgstr "语法"
msgctxt ""
"04060182.xhp\n"
"par_id3155388\n"
-"125\n"
"help.text"
msgid "HYPGEOMDIST(X; NSample; Successes; NPopulation)"
msgstr "HYPGEOMDIST(X; NSample; Successes; NPopulation)"
@@ -41872,7 +39516,6 @@ msgstr "HYPGEOMDIST(X; NSample; Successes; NPopulation)"
msgctxt ""
"04060182.xhp\n"
"par_id3154933\n"
-"126\n"
"help.text"
msgid "<emph>X</emph> is the number of results achieved in the random sample."
msgstr "<emph>X</emph> 是随机抽样获得的结果数目。"
@@ -41881,7 +39524,6 @@ msgstr "<emph>X</emph> 是随机抽样获得的结果数目。"
msgctxt ""
"04060182.xhp\n"
"par_id3153106\n"
-"127\n"
"help.text"
msgid "<emph>NSample</emph> is the size of the random sample."
msgstr "<emph>NSample</emph> 是随机抽样的大小。"
@@ -41890,7 +39532,6 @@ msgstr "<emph>NSample</emph> 是随机抽样的大小。"
msgctxt ""
"04060182.xhp\n"
"par_id3146992\n"
-"128\n"
"help.text"
msgid "<emph>Successes</emph> is the number of possible results in the total population."
msgstr "<emph>Successes</emph> 是总体样本中可能结果的次数。"
@@ -41899,7 +39540,6 @@ msgstr "<emph>Successes</emph> 是总体样本中可能结果的次数。"
msgctxt ""
"04060182.xhp\n"
"par_id3148826\n"
-"129\n"
"help.text"
msgid "<emph>NPopulation </emph>is the size of the total population."
msgstr "<emph>NPopulation </emph> 是总体样本的大小。"
@@ -41908,7 +39548,6 @@ msgstr "<emph>NPopulation </emph> 是总体样本的大小。"
msgctxt ""
"04060182.xhp\n"
"hd_id3150529\n"
-"130\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -41917,13 +39556,11 @@ msgstr "示例"
msgctxt ""
"04060182.xhp\n"
"par_id3154904\n"
-"131\n"
"help.text"
msgid "<item type=\"input\">=HYPGEOMDIST(2;2;90;100)</item> yields 0.81. If 90 out of 100 pieces of buttered toast fall from the table and hit the floor with the buttered side first, then if 2 pieces of buttered toast are dropped from the table, the probability is 81%, that both will strike buttered side first."
msgstr "<item type=\"input\">=HYPGEOMDIST(2;2;90;100)</item> 等于 0.81. 假设有 100 片涂有黄油的烤面包片,其中有 90 片从桌子上掉落,并且涂有黄油的一面先着地,假设有 2 片涂有黄油的烤面包片从桌子上掉下,则两片面包都是涂有黄油的一面先着地的概率都是 81%。"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"bm_id2952801\n"
@@ -41935,17 +39572,14 @@ msgstr "<bookmark_value>HYPGEOMDIST 函数</bookmark_value><bookmark_value>不
msgctxt ""
"04060182.xhp\n"
"hd_id2952801\n"
-"122\n"
"help.text"
msgid "HYPGEOM.DIST"
msgstr "HYPGEOM.DIST"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2959341\n"
-"123\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_HYP_GEOM_DIST_MS\">Returns the hypergeometric distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\">返回超几何分布的函数值。</ahelp>"
@@ -41954,7 +39588,6 @@ msgstr "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\">返回超几何分布的函数值。
msgctxt ""
"04060182.xhp\n"
"hd_id2954697\n"
-"124\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -41963,7 +39596,6 @@ msgstr "语法"
msgctxt ""
"04060182.xhp\n"
"par_id2955388\n"
-"125\n"
"help.text"
msgid "HYPGEOM.DIST(X; NSample; Successes; NPopulation; Cumulative)"
msgstr "HYPGEOM.DIST(X, NSample, Successes, NPopulation, Cumulative)"
@@ -41972,7 +39604,6 @@ msgstr "HYPGEOM.DIST(X, NSample, Successes, NPopulation, Cumulative)"
msgctxt ""
"04060182.xhp\n"
"par_id2954933\n"
-"126\n"
"help.text"
msgid "<emph>X</emph> is the number of results achieved in the random sample."
msgstr "<emph>X</emph> 是随机抽样获得的结果数目。"
@@ -41981,17 +39612,14 @@ msgstr "<emph>X</emph> 是随机抽样获得的结果数目。"
msgctxt ""
"04060182.xhp\n"
"par_id2953106\n"
-"127\n"
"help.text"
msgid "<emph>NSample</emph> is the size of the random sample."
msgstr "<emph>NSample</emph> 是随机抽样的大小。"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2946992\n"
-"128\n"
"help.text"
msgid "<emph>Successes</emph> is the number of possible results in the total population."
msgstr "<emph>Successes</emph> 是总体样本中可能结果的次数。"
@@ -42000,17 +39628,14 @@ msgstr "<emph>Successes</emph> 是总体样本中可能结果的次数。"
msgctxt ""
"04060182.xhp\n"
"par_id2948826\n"
-"129\n"
"help.text"
msgid "<emph>NPopulation </emph>is the size of the total population."
msgstr "<emph>NPopulation </emph> 是总体样本的大小。"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2948827\n"
-"129\n"
"help.text"
msgid "<emph>Cumulative </emph>: 0 or False calculates the probability density function. Other values or True calculates the cumulative distribution function."
msgstr "<emph>Cumulative</emph> (可选择的): 0 或 False 计算概率密度函数。其它值或 True 或缺省计算累积分布函数。"
@@ -42019,17 +39644,14 @@ msgstr "<emph>Cumulative</emph> (可选择的): 0 或 False 计算概率密
msgctxt ""
"04060182.xhp\n"
"hd_id2950529\n"
-"130\n"
"help.text"
msgid "Examples"
msgstr "示例"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2954904\n"
-"131\n"
"help.text"
msgid "<item type=\"input\">=HYPGEOM.DIST(2;2;90;100;0)</item> yields 0.8090909091. If 90 out of 100 pieces of buttered toast fall from the table and hit the floor with the buttered side first, then if 2 pieces of buttered toast are dropped from the table, the probability is 81%, that both will strike buttered side first."
msgstr "<item type=\"input\">=HYPGEOMDIST(2;2;90;100)</item> 等于 0.81. 假设有 100 片涂有黄油的烤面包片,其中有 90 片从桌子上掉落,并且涂有黄油的一面先着地,假设有 2 片涂有黄油的烤面包片从桌子上掉下,则两片面包都是涂有黄油的一面先着地的概率都是 81%。"
@@ -42038,7 +39660,6 @@ msgstr "<item type=\"input\">=HYPGEOMDIST(2;2;90;100)</item> 等于 0.81. 假设
msgctxt ""
"04060182.xhp\n"
"par_id2954905\n"
-"131\n"
"help.text"
msgid "<item type=\"input\">=HYPGEOM.DIST(2;2;90;100;1)</item> yields 1."
msgstr ""
@@ -42055,7 +39676,6 @@ msgstr "统计函数第三部分"
msgctxt ""
"04060183.xhp\n"
"hd_id3166425\n"
-"1\n"
"help.text"
msgid "<variable id=\"kl\"><link href=\"text/scalc/01/04060183.xhp\" name=\"Statistical Functions Part Three\">Statistical Functions Part Three</link></variable>"
msgstr "<variable id=\"kl\"><link href=\"text/scalc/01/04060183.xhp\" name=\"统计函数第三部分\">统计函数第三部分</link></variable>"
@@ -42072,7 +39692,6 @@ msgstr "<bookmark_value>LARGE 函数</bookmark_value>"
msgctxt ""
"04060183.xhp\n"
"hd_id3149530\n"
-"2\n"
"help.text"
msgid "LARGE"
msgstr "LARGE"
@@ -42081,7 +39700,6 @@ msgstr "LARGE"
msgctxt ""
"04060183.xhp\n"
"par_id3150518\n"
-"3\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_KGROESSTE\">Returns the Rank_c-th largest value in a data set.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KGROESSTE\">返回数据集中的 Rank_c-th 最大值。</ahelp>"
@@ -42090,7 +39708,6 @@ msgstr "<ahelp hid=\"HID_FUNC_KGROESSTE\">返回数据集中的 Rank_c-th 最大
msgctxt ""
"04060183.xhp\n"
"hd_id3152990\n"
-"4\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -42099,7 +39716,6 @@ msgstr "语法"
msgctxt ""
"04060183.xhp\n"
"par_id3154372\n"
-"5\n"
"help.text"
msgid "LARGE(Data; RankC)"
msgstr "LARGE(Data; RankC)"
@@ -42108,7 +39724,6 @@ msgstr "LARGE(Data; RankC)"
msgctxt ""
"04060183.xhp\n"
"par_id3152986\n"
-"6\n"
"help.text"
msgid "<emph>Data</emph> is the cell range of data."
msgstr "<emph>Data</emph> 数据的单元格区域。"
@@ -42117,7 +39732,6 @@ msgstr "<emph>Data</emph> 数据的单元格区域。"
msgctxt ""
"04060183.xhp\n"
"par_id3156448\n"
-"7\n"
"help.text"
msgid "<emph>RankC</emph> is the ranking of the value."
msgstr "<emph>RankC</emph>"
@@ -42126,7 +39740,6 @@ msgstr "<emph>RankC</emph>"
msgctxt ""
"04060183.xhp\n"
"hd_id3152889\n"
-"8\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -42135,7 +39748,6 @@ msgstr "示例"
msgctxt ""
"04060183.xhp\n"
"par_id3148702\n"
-"9\n"
"help.text"
msgid "<item type=\"input\">=LARGE(A1:C50;2)</item> gives the second largest value in A1:C50."
msgstr "<item type=\"input\">=LARGE(A1:C50;2)</item> 返回数据区域 A1:C50 中第二大的数值。"
@@ -42152,7 +39764,6 @@ msgstr "<bookmark_value>SMALL 函数</bookmark_value>"
msgctxt ""
"04060183.xhp\n"
"hd_id3154532\n"
-"11\n"
"help.text"
msgid "SMALL"
msgstr "SMALL"
@@ -42161,7 +39772,6 @@ msgstr "SMALL"
msgctxt ""
"04060183.xhp\n"
"par_id3157981\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_KKLEINSTE\">Returns the Rank_c-th smallest value in a data set.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KKLEINSTE\">返回数据集中的 Rank_c-th 最小值。</ahelp>"
@@ -42170,7 +39780,6 @@ msgstr "<ahelp hid=\"HID_FUNC_KKLEINSTE\">返回数据集中的 Rank_c-th 最小
msgctxt ""
"04060183.xhp\n"
"hd_id3154957\n"
-"13\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -42179,7 +39788,6 @@ msgstr "语法"
msgctxt ""
"04060183.xhp\n"
"par_id3153974\n"
-"14\n"
"help.text"
msgid "SMALL(Data; RankC)"
msgstr "SMALL(Data; RankC)"
@@ -42188,7 +39796,6 @@ msgstr "SMALL(Data; RankC)"
msgctxt ""
"04060183.xhp\n"
"par_id3154540\n"
-"15\n"
"help.text"
msgid "<emph>Data</emph> is the cell range of data."
msgstr "<emph>Data</emph> 数据的单元格区域。"
@@ -42197,7 +39804,6 @@ msgstr "<emph>Data</emph> 数据的单元格区域。"
msgctxt ""
"04060183.xhp\n"
"par_id3155094\n"
-"16\n"
"help.text"
msgid "<emph>RankC</emph> is the rank of the value."
msgstr "<emph>RankC</emph> 是数值的排位。"
@@ -42206,7 +39812,6 @@ msgstr "<emph>RankC</emph> 是数值的排位。"
msgctxt ""
"04060183.xhp\n"
"hd_id3153247\n"
-"17\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -42215,7 +39820,6 @@ msgstr "示例"
msgctxt ""
"04060183.xhp\n"
"par_id3149897\n"
-"18\n"
"help.text"
msgid "<item type=\"input\">=SMALL(A1:C50;2)</item> gives the second smallest value in A1:C50."
msgstr "<item type=\"input\">=SMALL(A1:C50;2)</item> 返回数据区域 A1:C50 中次小的数值。"
@@ -42232,7 +39836,6 @@ msgstr "<bookmark_value>CONFIDENCE 函数</bookmark_value>"
msgctxt ""
"04060183.xhp\n"
"hd_id3153559\n"
-"20\n"
"help.text"
msgid "CONFIDENCE"
msgstr "CONFIDENCE"
@@ -42241,7 +39844,6 @@ msgstr "CONFIDENCE"
msgctxt ""
"04060183.xhp\n"
"par_id3153814\n"
-"21\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_KONFIDENZ\">Returns the (1-alpha) confidence interval for a normal distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KONFIDENZ\"> 返回正态分布的 (1-alpha) 置信区间。</ahelp>"
@@ -42250,7 +39852,6 @@ msgstr "<ahelp hid=\"HID_FUNC_KONFIDENZ\"> 返回正态分布的 (1-alpha) 置
msgctxt ""
"04060183.xhp\n"
"hd_id3149315\n"
-"22\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -42259,7 +39860,6 @@ msgstr "语法"
msgctxt ""
"04060183.xhp\n"
"par_id3147501\n"
-"23\n"
"help.text"
msgid "CONFIDENCE(Alpha; StDev; Size)"
msgstr "CONFIDENCE(Alpha; StDev; Size)"
@@ -42268,7 +39868,6 @@ msgstr "CONFIDENCE(Alpha; StDev; Size)"
msgctxt ""
"04060183.xhp\n"
"par_id3149872\n"
-"24\n"
"help.text"
msgid "<emph>Alpha</emph> is the level of the confidence interval."
msgstr "<emph>alpha</emph> 计算置信区间的级别。"
@@ -42277,7 +39876,6 @@ msgstr "<emph>alpha</emph> 计算置信区间的级别。"
msgctxt ""
"04060183.xhp\n"
"par_id3145324\n"
-"25\n"
"help.text"
msgid "<emph>StDev</emph> is the standard deviation for the total population."
msgstr "<emph>StDev</emph> 是总体样本的标准偏差。"
@@ -42286,7 +39884,6 @@ msgstr "<emph>StDev</emph> 是总体样本的标准偏差。"
msgctxt ""
"04060183.xhp\n"
"par_id3153075\n"
-"26\n"
"help.text"
msgid "<emph>Size</emph> is the size of the total population."
msgstr "<emph>size</emph> 是总体样本的大小。"
@@ -42295,7 +39892,6 @@ msgstr "<emph>size</emph> 是总体样本的大小。"
msgctxt ""
"04060183.xhp\n"
"hd_id3150435\n"
-"27\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -42304,7 +39900,6 @@ msgstr "示例"
msgctxt ""
"04060183.xhp\n"
"par_id3153335\n"
-"28\n"
"help.text"
msgid "<item type=\"input\">=CONFIDENCE(0.05;1.5;100)</item> gives 0.29."
msgstr "<item type=\"input\">=CONFIDENCE(0.05;1.5;100)</item> 返回 0.29。"
@@ -42321,17 +39916,14 @@ msgstr "<bookmark_value>CONFIDENCE.T 函数</bookmark_value>"
msgctxt ""
"04060183.xhp\n"
"hd_id2953559\n"
-"20\n"
"help.text"
msgid "CONFIDENCE.T"
msgstr "CONFIDENCE.T"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2953814\n"
-"21\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_CONFIDENCE_T\">Returns the (1-alpha) confidence interval for a Student's t distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KONFIDENZ\"> 返回正态分布的 (1-alpha) 置信区间。</ahelp>"
@@ -42340,7 +39932,6 @@ msgstr "<ahelp hid=\"HID_FUNC_KONFIDENZ\"> 返回正态分布的 (1-alpha) 置
msgctxt ""
"04060183.xhp\n"
"hd_id2949315\n"
-"22\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -42349,7 +39940,6 @@ msgstr "语法"
msgctxt ""
"04060183.xhp\n"
"par_id2947501\n"
-"23\n"
"help.text"
msgid "CONFIDENCE.T(Alpha; StDev; Size)"
msgstr "CONFIDENCE.T(Alpha, StDev, Size)"
@@ -42358,7 +39948,6 @@ msgstr "CONFIDENCE.T(Alpha, StDev, Size)"
msgctxt ""
"04060183.xhp\n"
"par_id2949872\n"
-"24\n"
"help.text"
msgid "<emph>Alpha</emph> is the level of the confidence interval."
msgstr "<emph>alpha</emph> 计算置信区间的级别。"
@@ -42367,7 +39956,6 @@ msgstr "<emph>alpha</emph> 计算置信区间的级别。"
msgctxt ""
"04060183.xhp\n"
"par_id2945324\n"
-"25\n"
"help.text"
msgid "<emph>StDev</emph> is the standard deviation for the total population."
msgstr "<emph>StDev</emph> 是总体样本的标准偏差。"
@@ -42376,7 +39964,6 @@ msgstr "<emph>StDev</emph> 是总体样本的标准偏差。"
msgctxt ""
"04060183.xhp\n"
"par_id2953075\n"
-"26\n"
"help.text"
msgid "<emph>Size</emph> is the size of the total population."
msgstr "<emph>size</emph> 是总体样本的大小。"
@@ -42385,7 +39972,6 @@ msgstr "<emph>size</emph> 是总体样本的大小。"
msgctxt ""
"04060183.xhp\n"
"hd_id2950435\n"
-"27\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -42394,7 +39980,6 @@ msgstr "示例"
msgctxt ""
"04060183.xhp\n"
"par_id2953335\n"
-"28\n"
"help.text"
msgid "<item type=\"input\">=CONFIDENCE.T(0.05;1.5;100)</item> gives 0.2976325427."
msgstr "<item type=\"input\">=CONFIDENCE.T(0.05,1.5,100)</item> 返回 0.2976325427."
@@ -42411,17 +39996,14 @@ msgstr "<bookmark_value>CONFIDENCE.NORM 函数</bookmark_value>"
msgctxt ""
"04060183.xhp\n"
"hd_id2853559\n"
-"20\n"
"help.text"
msgid "CONFIDENCE.NORM"
msgstr ""
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2853814\n"
-"21\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_CONFIDENCE_N\">Returns the (1-alpha) confidence interval for a normal distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KONFIDENZ\"> 返回正态分布的 (1-alpha) 置信区间。</ahelp>"
@@ -42430,7 +40012,6 @@ msgstr "<ahelp hid=\"HID_FUNC_KONFIDENZ\"> 返回正态分布的 (1-alpha) 置
msgctxt ""
"04060183.xhp\n"
"hd_id2849315\n"
-"22\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -42439,7 +40020,6 @@ msgstr "语法"
msgctxt ""
"04060183.xhp\n"
"par_id2847501\n"
-"23\n"
"help.text"
msgid "CONFIDENCE.NORM(Alpha; StDev; Size)"
msgstr "CONFIDENCE.NORM(Alpha, StDev, Size)"
@@ -42448,7 +40028,6 @@ msgstr "CONFIDENCE.NORM(Alpha, StDev, Size)"
msgctxt ""
"04060183.xhp\n"
"par_id2849872\n"
-"24\n"
"help.text"
msgid "<emph>Alpha</emph> is the level of the confidence interval."
msgstr "<emph>alpha</emph> 计算置信区间的级别。"
@@ -42457,7 +40036,6 @@ msgstr "<emph>alpha</emph> 计算置信区间的级别。"
msgctxt ""
"04060183.xhp\n"
"par_id2845324\n"
-"25\n"
"help.text"
msgid "<emph>StDev</emph> is the standard deviation for the total population."
msgstr "<emph>StDev</emph> 是总体样本的标准偏差。"
@@ -42466,7 +40044,6 @@ msgstr "<emph>StDev</emph> 是总体样本的标准偏差。"
msgctxt ""
"04060183.xhp\n"
"par_id2853075\n"
-"26\n"
"help.text"
msgid "<emph>Size</emph> is the size of the total population."
msgstr "<emph>size</emph> 是总体样本的大小。"
@@ -42475,7 +40052,6 @@ msgstr "<emph>size</emph> 是总体样本的大小。"
msgctxt ""
"04060183.xhp\n"
"hd_id2850435\n"
-"27\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -42484,7 +40060,6 @@ msgstr "示例"
msgctxt ""
"04060183.xhp\n"
"par_id2853335\n"
-"28\n"
"help.text"
msgid "<item type=\"input\">=CONFIDENCE.NORM(0.05;1.5;100)</item> gives 0.2939945977."
msgstr "<item type=\"input\">=CONFIDENCE.NORM(0.05,1.5,100)</item> 返回 0.2939945977."
@@ -42501,7 +40076,6 @@ msgstr "<bookmark_value>CORREL 函数</bookmark_value><bookmark_value>相关系
msgctxt ""
"04060183.xhp\n"
"hd_id3148746\n"
-"30\n"
"help.text"
msgid "CORREL"
msgstr "CORREL"
@@ -42510,7 +40084,6 @@ msgstr "CORREL"
msgctxt ""
"04060183.xhp\n"
"par_id3147299\n"
-"31\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_KORREL\">Returns the correlation coefficient between two data sets.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KORREL\">返回两个数据集之间的相关系数。</ahelp>"
@@ -42519,7 +40092,6 @@ msgstr "<ahelp hid=\"HID_FUNC_KORREL\">返回两个数据集之间的相关系
msgctxt ""
"04060183.xhp\n"
"hd_id3156397\n"
-"32\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -42528,7 +40100,6 @@ msgstr "语法"
msgctxt ""
"04060183.xhp\n"
"par_id3153023\n"
-"33\n"
"help.text"
msgid "CORREL(Data1; Data2)"
msgstr "CORREL(Data1; Data2)"
@@ -42537,7 +40108,6 @@ msgstr "CORREL(Data1; Data2)"
msgctxt ""
"04060183.xhp\n"
"par_id3150036\n"
-"34\n"
"help.text"
msgid "<emph>Data1</emph> is the first data set."
msgstr "<emph>Data1</emph> 第一个数据集。"
@@ -42546,7 +40116,6 @@ msgstr "<emph>Data1</emph> 第一个数据集。"
msgctxt ""
"04060183.xhp\n"
"par_id3153021\n"
-"35\n"
"help.text"
msgid "<emph>Data2</emph> is the second data set."
msgstr "<emph>Data2</emph> 第二个数据集。"
@@ -42555,7 +40124,6 @@ msgstr "<emph>Data2</emph> 第二个数据集。"
msgctxt ""
"04060183.xhp\n"
"hd_id3149720\n"
-"36\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -42564,7 +40132,6 @@ msgstr "示例"
msgctxt ""
"04060183.xhp\n"
"par_id3149941\n"
-"37\n"
"help.text"
msgid "<item type=\"input\">=CORREL(A1:A50;B1:B50)</item> calculates the correlation coefficient as a measure of the linear correlation of the two data sets."
msgstr "<item type=\"input\">=CORREL(A1:A50;B1:B50)</item> 计算相关系数,作为对两个数据集线性相关的度量。"
@@ -42581,7 +40148,6 @@ msgstr "<bookmark_value>COVAR 函数</bookmark_value>"
msgctxt ""
"04060183.xhp\n"
"hd_id3150652\n"
-"39\n"
"help.text"
msgid "COVAR"
msgstr "COVAR"
@@ -42590,7 +40156,6 @@ msgstr "COVAR"
msgctxt ""
"04060183.xhp\n"
"par_id3146875\n"
-"40\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_KOVAR\">Returns the covariance of the product of paired deviations.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KOVAR\">返回成对偏差乘积的协方差。</ahelp>"
@@ -42599,7 +40164,6 @@ msgstr "<ahelp hid=\"HID_FUNC_KOVAR\">返回成对偏差乘积的协方差。</a
msgctxt ""
"04060183.xhp\n"
"hd_id3149013\n"
-"41\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -42608,7 +40172,6 @@ msgstr "语法"
msgctxt ""
"04060183.xhp\n"
"par_id3150740\n"
-"42\n"
"help.text"
msgid "COVAR(Data1; Data2)"
msgstr "COVAR(Data1; Data2)"
@@ -42617,7 +40180,6 @@ msgstr "COVAR(Data1; Data2)"
msgctxt ""
"04060183.xhp\n"
"par_id3145827\n"
-"43\n"
"help.text"
msgid "<emph>Data1</emph> is the first data set."
msgstr "<emph>Data1</emph> 第一个数据集。"
@@ -42626,7 +40188,6 @@ msgstr "<emph>Data1</emph> 第一个数据集。"
msgctxt ""
"04060183.xhp\n"
"par_id3150465\n"
-"44\n"
"help.text"
msgid "<emph>Data2</emph> is the second data set."
msgstr "<emph>Data2</emph> 第二个数据集。"
@@ -42635,7 +40196,6 @@ msgstr "<emph>Data2</emph> 第二个数据集。"
msgctxt ""
"04060183.xhp\n"
"hd_id3154677\n"
-"45\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -42644,7 +40204,6 @@ msgstr "示例"
msgctxt ""
"04060183.xhp\n"
"par_id3144748\n"
-"46\n"
"help.text"
msgid "<item type=\"input\">=COVAR(A1:A30;B1:B30)</item>"
msgstr "<item type=\"input\">=COVAR(A1:A30;B1:B30)</item>"
@@ -42661,7 +40220,6 @@ msgstr "<bookmark_value>COVARIANCE.P 函数</bookmark_value>"
msgctxt ""
"04060183.xhp\n"
"hd_id2950652\n"
-"39\n"
"help.text"
msgid "COVARIANCE.P"
msgstr ""
@@ -42670,7 +40228,6 @@ msgstr ""
msgctxt ""
"04060183.xhp\n"
"par_id2946875\n"
-"40\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_COVARIANCE_P\">Returns the covariance of the product of paired deviations, for the entire population.</ahelp>"
msgstr ""
@@ -42679,7 +40236,6 @@ msgstr ""
msgctxt ""
"04060183.xhp\n"
"hd_id2949013\n"
-"41\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -42688,7 +40244,6 @@ msgstr "语法"
msgctxt ""
"04060183.xhp\n"
"par_id2950740\n"
-"42\n"
"help.text"
msgid "COVARIANCE.P(Data1; Data2)"
msgstr ""
@@ -42697,7 +40252,6 @@ msgstr ""
msgctxt ""
"04060183.xhp\n"
"par_id2945827\n"
-"43\n"
"help.text"
msgid "<emph>Data1</emph> is the first data set."
msgstr "<emph>Data1</emph> 第一个数据集。"
@@ -42706,7 +40260,6 @@ msgstr "<emph>Data1</emph> 第一个数据集。"
msgctxt ""
"04060183.xhp\n"
"par_id2950465\n"
-"44\n"
"help.text"
msgid "<emph>Data2</emph> is the second data set."
msgstr "<emph>Data2</emph> 第二个数据集。"
@@ -42715,7 +40268,6 @@ msgstr "<emph>Data2</emph> 第二个数据集。"
msgctxt ""
"04060183.xhp\n"
"hd_id2954677\n"
-"45\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -42724,7 +40276,6 @@ msgstr "示例"
msgctxt ""
"04060183.xhp\n"
"par_id2944748\n"
-"46\n"
"help.text"
msgid "<item type=\"input\">=COVARIANCE.P(A1:A30;B1:B30)</item>"
msgstr "<item type=\"input\">=COVARIANCE.P(A1:A30,B1:B30)</item>"
@@ -42741,7 +40292,6 @@ msgstr "<bookmark_value>COVARIANCE.S 函数</bookmark_value>"
msgctxt ""
"04060183.xhp\n"
"hd_id2850652\n"
-"39\n"
"help.text"
msgid "COVARIANCE.S"
msgstr ""
@@ -42750,7 +40300,6 @@ msgstr ""
msgctxt ""
"04060183.xhp\n"
"par_id2846875\n"
-"40\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_COVARIANCE_S\">Returns the covariance of the product of paired deviations, for a sample of the population.</ahelp>"
msgstr ""
@@ -42759,7 +40308,6 @@ msgstr ""
msgctxt ""
"04060183.xhp\n"
"hd_id2849013\n"
-"41\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -42768,7 +40316,6 @@ msgstr "语法"
msgctxt ""
"04060183.xhp\n"
"par_id2850740\n"
-"42\n"
"help.text"
msgid "COVARIANCE.S(Data1; Data2)"
msgstr ""
@@ -42777,7 +40324,6 @@ msgstr ""
msgctxt ""
"04060183.xhp\n"
"par_id2845827\n"
-"43\n"
"help.text"
msgid "<emph>Data1</emph> is the first data set."
msgstr "<emph>Data1</emph> 第一个数据集。"
@@ -42786,7 +40332,6 @@ msgstr "<emph>Data1</emph> 第一个数据集。"
msgctxt ""
"04060183.xhp\n"
"par_id2850465\n"
-"44\n"
"help.text"
msgid "<emph>Data2</emph> is the second data set."
msgstr "<emph>Data2</emph> 第二个数据集。"
@@ -42795,7 +40340,6 @@ msgstr "<emph>Data2</emph> 第二个数据集。"
msgctxt ""
"04060183.xhp\n"
"hd_id284677\n"
-"45\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -42804,7 +40348,6 @@ msgstr "示例"
msgctxt ""
"04060183.xhp\n"
"par_id2844748\n"
-"46\n"
"help.text"
msgid "<item type=\"input\">=COVARIANCE.S(A1:A30;B1:B30)</item>"
msgstr "<item type=\"input\">=COVARIANCE.S(A1:A30,B1:B30)</item>"
@@ -42821,7 +40364,6 @@ msgstr "<bookmark_value>CRITBINOM 函数</bookmark_value>"
msgctxt ""
"04060183.xhp\n"
"hd_id3147472\n"
-"48\n"
"help.text"
msgid "CRITBINOM"
msgstr "CRITBINOM"
@@ -42830,7 +40372,6 @@ msgstr "CRITBINOM"
msgctxt ""
"04060183.xhp\n"
"par_id3149254\n"
-"49\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_KRITBINOM\">Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KRITBINOM\">返回使累积二项式分布大于等于临界值的最小值。</ahelp>"
@@ -42839,7 +40380,6 @@ msgstr "<ahelp hid=\"HID_FUNC_KRITBINOM\">返回使累积二项式分布大于
msgctxt ""
"04060183.xhp\n"
"hd_id3153930\n"
-"50\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -42848,7 +40388,6 @@ msgstr "语法"
msgctxt ""
"04060183.xhp\n"
"par_id3148586\n"
-"51\n"
"help.text"
msgid "CRITBINOM(Trials; SP; Alpha)"
msgstr "CRITBINOM(Trials; SP; Alpha)"
@@ -42857,7 +40396,6 @@ msgstr "CRITBINOM(Trials; SP; Alpha)"
msgctxt ""
"04060183.xhp\n"
"par_id3145593\n"
-"52\n"
"help.text"
msgid "<emph>Trials</emph> is the total number of trials."
msgstr "<emph>trials</emph> 是试验的总次数。"
@@ -42866,7 +40404,6 @@ msgstr "<emph>trials</emph> 是试验的总次数。"
msgctxt ""
"04060183.xhp\n"
"par_id3153084\n"
-"53\n"
"help.text"
msgid "<emph>SP</emph> is the probability of success for one trial."
msgstr "<emph>SP</emph> 是一次试验成功的概率。"
@@ -42875,7 +40412,6 @@ msgstr "<emph>SP</emph> 是一次试验成功的概率。"
msgctxt ""
"04060183.xhp\n"
"par_id3149726\n"
-"54\n"
"help.text"
msgid "<emph>Alpha</emph> is the threshold probability to be reached or exceeded."
msgstr "<emph>alpha</emph> 是应达到或超出的临界概率。"
@@ -42884,7 +40420,6 @@ msgstr "<emph>alpha</emph> 是应达到或超出的临界概率。"
msgctxt ""
"04060183.xhp\n"
"hd_id3148752\n"
-"55\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -42893,7 +40428,6 @@ msgstr "示例"
msgctxt ""
"04060183.xhp\n"
"par_id3148740\n"
-"56\n"
"help.text"
msgid "<item type=\"input\">=CRITBINOM(100;0.5;0.1)</item> yields 44."
msgstr "<item type=\"input\">=CRITBINOM(100;0.5;0.1)</item> 等于 44。"
@@ -42910,7 +40444,6 @@ msgstr "<bookmark_value>KURT 函数</bookmark_value>"
msgctxt ""
"04060183.xhp\n"
"hd_id3155956\n"
-"58\n"
"help.text"
msgid "KURT"
msgstr "KURT"
@@ -42919,7 +40452,6 @@ msgstr "KURT"
msgctxt ""
"04060183.xhp\n"
"par_id3153108\n"
-"59\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_KURT\">Returns the kurtosis of a data set (at least 4 values required).</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KURT\">返回数据集的峰度(至少需要 4 个值)。</ahelp>"
@@ -42928,7 +40460,6 @@ msgstr "<ahelp hid=\"HID_FUNC_KURT\">返回数据集的峰度(至少需要 4
msgctxt ""
"04060183.xhp\n"
"hd_id3150334\n"
-"60\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -42937,7 +40468,6 @@ msgstr "语法"
msgctxt ""
"04060183.xhp\n"
"par_id3154508\n"
-"61\n"
"help.text"
msgid "KURT(Number1; Number2; ...Number30)"
msgstr "KURT(Number1; Number2; ...Number30)"
@@ -42946,7 +40476,6 @@ msgstr "KURT(Number1; Number2; ...Number30)"
msgctxt ""
"04060183.xhp\n"
"par_id3145167\n"
-"62\n"
"help.text"
msgid "<emph>Number1,Number2,...Number30</emph> are numeric arguments or ranges representing a random sample of distribution."
msgstr "<emph>Number1,Number2,...Number30</emph> 是表示随机抽样分布的数字参数或区域。"
@@ -42955,7 +40484,6 @@ msgstr "<emph>Number1,Number2,...Number30</emph> 是表示随机抽样分布的
msgctxt ""
"04060183.xhp\n"
"hd_id3158000\n"
-"63\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -42964,7 +40492,6 @@ msgstr "示例"
msgctxt ""
"04060183.xhp\n"
"par_id3150016\n"
-"64\n"
"help.text"
msgid "<item type=\"input\">=KURT(A1;A2;A3;A4;A5;A6)</item>"
msgstr "<item type=\"input\">=KURT(A1;A2;A3;A4;A5;A6)</item>"
@@ -42981,7 +40508,6 @@ msgstr "<bookmark_value>LOGINV 函数</bookmark_value><bookmark_value>对数正
msgctxt ""
"04060183.xhp\n"
"hd_id3150928\n"
-"66\n"
"help.text"
msgid "LOGINV"
msgstr "LOGINV"
@@ -42990,7 +40516,6 @@ msgstr "LOGINV"
msgctxt ""
"04060183.xhp\n"
"par_id3145297\n"
-"67\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_LOGINV\">Returns the inverse of the lognormal distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_LOGINV\">返回对数正态分布函数的逆函数。</ahelp>"
@@ -42999,7 +40524,6 @@ msgstr "<ahelp hid=\"HID_FUNC_LOGINV\">返回对数正态分布函数的逆函
msgctxt ""
"04060183.xhp\n"
"hd_id3151016\n"
-"68\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -43008,7 +40532,6 @@ msgstr "语法"
msgctxt ""
"04060183.xhp\n"
"par_id3153049\n"
-"69\n"
"help.text"
msgid "LOGINV(Number; Mean; StDev)"
msgstr "LOGINV(Number; Mean; StDev)"
@@ -43017,7 +40540,6 @@ msgstr "LOGINV(Number; Mean; StDev)"
msgctxt ""
"04060183.xhp\n"
"par_id3148390\n"
-"70\n"
"help.text"
msgid "<emph>Number</emph> is the probability value for which the inverse standard logarithmic distribution is to be calculated."
msgstr "<emph>Number</emph> 标准对数分布函数的逆函数的概率。"
@@ -43026,7 +40548,6 @@ msgstr "<emph>Number</emph> 标准对数分布函数的逆函数的概率。"
msgctxt ""
"04060183.xhp\n"
"par_id3149538\n"
-"71\n"
"help.text"
msgid "<emph>Mean</emph> is the arithmetic mean of the standard logarithmic distribution."
msgstr "<emph>mean</emph>是标准对数分布的平均数。"
@@ -43035,7 +40556,6 @@ msgstr "<emph>mean</emph>是标准对数分布的平均数。"
msgctxt ""
"04060183.xhp\n"
"par_id3145355\n"
-"72\n"
"help.text"
msgid "<emph>StDev</emph> is the standard deviation of the standard logarithmic distribution."
msgstr "<emph>StDev</emph> 是标准对数分布的标准偏差。"
@@ -43044,7 +40564,6 @@ msgstr "<emph>StDev</emph> 是标准对数分布的标准偏差。"
msgctxt ""
"04060183.xhp\n"
"hd_id3148768\n"
-"73\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -43053,13 +40572,11 @@ msgstr "示例"
msgctxt ""
"04060183.xhp\n"
"par_id3155623\n"
-"74\n"
"help.text"
msgid "<item type=\"input\">=LOGINV(0.05;0;1)</item> returns 0.1930408167."
msgstr "<item type=\"input\">=LOGINV(0.05,0,1)</item> 返回 0.1930408167."
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"bm_id2901928\n"
@@ -43071,17 +40588,14 @@ msgstr "<bookmark_value>LOGINV 函数</bookmark_value><bookmark_value>对数正
msgctxt ""
"04060183.xhp\n"
"hd_id2901928\n"
-"66\n"
"help.text"
msgid "LOGNORM.INV"
msgstr "LOGNORM.INV"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2901297\n"
-"67\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_LOGINV_MS\">Returns the inverse of the lognormal distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_LOGINV\">返回对数正态分布函数的逆函数。</ahelp>"
@@ -43098,7 +40612,6 @@ msgstr "这个函数等同于LOGINV函数,并提供了和其他Office套件的
msgctxt ""
"04060183.xhp\n"
"hd_id2901016\n"
-"68\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -43107,37 +40620,30 @@ msgstr "语法"
msgctxt ""
"04060183.xhp\n"
"par_id2901049\n"
-"69\n"
"help.text"
msgid "LOGNORM.INV(Number; Mean; StDev)"
msgstr "LOGNORM.INV(Number, Mean, StDev)"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2901390\n"
-"70\n"
"help.text"
msgid "<emph>Number</emph> (required) is the probability value for which the inverse standard logarithmic distribution is to be calculated."
msgstr "<emph>Number</emph> 标准对数分布函数的逆函数的概率。"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2901538\n"
-"71\n"
"help.text"
msgid "<emph>Mean</emph> (required) is the arithmetic mean of the standard logarithmic distribution."
msgstr "<emph>mean</emph>是标准对数分布的平均数。"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2901355\n"
-"72\n"
"help.text"
msgid "<emph>StDev</emph> (required) is the standard deviation of the standard logarithmic distribution."
msgstr "<emph>StDev</emph> 是标准对数分布的标准偏差。"
@@ -43146,7 +40652,6 @@ msgstr "<emph>StDev</emph> 是标准对数分布的标准偏差。"
msgctxt ""
"04060183.xhp\n"
"hd_id2901768\n"
-"73\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -43155,7 +40660,6 @@ msgstr "示例"
msgctxt ""
"04060183.xhp\n"
"par_id2901623\n"
-"74\n"
"help.text"
msgid "<item type=\"input\">=LOGNORM.INV(0.05;0;1)</item> returns 0.1930408167."
msgstr "<item type=\"input\">=LOGNORM.INV(0.05,0,1)</item> 返回 0.1930408167."
@@ -43172,7 +40676,6 @@ msgstr "<bookmark_value>LOGNORMDIST 函数</bookmark_value><bookmark_value>对
msgctxt ""
"04060183.xhp\n"
"hd_id3158417\n"
-"76\n"
"help.text"
msgid "LOGNORMDIST"
msgstr "LOGNORMDIST"
@@ -43181,7 +40684,6 @@ msgstr "LOGNORMDIST"
msgctxt ""
"04060183.xhp\n"
"par_id3154953\n"
-"77\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_LOGNORMVERT\">Returns the values of a lognormal distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_LOGNORMVERT\">返回对数正态分布的值。</ahelp>"
@@ -43190,7 +40692,6 @@ msgstr "<ahelp hid=\"HID_FUNC_LOGNORMVERT\">返回对数正态分布的值。</a
msgctxt ""
"04060183.xhp\n"
"hd_id3150474\n"
-"78\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -43199,7 +40700,6 @@ msgstr "语法"
msgctxt ""
"04060183.xhp\n"
"par_id3150686\n"
-"79\n"
"help.text"
msgid "LOGNORMDIST(Number; Mean; StDev; Cumulative)"
msgstr "LOGNORMDIST(Number; Mean; StDev; Cumulative)"
@@ -43208,7 +40708,6 @@ msgstr "LOGNORMDIST(Number; Mean; StDev; Cumulative)"
msgctxt ""
"04060183.xhp\n"
"par_id3154871\n"
-"80\n"
"help.text"
msgid "<emph>Number</emph> is the probability value for which the standard logarithmic distribution is to be calculated."
msgstr "<emph>number</emph> 是用来计算标准对数分布函数的概率。"
@@ -43217,7 +40716,6 @@ msgstr "<emph>number</emph> 是用来计算标准对数分布函数的概率。"
msgctxt ""
"04060183.xhp\n"
"par_id3155820\n"
-"81\n"
"help.text"
msgid "<emph>Mean</emph> (optional) is the mean value of the standard logarithmic distribution."
msgstr "<emph>Mean</emph> 是标准对数分布的平均值。"
@@ -43226,7 +40724,6 @@ msgstr "<emph>Mean</emph> 是标准对数分布的平均值。"
msgctxt ""
"04060183.xhp\n"
"par_id3155991\n"
-"82\n"
"help.text"
msgid "<emph>StDev</emph> (optional) is the standard deviation of the standard logarithmic distribution."
msgstr "<emph>StDev</emph> 是标准对数分布的标准偏差。"
@@ -43243,7 +40740,6 @@ msgstr "<emph>Cumulative</emph>(可选)= 0 计算密度函数,Cumulative =
msgctxt ""
"04060183.xhp\n"
"hd_id3153178\n"
-"83\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -43252,13 +40748,11 @@ msgstr "示例"
msgctxt ""
"04060183.xhp\n"
"par_id3149778\n"
-"84\n"
"help.text"
msgid "<item type=\"input\">=LOGNORMDIST(0.1;0;1)</item> returns 0.01."
msgstr "<item type=\"input\">=LOGNORMDIST(0.1;0;1)</item> 返回 0.01。"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"bm_id2901417\n"
@@ -43270,17 +40764,14 @@ msgstr "<bookmark_value>LOGNORMDIST 函数</bookmark_value><bookmark_value>对
msgctxt ""
"04060183.xhp\n"
"hd_id2908417\n"
-"76\n"
"help.text"
msgid "LOGNORM.DIST"
msgstr "LOGNORM.DIST"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2904953\n"
-"77\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_LOGNORMDIST_MS\">Returns the values of a lognormal distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_LOGNORMVERT\">返回对数正态分布的值。</ahelp>"
@@ -43289,7 +40780,6 @@ msgstr "<ahelp hid=\"HID_FUNC_LOGNORMVERT\">返回对数正态分布的值。</a
msgctxt ""
"04060183.xhp\n"
"hd_id2900474\n"
-"78\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -43298,43 +40788,35 @@ msgstr "语法"
msgctxt ""
"04060183.xhp\n"
"par_id2900686\n"
-"79\n"
"help.text"
msgid "LOGNORM.DIST(Number; Mean; StDev; Cumulative)"
msgstr "LOGNORM.DIST(Number, Mean, StDev, Cumulative)"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2904871\n"
-"80\n"
"help.text"
msgid "<emph>Number</emph> (required) is the probability value for which the standard logarithmic distribution is to be calculated."
msgstr "<emph>number</emph> 是用来计算标准对数分布函数的概率。"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2905820\n"
-"81\n"
"help.text"
msgid "<emph>Mean</emph> (required) is the mean value of the standard logarithmic distribution."
msgstr "<emph>Mean</emph> 是标准对数分布的平均值。"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2905991\n"
-"82\n"
"help.text"
msgid "<emph>StDev</emph> (required) is the standard deviation of the standard logarithmic distribution."
msgstr "<emph>StDev</emph> 是标准对数分布的标准偏差。"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2905992\n"
@@ -43346,7 +40828,6 @@ msgstr "<emph>Cumulative</emph>(可选)= 0 计算密度函数,Cumulative =
msgctxt ""
"04060183.xhp\n"
"hd_id2903178\n"
-"83\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -43355,7 +40836,6 @@ msgstr "示例"
msgctxt ""
"04060183.xhp\n"
"par_id2909778\n"
-"84\n"
"help.text"
msgid "<item type=\"input\">=LOGNORM.DIST(0.1;0;1;1)</item> returns 0.0106510993."
msgstr "<item type=\"input\">=LOGNORM.DIST(0.1,0,1,1)</item> 返回 0.0106510993."
@@ -43372,7 +40852,6 @@ msgstr "统计函数第四部分"
msgctxt ""
"04060184.xhp\n"
"hd_id3153415\n"
-"1\n"
"help.text"
msgid "<variable id=\"mq\"><link href=\"text/scalc/01/04060184.xhp\" name=\"Statistical Functions Part Four\">Statistical Functions Part Four</link></variable>"
msgstr "<variable id=\"mq\"><link href=\"text/scalc/01/04060184.xhp\" name=\"统计函数第四部分\">统计函数第四部分</link></variable>"
@@ -43389,7 +40868,6 @@ msgstr "<bookmark_value>MAX 函数</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id3154511\n"
-"2\n"
"help.text"
msgid "MAX"
msgstr "MAX"
@@ -43398,7 +40876,6 @@ msgstr "MAX"
msgctxt ""
"04060184.xhp\n"
"par_id3153709\n"
-"3\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MAX\">Returns the maximum value in a list of arguments.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_MAX\">返回参数列表中的最大值。</ahelp>"
@@ -43415,7 +40892,6 @@ msgstr "如果作为单元格引用传递的单元格区域没有数字值而且
msgctxt ""
"04060184.xhp\n"
"hd_id3154256\n"
-"4\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -43424,7 +40900,6 @@ msgstr "语法"
msgctxt ""
"04060184.xhp\n"
"par_id3147340\n"
-"5\n"
"help.text"
msgid "MAX(Number1; Number2; ...Number30)"
msgstr "MAX(Number1; Number2; ...Number30)"
@@ -43433,7 +40908,6 @@ msgstr "MAX(Number1; Number2; ...Number30)"
msgctxt ""
"04060184.xhp\n"
"par_id3149568\n"
-"6\n"
"help.text"
msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
msgstr "<emph>Number1; Number2;...Number30</emph> 是数值或区域。"
@@ -43442,7 +40916,6 @@ msgstr "<emph>Number1; Number2;...Number30</emph> 是数值或区域。"
msgctxt ""
"04060184.xhp\n"
"hd_id3153963\n"
-"7\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -43451,7 +40924,6 @@ msgstr "示例"
msgctxt ""
"04060184.xhp\n"
"par_id3147343\n"
-"8\n"
"help.text"
msgid "<item type=\"input\">=MAX(A1;A2;A3;50;100;200)</item> returns the largest value from the list."
msgstr "<item type=\"input\">=MAX(A1;A2;A3;50;100;200)</item> 返回该列表中的最大值。"
@@ -43460,7 +40932,6 @@ msgstr "<item type=\"input\">=MAX(A1;A2;A3;50;100;200)</item> 返回该列表中
msgctxt ""
"04060184.xhp\n"
"par_id3148485\n"
-"9\n"
"help.text"
msgid "<item type=\"input\">=MAX(A1:B100)</item> returns the largest value from the list."
msgstr "<item type=\"input\">=MAX(A1:B100)</item> 返回该列表中的最大值。"
@@ -43477,7 +40948,6 @@ msgstr "<bookmark_value>MAXA 函数</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id3166426\n"
-"139\n"
"help.text"
msgid "MAXA"
msgstr "MAXA"
@@ -43486,7 +40956,6 @@ msgstr "MAXA"
msgctxt ""
"04060184.xhp\n"
"par_id3150363\n"
-"140\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MAXA\">Returns the maximum value in a list of arguments. In opposite to MAX, here you can enter text. The value of the text is 0.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_MAXA\">返回参数列表中的最大值。与 MAX 函数不同的是,您可以输入文字,输入的文字将被视为零。</ahelp>"
@@ -43503,7 +40972,6 @@ msgstr "如果没有值(数字的或文字的)而且没有错误出现,函
msgctxt ""
"04060184.xhp\n"
"hd_id3150516\n"
-"141\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -43512,7 +40980,6 @@ msgstr "语法"
msgctxt ""
"04060184.xhp\n"
"par_id3166431\n"
-"142\n"
"help.text"
msgid "MAXA(Value1; Value2; ... Value30)"
msgstr "MAXA(Value1; Value2; ... Value30)"
@@ -43521,7 +40988,6 @@ msgstr "MAXA(Value1; Value2; ... Value30)"
msgctxt ""
"04060184.xhp\n"
"par_id3150202\n"
-"143\n"
"help.text"
msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
msgstr "<emph>Value1; Value2;...Value30</emph> 是值或区域。文字的值为 0。"
@@ -43530,7 +40996,6 @@ msgstr "<emph>Value1; Value2;...Value30</emph> 是值或区域。文字的值为
msgctxt ""
"04060184.xhp\n"
"hd_id3156290\n"
-"144\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -43539,7 +41004,6 @@ msgstr "示例"
msgctxt ""
"04060184.xhp\n"
"par_id3156446\n"
-"145\n"
"help.text"
msgid "<item type=\"input\">=MAXA(A1;A2;A3;50;100;200;\"Text\")</item> returns the largest value from the list."
msgstr "<item type=\"input\">=MAXA(A1;A2;A3;50;100;200;\"Text\")</item> 返回该列表中的最大值。"
@@ -43548,7 +41012,6 @@ msgstr "<item type=\"input\">=MAXA(A1;A2;A3;50;100;200;\"Text\")</item> 返回
msgctxt ""
"04060184.xhp\n"
"par_id3149404\n"
-"146\n"
"help.text"
msgid "<item type=\"input\">=MAXA(A1:B100)</item> returns the largest value from the list."
msgstr "<item type=\"input\">=MAXA(A1:B100)</item> 返回该列表中的最大值。"
@@ -43565,7 +41028,6 @@ msgstr "<bookmark_value>MEDIAN 函数</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id3153820\n"
-"11\n"
"help.text"
msgid "MEDIAN"
msgstr "MEDIAN"
@@ -43574,7 +41036,6 @@ msgstr "MEDIAN"
msgctxt ""
"04060184.xhp\n"
"par_id3151241\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MEDIAN\">Returns the median of a set of numbers. In a set containing an uneven number of values, the median will be the number in the middle of the set and in a set containing an even number of values, it will be the mean of the two values in the middle of the set.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_MEDIAN\">返回给定的数值集合的中值。参数集合的数字个数为奇数时,中值为居于参数集合中间的数。当数字个数为偶数时,中值为居于中间的两个数的平均值。</ahelp>"
@@ -43583,7 +41044,6 @@ msgstr "<ahelp hid=\"HID_FUNC_MEDIAN\">返回给定的数值集合的中值。
msgctxt ""
"04060184.xhp\n"
"hd_id3148871\n"
-"13\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -43592,7 +41052,6 @@ msgstr "语法"
msgctxt ""
"04060184.xhp\n"
"par_id3155264\n"
-"14\n"
"help.text"
msgid "MEDIAN(Number1; Number2; ...Number30)"
msgstr "MEDIAN(Number1; Number2; ...Number30)"
@@ -43601,7 +41060,6 @@ msgstr "MEDIAN(Number1; Number2; ...Number30)"
msgctxt ""
"04060184.xhp\n"
"par_id3150109\n"
-"15\n"
"help.text"
msgid "<emph>Number1; Number2;...Number30</emph> are values or ranges, which represent a sample. Each number can also be replaced by a reference."
msgstr "<emph>Number1; Number2;...Number30</emph> 是表示取样的值或范围。每个数字也可以用引用替换。"
@@ -43610,7 +41068,6 @@ msgstr "<emph>Number1; Number2;...Number30</emph> 是表示取样的值或范围
msgctxt ""
"04060184.xhp\n"
"hd_id3144506\n"
-"16\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -43619,7 +41076,6 @@ msgstr "示例"
msgctxt ""
"04060184.xhp\n"
"par_id3145078\n"
-"17\n"
"help.text"
msgid "for an odd number: <item type=\"input\">=MEDIAN(1;5;9;20;21)</item> returns 9 as the median value."
msgstr "对于奇数:<item type=\"input\">=MEDIAN(1;5;9;20;21)</item> 返回 9 作为中值。"
@@ -43628,7 +41084,6 @@ msgstr "对于奇数:<item type=\"input\">=MEDIAN(1;5;9;20;21)</item> 返回 9
msgctxt ""
"04060184.xhp\n"
"par_id3149126\n"
-"165\n"
"help.text"
msgid "for an even number: <item type=\"input\">=MEDIAN(1;5;9;20)</item> returns the average of the two middle values 5 and 9, thus 7."
msgstr "对于偶数 <item type=\"input\">=MEDIAN(1;5;9;20)</item> 返回中间两个数字的平均值,即 5 和 9 的平均值,也就是 7。"
@@ -43645,7 +41100,6 @@ msgstr "<bookmark_value>MIN 函数</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id3154541\n"
-"19\n"
"help.text"
msgid "MIN"
msgstr "MIN"
@@ -43654,7 +41108,6 @@ msgstr "MIN"
msgctxt ""
"04060184.xhp\n"
"par_id3143222\n"
-"20\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MIN\">Returns the minimum value in a list of arguments.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_MIN\">返回自变量列表中的最小值。</ahelp>"
@@ -43671,7 +41124,6 @@ msgstr "如果作为单元格引用传递的单元格区域没有数字值而且
msgctxt ""
"04060184.xhp\n"
"hd_id3154651\n"
-"21\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -43680,7 +41132,6 @@ msgstr "语法"
msgctxt ""
"04060184.xhp\n"
"par_id3146964\n"
-"22\n"
"help.text"
msgid "MIN(Number1; Number2; ...Number30)"
msgstr "MIN(Number1; Number2; ...Number30)"
@@ -43689,7 +41140,6 @@ msgstr "MIN(Number1; Number2; ...Number30)"
msgctxt ""
"04060184.xhp\n"
"par_id3153486\n"
-"23\n"
"help.text"
msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
msgstr "<emph>Number1; Number2;...Number30</emph> 是数值或区域。"
@@ -43698,7 +41148,6 @@ msgstr "<emph>Number1; Number2;...Number30</emph> 是数值或区域。"
msgctxt ""
"04060184.xhp\n"
"hd_id3155523\n"
-"24\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -43707,7 +41156,6 @@ msgstr "示例"
msgctxt ""
"04060184.xhp\n"
"par_id3154734\n"
-"25\n"
"help.text"
msgid "<item type=\"input\">=MIN(A1:B100)</item> returns the smallest value in the list."
msgstr "<item type=\"input\">=MIN(A1:B100)</item> 返回该列表中的最小值。"
@@ -43724,7 +41172,6 @@ msgstr "<bookmark_value>MINA 函数</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id3147504\n"
-"148\n"
"help.text"
msgid "MINA"
msgstr "MINA"
@@ -43733,7 +41180,6 @@ msgstr "MINA"
msgctxt ""
"04060184.xhp\n"
"par_id3147249\n"
-"149\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MINA\">Returns the minimum value in a list of arguments. Here you can also enter text. The value of the text is 0.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_MINA\">返回自变量列表中的最小值。也可在此输入文本。文本值为 0。</ahelp>"
@@ -43750,7 +41196,6 @@ msgstr "如果没有值(数字的或文字的)而且没有错误出现,函
msgctxt ""
"04060184.xhp\n"
"hd_id3150435\n"
-"150\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -43759,7 +41204,6 @@ msgstr "语法"
msgctxt ""
"04060184.xhp\n"
"par_id3153336\n"
-"151\n"
"help.text"
msgid "MINA(Value1; Value2; ... Value30)"
msgstr "MINA(Value1; Value2; ... Value30)"
@@ -43768,7 +41212,6 @@ msgstr "MINA(Value1; Value2; ... Value30)"
msgctxt ""
"04060184.xhp\n"
"par_id3146098\n"
-"152\n"
"help.text"
msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
msgstr "<emph>Value1; Value2;...Value30</emph> 是值或区域。文字的值为 0。"
@@ -43777,7 +41220,6 @@ msgstr "<emph>Value1; Value2;...Value30</emph> 是值或区域。文字的值为
msgctxt ""
"04060184.xhp\n"
"hd_id3148743\n"
-"153\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -43786,7 +41228,6 @@ msgstr "示例"
msgctxt ""
"04060184.xhp\n"
"par_id3147401\n"
-"154\n"
"help.text"
msgid "<item type=\"input\">=MINA(1;\"Text\";20)</item> returns 0."
msgstr "<item type=\"input\">=MINA(1;\"Text\";20)</item> 返回 0。"
@@ -43795,7 +41236,6 @@ msgstr "<item type=\"input\">=MINA(1;\"Text\";20)</item> 返回 0。"
msgctxt ""
"04060184.xhp\n"
"par_id3147295\n"
-"155\n"
"help.text"
msgid "<item type=\"input\">=MINA(A1:B100)</item> returns the smallest value in the list."
msgstr "<item type=\"input\">=MINA(A1:B100)</item> 返回该列表中的最小值。"
@@ -43812,7 +41252,6 @@ msgstr "<bookmark_value>AVEDEV 函数</bookmark_value><bookmark_value>平均值;
msgctxt ""
"04060184.xhp\n"
"hd_id3166465\n"
-"27\n"
"help.text"
msgid "AVEDEV"
msgstr "AVEDEV"
@@ -43821,7 +41260,6 @@ msgstr "AVEDEV"
msgctxt ""
"04060184.xhp\n"
"par_id3150373\n"
-"28\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MITTELABW\">Returns the average of the absolute deviations of data points from their mean.</ahelp> Displays the diffusion in a data set."
msgstr "<ahelp hid=\"HID_FUNC_MITTELABW\">返回一组数据点到其算术平均值的绝对偏差的平均值。</ahelp>由此体现一个数据集的离散状况。"
@@ -43830,7 +41268,6 @@ msgstr "<ahelp hid=\"HID_FUNC_MITTELABW\">返回一组数据点到其算术平
msgctxt ""
"04060184.xhp\n"
"hd_id3150038\n"
-"29\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -43839,7 +41276,6 @@ msgstr "语法"
msgctxt ""
"04060184.xhp\n"
"par_id3145636\n"
-"30\n"
"help.text"
msgid "AVEDEV(Number1; Number2; ...Number30)"
msgstr "AVEDEV(Number1; Number2; ...Number30)"
@@ -43848,7 +41284,6 @@ msgstr "AVEDEV(Number1; Number2; ...Number30)"
msgctxt ""
"04060184.xhp\n"
"par_id3157871\n"
-"31\n"
"help.text"
msgid "<emph>Number1, Number2,...Number30</emph> are values or ranges that represent a sample. Each number can also be replaced by a reference."
msgstr "<emph>Number1, Number2,...Number30</emph> 是表示取样的值或范围。每个数字也可以用引用替换。"
@@ -43857,7 +41292,6 @@ msgstr "<emph>Number1, Number2,...Number30</emph> 是表示取样的值或范围
msgctxt ""
"04060184.xhp\n"
"hd_id3149725\n"
-"32\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -43866,7 +41300,6 @@ msgstr "示例"
msgctxt ""
"04060184.xhp\n"
"par_id3153122\n"
-"33\n"
"help.text"
msgid "<item type=\"input\">=AVEDEV(A1:A50)</item>"
msgstr "<item type=\"input\">=AVEDEV(A1:A50)</item>"
@@ -43883,7 +41316,6 @@ msgstr "<bookmark_value>AVERAGE 函数</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id3145824\n"
-"35\n"
"help.text"
msgid "AVERAGE"
msgstr "AVERAGE"
@@ -43892,7 +41324,6 @@ msgstr "AVERAGE"
msgctxt ""
"04060184.xhp\n"
"par_id3150482\n"
-"36\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MITTELWERT\">Returns the average of the arguments.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_MITTELWERT\">返回参数的平均值。</ahelp>"
@@ -43901,7 +41332,6 @@ msgstr "<ahelp hid=\"HID_FUNC_MITTELWERT\">返回参数的平均值。</ahelp>"
msgctxt ""
"04060184.xhp\n"
"hd_id3146943\n"
-"37\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -43910,7 +41340,6 @@ msgstr "语法"
msgctxt ""
"04060184.xhp\n"
"par_id3154679\n"
-"38\n"
"help.text"
msgid "AVERAGE(Number1; Number2; ...Number30)"
msgstr "AVERAGE(Number1; Number2; ...Number30)"
@@ -43919,7 +41348,6 @@ msgstr "AVERAGE(Number1; Number2; ...Number30)"
msgctxt ""
"04060184.xhp\n"
"par_id3150741\n"
-"39\n"
"help.text"
msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
msgstr ""
@@ -43928,7 +41356,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"hd_id3153039\n"
-"40\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -43937,7 +41364,6 @@ msgstr "示例"
msgctxt ""
"04060184.xhp\n"
"par_id3151232\n"
-"41\n"
"help.text"
msgid "<item type=\"input\">=AVERAGE(A1:A50)</item>"
msgstr "<item type=\"input\">=AVERAGE(A1:A50)</item>"
@@ -43954,7 +41380,6 @@ msgstr "<bookmark_value>AVERAGEA 函数</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id3148754\n"
-"157\n"
"help.text"
msgid "AVERAGEA"
msgstr "AVERAGEA"
@@ -43963,7 +41388,6 @@ msgstr "AVERAGEA"
msgctxt ""
"04060184.xhp\n"
"par_id3145138\n"
-"158\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MITTELWERTA\">Returns the average of the arguments. The value of a text is 0.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_MITTELWERTA\">返回自变量平均值。文本的值为 0。</ahelp>"
@@ -43972,7 +41396,6 @@ msgstr "<ahelp hid=\"HID_FUNC_MITTELWERTA\">返回自变量平均值。文本的
msgctxt ""
"04060184.xhp\n"
"hd_id3153326\n"
-"159\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -43981,7 +41404,6 @@ msgstr "语法"
msgctxt ""
"04060184.xhp\n"
"par_id3149734\n"
-"160\n"
"help.text"
msgid "AVERAGEA(Value1; Value2; ... Value30)"
msgstr "AVERAGEA(Value1; Value2; ... Value30)"
@@ -43990,7 +41412,6 @@ msgstr "AVERAGEA(Value1; Value2; ... Value30)"
msgctxt ""
"04060184.xhp\n"
"par_id3155260\n"
-"161\n"
"help.text"
msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
msgstr "<emph>Value1; Value2;...Value30</emph> 是值或区域。文字的值为 0。"
@@ -43999,7 +41420,6 @@ msgstr "<emph>Value1; Value2;...Value30</emph> 是值或区域。文字的值为
msgctxt ""
"04060184.xhp\n"
"hd_id3149504\n"
-"162\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -44008,7 +41428,6 @@ msgstr "示例"
msgctxt ""
"04060184.xhp\n"
"par_id3150864\n"
-"163\n"
"help.text"
msgid "<item type=\"input\">=AVERAGEA(A1:A50)</item>"
msgstr "<item type=\"input\">=AVERAGEA(A1:A50)</item>"
@@ -44025,7 +41444,6 @@ msgstr "<bookmark_value>MODE 函数</bookmark_value><bookmark_value>频率最高
msgctxt ""
"04060184.xhp\n"
"hd_id3153933\n"
-"43\n"
"help.text"
msgid "MODE"
msgstr "MODE"
@@ -44034,7 +41452,6 @@ msgstr "MODE"
msgctxt ""
"04060184.xhp\n"
"par_id3153085\n"
-"44\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MODALWERT\">Returns the most common value in a data set.</ahelp> If there are several values with the same frequency, it returns the smallest value. An error occurs when a value doesn't appear twice."
msgstr "<ahelp hid=\"HID_FUNC_MODALWERT\">返回数组中出现频率最高的数值。</ahelp>如果有多个值出现次数相同,便给出其中最小的数值。如果一个数值没有出现两次,则报错。"
@@ -44043,7 +41460,6 @@ msgstr "<ahelp hid=\"HID_FUNC_MODALWERT\">返回数组中出现频率最高的
msgctxt ""
"04060184.xhp\n"
"hd_id3153003\n"
-"45\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -44052,7 +41468,6 @@ msgstr "语法"
msgctxt ""
"04060184.xhp\n"
"par_id3155950\n"
-"46\n"
"help.text"
msgid "MODE(Number1; Number2; ...Number30)"
msgstr "MODE(Number1; Number2; ...Number30)"
@@ -44061,7 +41476,6 @@ msgstr "MODE(Number1; Number2; ...Number30)"
msgctxt ""
"04060184.xhp\n"
"par_id3150337\n"
-"47\n"
"help.text"
msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
msgstr "<emph>Number1; Number2;...Number30</emph> 是数值或区域。"
@@ -44070,7 +41484,6 @@ msgstr "<emph>Number1; Number2;...Number30</emph> 是数值或区域。"
msgctxt ""
"04060184.xhp\n"
"hd_id3153571\n"
-"48\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -44079,13 +41492,11 @@ msgstr "示例"
msgctxt ""
"04060184.xhp\n"
"par_id3153733\n"
-"49\n"
"help.text"
msgid "<item type=\"input\">=MODE(A1:A50)</item>"
msgstr "<item type=\"input\">=MODE(A1:A50)</item>"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"bm_id2953933\n"
@@ -44097,17 +41508,14 @@ msgstr "<bookmark_value>MODE 函数</bookmark_value><bookmark_value>频率最高
msgctxt ""
"04060184.xhp\n"
"hd_id2953933\n"
-"43\n"
"help.text"
msgid "MODE.SNGL"
msgstr ""
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2953085\n"
-"44\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MODAL_VALUE_MS\">Returns the most frequently occurring, or repetitive, value in an array or range of data.</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\">返回数组中出现频率最高的数值。</ahelp>如果有多个值出现次数相同,便给出其中最小的数值。如果一个数值没有出现两次,则报错。"
@@ -44116,7 +41524,6 @@ msgstr "<ahelp hid=\"HID_FUNC_MODALWERT\">返回数组中出现频率最高的
msgctxt ""
"04060184.xhp\n"
"hd_id2953003\n"
-"45\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -44125,17 +41532,14 @@ msgstr "语法"
msgctxt ""
"04060184.xhp\n"
"par_id2955950\n"
-"46\n"
"help.text"
msgid "MODE.SNGL(Number1; Number2; ...Number30)"
msgstr "MODE.SNGL(Number1, Number2, ...Number30)"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2950337\n"
-"47\n"
"help.text"
msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
msgstr "<emph>Number1; Number2;...Number30</emph> 是数值或区域。"
@@ -44144,7 +41548,6 @@ msgstr "<emph>Number1; Number2;...Number30</emph> 是数值或区域。"
msgctxt ""
"04060184.xhp\n"
"par_id2963792\n"
-"629\n"
"help.text"
msgid "If the data set contains no duplicate data points, MODE.SNGL returns the #VALUE! error value."
msgstr ""
@@ -44153,7 +41556,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"hd_id2953571\n"
-"48\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -44162,13 +41564,11 @@ msgstr "示例"
msgctxt ""
"04060184.xhp\n"
"par_id2953733\n"
-"49\n"
"help.text"
msgid "<item type=\"input\">=MODE.SNGL(A1:A50)</item>"
msgstr "<item type=\"input\">=MODE.SNGL(A1:A50)</item>"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"bm_id2853933\n"
@@ -44180,7 +41580,6 @@ msgstr "<bookmark_value>MODE 函数</bookmark_value><bookmark_value>频率最高
msgctxt ""
"04060184.xhp\n"
"hd_id2853933\n"
-"43\n"
"help.text"
msgid "MODE.MULT"
msgstr ""
@@ -44189,7 +41588,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"par_id2853085\n"
-"44\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MODAL_VALUE_MULTI\">Returns a vertical array of the statistical modes (the most frequently occurring values) within a list of supplied numbers.</ahelp>"
msgstr ""
@@ -44198,7 +41596,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"hd_id2853003\n"
-"45\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -44207,17 +41604,14 @@ msgstr "语法"
msgctxt ""
"04060184.xhp\n"
"par_id2855950\n"
-"46\n"
"help.text"
msgid "MODE.MULT(Number1; Number2; ...Number30)"
msgstr "MODE.MULT(Number1, Number2, ...Number30)"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2850337\n"
-"47\n"
"help.text"
msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
msgstr "<emph>Number1; Number2;...Number30</emph> 是数值或区域。"
@@ -44226,7 +41620,6 @@ msgstr "<emph>Number1; Number2;...Number30</emph> 是数值或区域。"
msgctxt ""
"04060184.xhp\n"
"par_id2863792\n"
-"629\n"
"help.text"
msgid "As the MODE.MULT function returns an array of values, it must be entered as an array formula. If the function is not entered as an array formula, only the first mode is returned, which is the same as using the MODE.SNGL function."
msgstr ""
@@ -44235,7 +41628,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"hd_id2853571\n"
-"48\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -44244,7 +41636,6 @@ msgstr "示例"
msgctxt ""
"04060184.xhp\n"
"par_id2853733\n"
-"49\n"
"help.text"
msgid "<item type=\"input\">=MODE.MULT(A1:A50)</item>"
msgstr "<item type=\"input\">=MODE.MULT(A1:A50)</item>"
@@ -44261,7 +41652,6 @@ msgstr "<bookmark_value>NEGBINOMDIST 函数</bookmark_value><bookmark_value>负
msgctxt ""
"04060184.xhp\n"
"hd_id3149879\n"
-"51\n"
"help.text"
msgid "NEGBINOMDIST"
msgstr "NEGBINOMDIST"
@@ -44270,7 +41660,6 @@ msgstr "NEGBINOMDIST"
msgctxt ""
"04060184.xhp\n"
"par_id3155437\n"
-"52\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Returns the negative binomial distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">返回负二项式分布函数值。</ahelp>"
@@ -44279,7 +41668,6 @@ msgstr "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">返回负二项式分布函数值
msgctxt ""
"04060184.xhp\n"
"hd_id3145351\n"
-"53\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -44288,7 +41676,6 @@ msgstr "语法"
msgctxt ""
"04060184.xhp\n"
"par_id3150935\n"
-"54\n"
"help.text"
msgid "NEGBINOMDIST(X; R; SP)"
msgstr "NEGBINOMDIST(X; R; SP)"
@@ -44297,7 +41684,6 @@ msgstr "NEGBINOMDIST(X; R; SP)"
msgctxt ""
"04060184.xhp\n"
"par_id3153044\n"
-"55\n"
"help.text"
msgid "<emph>X</emph> represents the value returned for unsuccessful tests."
msgstr "<emph>X</emph> 表示失败测试的返回值。"
@@ -44306,7 +41692,6 @@ msgstr "<emph>X</emph> 表示失败测试的返回值。"
msgctxt ""
"04060184.xhp\n"
"par_id3151018\n"
-"56\n"
"help.text"
msgid "<emph>R</emph> represents the value returned for successful tests."
msgstr "<emph>R</emph> 表示成功测试的返回值。"
@@ -44315,7 +41700,6 @@ msgstr "<emph>R</emph> 表示成功测试的返回值。"
msgctxt ""
"04060184.xhp\n"
"par_id3148878\n"
-"57\n"
"help.text"
msgid "<emph>SP</emph> is the probability of the success of an attempt."
msgstr "<emph>SP</emph> 是尝试成功的概率。"
@@ -44324,7 +41708,6 @@ msgstr "<emph>SP</emph> 是尝试成功的概率。"
msgctxt ""
"04060184.xhp\n"
"hd_id3149539\n"
-"58\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -44333,13 +41716,11 @@ msgstr "示例"
msgctxt ""
"04060184.xhp\n"
"par_id3148770\n"
-"59\n"
"help.text"
msgid "<item type=\"input\">=NEGBINOMDIST(1;1;0.5)</item> returns 0.25."
msgstr "<item type=\"input\">=NEGBINOMDIST(1;1;0.5)</item> 返回 0.25。"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"bm_id2949879\n"
@@ -44351,17 +41732,14 @@ msgstr "<bookmark_value>NEGBINOMDIST 函数</bookmark_value><bookmark_value>负
msgctxt ""
"04060184.xhp\n"
"hd_id2949879\n"
-"51\n"
"help.text"
msgid "NEGBINOM.DIST"
msgstr "NEGBINOM.DIST"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2955437\n"
-"52\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_NEGBINOMDIST_MS\">Returns the negative binomial density or distribution function.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">返回负二项式分布函数值。</ahelp>"
@@ -44370,7 +41748,6 @@ msgstr "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">返回负二项式分布函数值
msgctxt ""
"04060184.xhp\n"
"hd_id2945351\n"
-"53\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -44379,7 +41756,6 @@ msgstr "语法"
msgctxt ""
"04060184.xhp\n"
"par_id2950935\n"
-"54\n"
"help.text"
msgid "NEGBINOM.DIST(X; R; SP; Cumulative)"
msgstr ""
@@ -44388,7 +41764,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"par_id2953044\n"
-"55\n"
"help.text"
msgid "<emph>X</emph> represents the value returned for unsuccessful tests."
msgstr "<emph>X</emph> 表示失败测试的返回值。"
@@ -44397,7 +41772,6 @@ msgstr "<emph>X</emph> 表示失败测试的返回值。"
msgctxt ""
"04060184.xhp\n"
"par_id2951018\n"
-"56\n"
"help.text"
msgid "<emph>R</emph> represents the value returned for successful tests."
msgstr "<emph>R</emph> 表示成功测试的返回值。"
@@ -44406,17 +41780,14 @@ msgstr "<emph>R</emph> 表示成功测试的返回值。"
msgctxt ""
"04060184.xhp\n"
"par_id2948878\n"
-"57\n"
"help.text"
msgid "<emph>SP</emph> is the probability of the success of an attempt."
msgstr "<emph>SP</emph> 是尝试成功的概率。"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2948879\n"
-"57\n"
"help.text"
msgid "<emph>Cumulative</emph> = 0 calculates the density function, <emph>Cumulative</emph> = 1 calculates the distribution."
msgstr "<emph>Cumulative</emph>(可选)= 0 计算密度函数,Cumulative = 1 计算分布。"
@@ -44425,7 +41796,6 @@ msgstr "<emph>Cumulative</emph>(可选)= 0 计算密度函数,Cumulative =
msgctxt ""
"04060184.xhp\n"
"hd_id2949539\n"
-"58\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -44434,7 +41804,6 @@ msgstr "示例"
msgctxt ""
"04060184.xhp\n"
"par_id2948770\n"
-"59\n"
"help.text"
msgid "<item type=\"input\">=NEGBINOM.DIST(1;1;0.5;0)</item> returns 0.25."
msgstr "<item type=\"input\">=NEGBINOM.DIST(1,1,0.5,0)</item> 返回 0.25."
@@ -44443,7 +41812,6 @@ msgstr "<item type=\"input\">=NEGBINOM.DIST(1,1,0.5,0)</item> 返回 0.25."
msgctxt ""
"04060184.xhp\n"
"par_id2948771\n"
-"59\n"
"help.text"
msgid "<item type=\"input\">=NEGBINOM.DIST(1;1;0.5;1)</item> returns 0.75."
msgstr "<item type=\"input\">=NEGBINOM.DIST(1,1,0.5,1)</item> 返回 0.75."
@@ -44460,7 +41828,6 @@ msgstr "<bookmark_value>NORMINV 函数</bookmark_value><bookmark_value>正态分
msgctxt ""
"04060184.xhp\n"
"hd_id3155516\n"
-"61\n"
"help.text"
msgid "NORMINV"
msgstr "NORMINV"
@@ -44469,7 +41836,6 @@ msgstr "NORMINV"
msgctxt ""
"04060184.xhp\n"
"par_id3154634\n"
-"62\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_NORMINV\">Returns the inverse of the normal cumulative distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_NORMINV\">返回标准正态分布函数的逆函数。</ahelp>"
@@ -44478,7 +41844,6 @@ msgstr "<ahelp hid=\"HID_FUNC_NORMINV\">返回标准正态分布函数的逆函
msgctxt ""
"04060184.xhp\n"
"hd_id3153227\n"
-"63\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -44487,7 +41852,6 @@ msgstr "语法"
msgctxt ""
"04060184.xhp\n"
"par_id3147534\n"
-"64\n"
"help.text"
msgid "NORMINV(Number; Mean; StDev)"
msgstr "NORMINV(Number; Mean; StDev)"
@@ -44496,7 +41860,6 @@ msgstr "NORMINV(Number; Mean; StDev)"
msgctxt ""
"04060184.xhp\n"
"par_id3154950\n"
-"65\n"
"help.text"
msgid "<emph>Number</emph> represents the probability value used to determine the inverse normal distribution."
msgstr "<emph>Number</emph> 表示用于计算正态分布逆函数的概率值。"
@@ -44505,7 +41868,6 @@ msgstr "<emph>Number</emph> 表示用于计算正态分布逆函数的概率值
msgctxt ""
"04060184.xhp\n"
"par_id3150690\n"
-"66\n"
"help.text"
msgid "<emph>Mean</emph> represents the mean value in the normal distribution."
msgstr "<emph>Mean</emph> 表示正态分布的平均值。"
@@ -44514,7 +41876,6 @@ msgstr "<emph>Mean</emph> 表示正态分布的平均值。"
msgctxt ""
"04060184.xhp\n"
"par_id3148594\n"
-"67\n"
"help.text"
msgid "<emph>StDev</emph> represents the standard deviation of the normal distribution."
msgstr "<emph>StDev</emph> 表示正态分布的标准偏差。"
@@ -44523,7 +41884,6 @@ msgstr "<emph>StDev</emph> 表示正态分布的标准偏差。"
msgctxt ""
"04060184.xhp\n"
"hd_id3155822\n"
-"68\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -44532,13 +41892,11 @@ msgstr "示例"
msgctxt ""
"04060184.xhp\n"
"par_id3153921\n"
-"69\n"
"help.text"
msgid "<item type=\"input\">=NORMINV(0.9;63;5)</item> returns 69.41. If the average egg weighs 63 grams with a standard deviation of 5, then there will be 90% probability that the egg will not be heavier than 69.41g grams."
msgstr "<item type=\"input\">=NORMINV(0.9;63;5)</item> 返回 69.41。如果鸡蛋的平均重量为 63 克,标准偏差为 5,则鸡蛋不超过 69.41 克的概率为 90%。"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"bm_id2955516\n"
@@ -44550,17 +41908,14 @@ msgstr "<bookmark_value>NORMINV 函数</bookmark_value><bookmark_value>正态分
msgctxt ""
"04060184.xhp\n"
"hd_id2955516\n"
-"61\n"
"help.text"
msgid "NORM.INV"
msgstr "NORM.INV"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2954634\n"
-"62\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_NORMINV_MS\">Returns the inverse of the normal cumulative distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_NORMINV\">返回标准正态分布函数的逆函数。</ahelp>"
@@ -44569,7 +41924,6 @@ msgstr "<ahelp hid=\"HID_FUNC_NORMINV\">返回标准正态分布函数的逆函
msgctxt ""
"04060184.xhp\n"
"hd_id2953227\n"
-"63\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -44578,37 +41932,30 @@ msgstr "语法"
msgctxt ""
"04060184.xhp\n"
"par_id2947534\n"
-"64\n"
"help.text"
msgid "NORM.INV(Number; Mean; StDev)"
msgstr "NORM.INV(Number, Mean, StDev)"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2954950\n"
-"65\n"
"help.text"
msgid "<emph>Number</emph> represents the probability value used to determine the inverse normal distribution."
msgstr "<emph>Number</emph> 表示用于计算正态分布逆函数的概率值。"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2950690\n"
-"66\n"
"help.text"
msgid "<emph>Mean</emph> represents the mean value in the normal distribution."
msgstr "<emph>Mean</emph> 表示正态分布的平均值。"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2948594\n"
-"67\n"
"help.text"
msgid "<emph>StDev</emph> represents the standard deviation of the normal distribution."
msgstr "<emph>StDev</emph> 表示正态分布的标准偏差。"
@@ -44617,17 +41964,14 @@ msgstr "<emph>StDev</emph> 表示正态分布的标准偏差。"
msgctxt ""
"04060184.xhp\n"
"hd_id2955822\n"
-"68\n"
"help.text"
msgid "Example"
msgstr "示例"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2953921\n"
-"69\n"
"help.text"
msgid "<item type=\"input\">=NORM.INV(0.9;63;5)</item> returns 69.4077578277. If the average egg weighs 63 grams with a standard deviation of 5, then there will be 90% probability that the egg will not be heavier than 69.41g grams."
msgstr "<item type=\"input\">=NORMINV(0.9;63;5)</item> 返回 69.41。如果鸡蛋的平均重量为 63 克,标准偏差为 5,则鸡蛋不超过 69.41 克的概率为 90%。"
@@ -44644,7 +41988,6 @@ msgstr "<bookmark_value>NORMDIST 函数</bookmark_value><bookmark_value>密度
msgctxt ""
"04060184.xhp\n"
"hd_id3153722\n"
-"71\n"
"help.text"
msgid "NORMDIST"
msgstr "NORMDIST"
@@ -44653,7 +41996,6 @@ msgstr "NORMDIST"
msgctxt ""
"04060184.xhp\n"
"par_id3150386\n"
-"72\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_NORMVERT\">Returns the density function or the normal cumulative distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_NORMVERT\">返回密度函数或标准正态分布函数。</ahelp>"
@@ -44662,7 +42004,6 @@ msgstr "<ahelp hid=\"HID_FUNC_NORMVERT\">返回密度函数或标准正态分布
msgctxt ""
"04060184.xhp\n"
"hd_id3083282\n"
-"73\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -44671,7 +42012,6 @@ msgstr "语法"
msgctxt ""
"04060184.xhp\n"
"par_id3150613\n"
-"74\n"
"help.text"
msgid "NORMDIST(Number; Mean; StDev; C)"
msgstr "NORMDIST(Number; Mean; StDev; C)"
@@ -44680,7 +42020,6 @@ msgstr "NORMDIST(Number; Mean; StDev; C)"
msgctxt ""
"04060184.xhp\n"
"par_id3149820\n"
-"75\n"
"help.text"
msgid "<emph>Number</emph> is the value of the distribution based on which the normal distribution is to be calculated."
msgstr "<emph>Number</emph> 是用于计算正态分布的分布值。"
@@ -44689,7 +42028,6 @@ msgstr "<emph>Number</emph> 是用于计算正态分布的分布值。"
msgctxt ""
"04060184.xhp\n"
"par_id3146063\n"
-"76\n"
"help.text"
msgid "<emph>Mean</emph> is the mean value of the distribution."
msgstr "<emph>Mean</emph> 是分布的平均值。"
@@ -44698,7 +42036,6 @@ msgstr "<emph>Mean</emph> 是分布的平均值。"
msgctxt ""
"04060184.xhp\n"
"par_id3156295\n"
-"77\n"
"help.text"
msgid "<emph>StDev</emph> is the standard deviation of the distribution."
msgstr "<emph>StDev</emph> 是正态分布的标准差。"
@@ -44707,7 +42044,6 @@ msgstr "<emph>StDev</emph> 是正态分布的标准差。"
msgctxt ""
"04060184.xhp\n"
"par_id3145080\n"
-"78\n"
"help.text"
msgid "<emph>C</emph> is optional. <emph>C</emph> = 0 calculates the density function, <emph>C</emph> = 1 calculates the distribution."
msgstr "<emph>C</emph> 是可选的。<emph>C</emph> = 0 计算密度函数,<emph>C</emph> = 1 计算分布。"
@@ -44716,7 +42052,6 @@ msgstr "<emph>C</emph> 是可选的。<emph>C</emph> = 0 计算密度函数,<e
msgctxt ""
"04060184.xhp\n"
"hd_id3152972\n"
-"79\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -44725,7 +42060,6 @@ msgstr "示例"
msgctxt ""
"04060184.xhp\n"
"par_id3149283\n"
-"80\n"
"help.text"
msgid "<item type=\"input\">=NORMDIST(70;63;5;0)</item> returns 0.03."
msgstr "<item type=\"input\">=NORMDIST(70;63;5;0)</item> 返回 0.03。"
@@ -44734,13 +42068,11 @@ msgstr "<item type=\"input\">=NORMDIST(70;63;5;0)</item> 返回 0.03。"
msgctxt ""
"04060184.xhp\n"
"par_id3149448\n"
-"81\n"
"help.text"
msgid "<item type=\"input\">=NORMDIST(70;63;5;1)</item> returns 0.92."
msgstr "<item type=\"input\">=NORMDIST(70;63;5;1)</item> 返回 0.92。"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"bm_id2913722\n"
@@ -44752,17 +42084,14 @@ msgstr "<bookmark_value>NORMDIST 函数</bookmark_value><bookmark_value>密度
msgctxt ""
"04060184.xhp\n"
"hd_id2913722\n"
-"71\n"
"help.text"
msgid "NORM.DIST"
msgstr "NORM.DIST"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2910386\n"
-"72\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_NORMDIST_MS\">Returns the density function or the normal cumulative distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_NORMVERT\">返回密度函数或标准正态分布函数。</ahelp>"
@@ -44771,7 +42100,6 @@ msgstr "<ahelp hid=\"HID_FUNC_NORMVERT\">返回密度函数或标准正态分布
msgctxt ""
"04060184.xhp\n"
"hd_id2913282\n"
-"73\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -44780,17 +42108,14 @@ msgstr "语法"
msgctxt ""
"04060184.xhp\n"
"par_id2910613\n"
-"74\n"
"help.text"
msgid "NORM.DIST(Number; Mean; StDev; C)"
msgstr "NORM.DIST(Number, Mean, StDev, C)"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2919820\n"
-"75\n"
"help.text"
msgid "<emph>Number</emph> is the value of the distribution based on which the normal distribution is to be calculated."
msgstr "<emph>Number</emph> 是用于计算正态分布的分布值。"
@@ -44799,7 +42124,6 @@ msgstr "<emph>Number</emph> 是用于计算正态分布的分布值。"
msgctxt ""
"04060184.xhp\n"
"par_id2916063\n"
-"76\n"
"help.text"
msgid "<emph>Mean</emph> is the mean value of the distribution."
msgstr "<emph>Mean</emph> 是分布的平均值。"
@@ -44808,17 +42132,14 @@ msgstr "<emph>Mean</emph> 是分布的平均值。"
msgctxt ""
"04060184.xhp\n"
"par_id2916295\n"
-"77\n"
"help.text"
msgid "<emph>StDev</emph> is the standard deviation of the distribution."
msgstr "<emph>StDev</emph> 是正态分布的标准差。"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2915080\n"
-"78\n"
"help.text"
msgid "<emph>C</emph> = 0 calculates the density function, <emph>C</emph> = 1 calculates the distribution."
msgstr "<emph>C</emph> 是可选的。<emph>C</emph> = 0 计算密度函数,<emph>C</emph> = 1 计算分布。"
@@ -44827,7 +42148,6 @@ msgstr "<emph>C</emph> 是可选的。<emph>C</emph> = 0 计算密度函数,<e
msgctxt ""
"04060184.xhp\n"
"hd_id2912972\n"
-"79\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -44836,7 +42156,6 @@ msgstr "示例"
msgctxt ""
"04060184.xhp\n"
"par_id2919283\n"
-"80\n"
"help.text"
msgid "<item type=\"input\">=NORM.DIST(70;63;5;0)</item> returns 0.029945493."
msgstr "<item type=\"input\">=NORM.DIST(70,63,5,0)</item> 返回 0.029945493."
@@ -44845,7 +42164,6 @@ msgstr "<item type=\"input\">=NORM.DIST(70,63,5,0)</item> 返回 0.029945493."
msgctxt ""
"04060184.xhp\n"
"par_id2919448\n"
-"81\n"
"help.text"
msgid "<item type=\"input\">=NORM.DIST(70;63;5;1)</item> returns 0.9192433408."
msgstr "<item type=\"input\">=NORM.DIST(70,63,5,1)</item> 返回 0.9192433408."
@@ -44862,7 +42180,6 @@ msgstr "<bookmark_value>PEARSON 函数</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id3152934\n"
-"83\n"
"help.text"
msgid "PEARSON"
msgstr "PEARSON"
@@ -44871,7 +42188,6 @@ msgstr "PEARSON"
msgctxt ""
"04060184.xhp\n"
"par_id3153216\n"
-"84\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_PEARSON\">Returns the Pearson product moment correlation coefficient r.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_PEARSON\">返回 Pearson 乘积矩相关系数 r。</ahelp>"
@@ -44880,7 +42196,6 @@ msgstr "<ahelp hid=\"HID_FUNC_PEARSON\">返回 Pearson 乘积矩相关系数 r
msgctxt ""
"04060184.xhp\n"
"hd_id3147081\n"
-"85\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -44889,7 +42204,6 @@ msgstr "语法"
msgctxt ""
"04060184.xhp\n"
"par_id3156133\n"
-"86\n"
"help.text"
msgid "PEARSON(Data1; Data2)"
msgstr "PEARSON(Data1; Data2)"
@@ -44898,7 +42212,6 @@ msgstr "PEARSON(Data1; Data2)"
msgctxt ""
"04060184.xhp\n"
"par_id3151272\n"
-"87\n"
"help.text"
msgid "<emph>Data1</emph> represents the array of the first data set."
msgstr "<emph>Data1</emph> 表示第一个数据集的数组。"
@@ -44907,7 +42220,6 @@ msgstr "<emph>Data1</emph> 表示第一个数据集的数组。"
msgctxt ""
"04060184.xhp\n"
"par_id3153279\n"
-"88\n"
"help.text"
msgid "<emph>Data2</emph> represents the array of the second data set."
msgstr "<emph>Data2</emph> 表示第二个数据集的数组。"
@@ -44916,7 +42228,6 @@ msgstr "<emph>Data2</emph> 表示第二个数据集的数组。"
msgctxt ""
"04060184.xhp\n"
"hd_id3147567\n"
-"89\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -44925,7 +42236,6 @@ msgstr "示例"
msgctxt ""
"04060184.xhp\n"
"par_id3151187\n"
-"90\n"
"help.text"
msgid "<item type=\"input\">=PEARSON(A1:A30;B1:B30)</item> returns the Pearson correlation coefficient of both data sets."
msgstr "<item type=\"input\">=PEARSON(A1:A30;B1:B30)</item> 返回两个数据集的 Pearson 相关系数。"
@@ -44942,7 +42252,6 @@ msgstr "<bookmark_value>PHI 函数</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id3152806\n"
-"92\n"
"help.text"
msgid "PHI"
msgstr "PHI"
@@ -44951,7 +42260,6 @@ msgstr "PHI"
msgctxt ""
"04060184.xhp\n"
"par_id3150254\n"
-"93\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_PHI\">Returns the values of the distribution function for a standard normal distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_PHI\">计算标准正态分布的分布函数值。</ahelp>"
@@ -44960,7 +42268,6 @@ msgstr "<ahelp hid=\"HID_FUNC_PHI\">计算标准正态分布的分布函数值
msgctxt ""
"04060184.xhp\n"
"hd_id3154748\n"
-"94\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -44969,7 +42276,6 @@ msgstr "语法"
msgctxt ""
"04060184.xhp\n"
"par_id3149976\n"
-"95\n"
"help.text"
msgid "PHI(Number)"
msgstr "PHI(number)"
@@ -44978,7 +42284,6 @@ msgstr "PHI(number)"
msgctxt ""
"04060184.xhp\n"
"par_id3156108\n"
-"96\n"
"help.text"
msgid "<emph>Number</emph> represents the value based on which the standard normal distribution is calculated."
msgstr "<emph>Number</emph> 是用于计算标准正态分布的数值。"
@@ -44987,7 +42292,6 @@ msgstr "<emph>Number</emph> 是用于计算标准正态分布的数值。"
msgctxt ""
"04060184.xhp\n"
"hd_id3153621\n"
-"97\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -44996,7 +42300,6 @@ msgstr "示例"
msgctxt ""
"04060184.xhp\n"
"par_id3155849\n"
-"98\n"
"help.text"
msgid "<item type=\"input\">=PHI(2.25) </item>= 0.03"
msgstr "<item type=\"input\">=PHI(2.25) </item>= 0.03"
@@ -45005,7 +42308,6 @@ msgstr "<item type=\"input\">=PHI(2.25) </item>= 0.03"
msgctxt ""
"04060184.xhp\n"
"par_id3143236\n"
-"99\n"
"help.text"
msgid "<item type=\"input\">=PHI(-2.25)</item> = 0.03"
msgstr "<item type=\"input\">=PHI(-2.25)</item> = 0.03"
@@ -45014,7 +42316,6 @@ msgstr "<item type=\"input\">=PHI(-2.25)</item> = 0.03"
msgctxt ""
"04060184.xhp\n"
"par_id3149286\n"
-"100\n"
"help.text"
msgid "<item type=\"input\">=PHI(0)</item> = 0.4"
msgstr "<item type=\"input\">=PHI(0)</item> = 0.4"
@@ -45031,7 +42332,6 @@ msgstr "<bookmark_value>POISSON 函数</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id3153985\n"
-"102\n"
"help.text"
msgid "POISSON"
msgstr "POISSON"
@@ -45040,7 +42340,6 @@ msgstr "POISSON"
msgctxt ""
"04060184.xhp\n"
"par_id3154298\n"
-"103\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_POISSON\">Returns the Poisson distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_POISSON\">返回泊松分布的函数值。</ahelp>"
@@ -45049,7 +42348,6 @@ msgstr "<ahelp hid=\"HID_FUNC_POISSON\">返回泊松分布的函数值。</ahelp
msgctxt ""
"04060184.xhp\n"
"hd_id3159183\n"
-"104\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -45058,7 +42356,6 @@ msgstr "语法"
msgctxt ""
"04060184.xhp\n"
"par_id3146093\n"
-"105\n"
"help.text"
msgid "POISSON(Number; Mean; C)"
msgstr "POISSON(Number; Mean; C)"
@@ -45067,7 +42364,6 @@ msgstr "POISSON(Number; Mean; C)"
msgctxt ""
"04060184.xhp\n"
"par_id3147253\n"
-"106\n"
"help.text"
msgid "<emph>Number</emph> represents the value based on which the Poisson distribution is calculated."
msgstr "<emph>Number</emph> 是用于计算泊松分布的数值。"
@@ -45076,7 +42372,6 @@ msgstr "<emph>Number</emph> 是用于计算泊松分布的数值。"
msgctxt ""
"04060184.xhp\n"
"par_id3151177\n"
-"107\n"
"help.text"
msgid "<emph>Mean</emph> represents the middle value of the Poisson distribution."
msgstr "<emph>Mean</emph> 表示泊松分布的平均值。"
@@ -45085,7 +42380,6 @@ msgstr "<emph>Mean</emph> 表示泊松分布的平均值。"
msgctxt ""
"04060184.xhp\n"
"par_id3149200\n"
-"108\n"
"help.text"
msgid "<emph>C</emph> (optional) = 0 or False calculates the density function; <emph>C</emph> = 1 or True calculates the distribution. When omitted, the default value True is inserted when you save the document, for best compatibility with other programs and older versions of %PRODUCTNAME."
msgstr "<emph>C</emph>(可选)= 0 或 False 计算密度函数;<emph>C</emph> = 1 或 True 计算分布。如果忽略,将在您保存文档时插入默认值 True,这是为了最好地兼容其他程序或 %PRODUCTNAME 的早期版本。"
@@ -45094,7 +42388,6 @@ msgstr "<emph>C</emph>(可选)= 0 或 False 计算密度函数;<emph>C</em
msgctxt ""
"04060184.xhp\n"
"hd_id3159347\n"
-"109\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -45103,7 +42396,6 @@ msgstr "示例"
msgctxt ""
"04060184.xhp\n"
"par_id3150113\n"
-"110\n"
"help.text"
msgid "<item type=\"input\">=POISSON(60;50;1)</item> returns 0.93."
msgstr "<item type=\"input\">=POISSON(60;50;1)</item> 返回 0.93。"
@@ -45120,17 +42412,14 @@ msgstr "<bookmark_value>POISSON.DIST 返回</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id2953985\n"
-"102\n"
"help.text"
msgid "POISSON.DIST"
msgstr ""
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2954298\n"
-"103\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_POISSON_DIST_MS\">Returns the Poisson distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_POISSON\">返回泊松分布的函数值。</ahelp>"
@@ -45139,7 +42428,6 @@ msgstr "<ahelp hid=\"HID_FUNC_POISSON\">返回泊松分布的函数值。</ahelp
msgctxt ""
"04060184.xhp\n"
"hd_id2959183\n"
-"104\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -45148,37 +42436,30 @@ msgstr "语法"
msgctxt ""
"04060184.xhp\n"
"par_id2946093\n"
-"105\n"
"help.text"
msgid "POISSON.DIST(Number; Mean; C)"
msgstr "POISSON.DIST(Number, Mean, C)"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2947253\n"
-"106\n"
"help.text"
msgid "<emph>Number</emph> represents the value based on which the Poisson distribution is calculated."
msgstr "<emph>Number</emph> 是用于计算泊松分布的数值。"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2951177\n"
-"107\n"
"help.text"
msgid "<emph>Mean</emph> represents the middle value of the Poisson distribution."
msgstr "<emph>Mean</emph> 表示泊松分布的平均值。"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2949200\n"
-"108\n"
"help.text"
msgid "<emph>C</emph> (optional) = 0 or False calculates the density function; <emph>C</emph> = 1 or True calculates the distribution. When omitted, the default value True is inserted when you save the document, for best compatibility with other programs and older versions of %PRODUCTNAME."
msgstr "<emph>C</emph>(可选)= 0 或 False 计算密度函数;<emph>C</emph> = 1 或 True 计算分布。如果忽略,将在您保存文档时插入默认值 True,这是为了最好地兼容其他程序或 %PRODUCTNAME 的早期版本。"
@@ -45187,7 +42468,6 @@ msgstr "<emph>C</emph>(可选)= 0 或 False 计算密度函数;<emph>C</em
msgctxt ""
"04060184.xhp\n"
"hd_id2959347\n"
-"109\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -45196,7 +42476,6 @@ msgstr "示例"
msgctxt ""
"04060184.xhp\n"
"par_id2950113\n"
-"110\n"
"help.text"
msgid "<item type=\"input\">=POISSON.DIST(60;50;1)</item> returns 0.9278398202."
msgstr "<item type=\"input\">=POISSON.DIST(60,50,1)</item> 返回 0.9278398202."
@@ -45213,7 +42492,6 @@ msgstr "<bookmark_value>PERCENTILE 函数</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id3153100\n"
-"112\n"
"help.text"
msgid "PERCENTILE"
msgstr "PERCENTILE"
@@ -45222,7 +42500,6 @@ msgstr "PERCENTILE"
msgctxt ""
"04060184.xhp\n"
"par_id3154940\n"
-"113\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_QUANTIL\">Returns the alpha-percentile of data values in an array.</ahelp> A percentile returns the scale value for a data series which goes from the smallest (Alpha=0) to the largest value (alpha=1) of a data series. For <item type=\"literal\">Alpha</item> = 25%, the percentile means the first quartile; <item type=\"literal\">Alpha</item> = 50% is the MEDIAN."
msgstr "<ahelp hid=\"HID_FUNC_QUANTIL\"> 返回数组中数值的 alpha 百分点。</ahelp>此百分点返回数据序列最小值 (Alpha = 0),最大值 (alpha = 1) 的刻度值。<item type=\"literal\">Alpha</item> = 25% 表示第一个四分位数;<item type=\"literal\">Alpha</item> = 50% 为 MEDIAN。"
@@ -45231,7 +42508,6 @@ msgstr "<ahelp hid=\"HID_FUNC_QUANTIL\"> 返回数组中数值的 alpha 百分
msgctxt ""
"04060184.xhp\n"
"hd_id3150531\n"
-"114\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -45240,7 +42516,6 @@ msgstr "语法"
msgctxt ""
"04060184.xhp\n"
"par_id3148813\n"
-"115\n"
"help.text"
msgid "PERCENTILE(Data; Alpha)"
msgstr "PERCENTILE(Data; Alpha)"
@@ -45249,7 +42524,6 @@ msgstr "PERCENTILE(Data; Alpha)"
msgctxt ""
"04060184.xhp\n"
"par_id3153054\n"
-"116\n"
"help.text"
msgid "<emph>Data</emph> represents the array of data."
msgstr "<emph>Data</emph> 表示数据的数组。"
@@ -45258,7 +42532,6 @@ msgstr "<emph>Data</emph> 表示数据的数组。"
msgctxt ""
"04060184.xhp\n"
"par_id3154212\n"
-"117\n"
"help.text"
msgid "<emph>Alpha</emph> represents the percentage of the scale between 0 and 1."
msgstr "<emph>Alpha</emph> 表示 0 到 1 之间的刻度百分比。"
@@ -45267,7 +42540,6 @@ msgstr "<emph>Alpha</emph> 表示 0 到 1 之间的刻度百分比。"
msgctxt ""
"04060184.xhp\n"
"hd_id3154290\n"
-"118\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -45276,7 +42548,6 @@ msgstr "示例"
msgctxt ""
"04060184.xhp\n"
"par_id3159147\n"
-"119\n"
"help.text"
msgid "<item type=\"input\">=PERCENTILE(A1:A50;0.1)</item> represents the value in the data set, which equals 10% of the total data scale in A1:A50."
msgstr "<item type=\"input\">=PERCENTILE(A1:A50;0.1)</item> 表示数据集中的值,即等于 A1:A50 中的整个数据刻度的 10%。"
@@ -45293,7 +42564,6 @@ msgstr "<bookmark_value>PERCENTILE.EXC 函数</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id2853100\n"
-"112\n"
"help.text"
msgid "PERCENTILE.EXC"
msgstr ""
@@ -45302,7 +42572,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"par_id2854940\n"
-"113\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_PERCENTILE_EXC\">Returns the <item type=\"literal\">Alpha</item>'th percentile of a supplied range of values for a given value of <item type=\"literal\">Alpha</item>, within the range 0 to 1 (exclusive).</ahelp> A percentile returns the scale value for a data series which goes from the smallest (<item type=\"literal\">Alpha=0</item>) to the largest value (<item type=\"literal\">Alpha=1</item>) 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 ""
@@ -45311,7 +42580,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"par_id2754940\n"
-"113\n"
"help.text"
msgid "If <item type=\"literal\">Alpha</item> is not a multiple of <item type=\"literal\">1/(n+1)</item>, (where n is the number of values in the supplied array), the function interpolates between the values in the supplied array, to calculate the percentile value. However, if <item type=\"literal\">Alpha</item> is less than <item type=\"literal\">1/(n+1)</item> or <item type=\"literal\">Alpha</item> is greater than <item type=\"literal\">n/(n+1)</item>, the function is unable to interpolate, and so returns an error."
msgstr ""
@@ -45328,7 +42596,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"hd_id2850531\n"
-"114\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -45337,7 +42604,6 @@ msgstr "语法"
msgctxt ""
"04060184.xhp\n"
"par_id2848813\n"
-"115\n"
"help.text"
msgid "PERCENTILE.EXC(Data; Alpha)"
msgstr "PERCENTILE.EXC(Data, Alpha)"
@@ -45346,17 +42612,14 @@ msgstr "PERCENTILE.EXC(Data, Alpha)"
msgctxt ""
"04060184.xhp\n"
"par_id2853054\n"
-"116\n"
"help.text"
msgid "<emph>Data</emph> represents the array of data."
msgstr "<emph>Data</emph> 表示数据的数组。"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2854212\n"
-"117\n"
"help.text"
msgid "<emph>Alpha</emph> represents the percentage of the scale between 0 and 1."
msgstr "<emph>Alpha</emph> 表示 0 到 1 之间的刻度百分比。"
@@ -45365,17 +42628,14 @@ msgstr "<emph>Alpha</emph> 表示 0 到 1 之间的刻度百分比。"
msgctxt ""
"04060184.xhp\n"
"hd_id2854290\n"
-"118\n"
"help.text"
msgid "Example"
msgstr "示例"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2859147\n"
-"119\n"
"help.text"
msgid "<item type=\"input\">=PERCENTILE.EXC(A1:A50;10%)</item> represents the value in the data set, which equals 10% of the total data scale in A1:A50."
msgstr "<item type=\"input\">=PERCENTILE(A1:A50;0.1)</item> 表示数据集中的值,即等于 A1:A50 中的整个数据刻度的 10%。"
@@ -45392,17 +42652,14 @@ msgstr "<bookmark_value>PERCENTILE.INC 函数</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id2953100\n"
-"112\n"
"help.text"
msgid "PERCENTILE.INC"
msgstr ""
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2954940\n"
-"113\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_PERCENTILE_INC\">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\"> 返回数组中数值的 alpha 百分点。</ahelp>此百分点返回数据序列最小值 (Alpha = 0),最大值 (alpha = 1) 的刻度值。<item type=\"literal\">Alpha</item> = 25% 表示第一个四分位数;<item type=\"literal\">Alpha</item> = 50% 为 MEDIAN。"
@@ -45419,7 +42676,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"hd_id2950531\n"
-"114\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -45428,7 +42684,6 @@ msgstr "语法"
msgctxt ""
"04060184.xhp\n"
"par_id2948813\n"
-"115\n"
"help.text"
msgid "PERCENTILE.INC(Data; Alpha)"
msgstr "PERCENTILE.INC(Data, Alpha)"
@@ -45437,17 +42692,14 @@ msgstr "PERCENTILE.INC(Data, Alpha)"
msgctxt ""
"04060184.xhp\n"
"par_id2953054\n"
-"116\n"
"help.text"
msgid "<emph>Data</emph> represents the array of data."
msgstr "<emph>Data</emph> 表示数据的数组。"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2954212\n"
-"117\n"
"help.text"
msgid "<emph>Alpha</emph> represents the percentage of the scale between 0 and 1."
msgstr "<emph>Alpha</emph> 表示 0 到 1 之间的刻度百分比。"
@@ -45456,17 +42708,14 @@ msgstr "<emph>Alpha</emph> 表示 0 到 1 之间的刻度百分比。"
msgctxt ""
"04060184.xhp\n"
"hd_id2954290\n"
-"118\n"
"help.text"
msgid "Example"
msgstr "示例"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2959147\n"
-"119\n"
"help.text"
msgid "<item type=\"input\">=PERCENTILE.INC(A1:A50;0.1)</item> represents the value in the data set, which equals 10% of the total data scale in A1:A50."
msgstr "<item type=\"input\">=PERCENTILE(A1:A50;0.1)</item> 表示数据集中的值,即等于 A1:A50 中的整个数据刻度的 10%。"
@@ -45483,7 +42732,6 @@ msgstr "<bookmark_value>PERCENTRANK 函数</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id3148807\n"
-"121\n"
"help.text"
msgid "PERCENTRANK"
msgstr "PERCENTRANK"
@@ -45492,7 +42740,6 @@ msgstr "PERCENTRANK"
msgctxt ""
"04060184.xhp\n"
"par_id3153573\n"
-"122\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_QUANTILSRANG\">Returns the percentage rank of a value in a sample.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_QUANTILSRANG\">返回一个数值在抽样中所占的百分比排位。</ahelp>"
@@ -45501,7 +42748,6 @@ msgstr "<ahelp hid=\"HID_FUNC_QUANTILSRANG\">返回一个数值在抽样中所
msgctxt ""
"04060184.xhp\n"
"hd_id3147512\n"
-"123\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -45510,16 +42756,14 @@ msgstr "语法"
msgctxt ""
"04060184.xhp\n"
"par_id3147238\n"
-"124\n"
"help.text"
-msgid "PERCENTRANK(Data; Value)"
-msgstr "PERCENTRANK(array; value)"
+msgid "PERCENTRANK(Data; Value; Significance)"
+msgstr ""
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
"par_id3154266\n"
-"125\n"
"help.text"
msgid "<emph>Data</emph> represents the array of data in the sample."
msgstr "<emph>array</emph> 表示抽样中的数据数组。"
@@ -45528,7 +42772,6 @@ msgstr "<emph>array</emph> 表示抽样中的数据数组。"
msgctxt ""
"04060184.xhp\n"
"par_id3148475\n"
-"126\n"
"help.text"
msgid "<emph>Value</emph> represents the value whose percentile rank must be determined."
msgstr "<emph>Value</emph> 是要确定其百分比排位的数值。"
@@ -45536,8 +42779,15 @@ msgstr "<emph>Value</emph> 是要确定其百分比排位的数值。"
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
+"par_id2748477\n"
+"help.text"
+msgid "<emph>Significance</emph> An optional argument that specifies the number of significant digits that the returned percentage value is rounded to. If omitted, a value of 3 is used."
+msgstr ""
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
"hd_id3155364\n"
-"127\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -45546,7 +42796,6 @@ msgstr "示例"
msgctxt ""
"04060184.xhp\n"
"par_id3149163\n"
-"128\n"
"help.text"
msgid "<item type=\"input\">=PERCENTRANK(A1:A50;50)</item> returns the percentage rank of the value 50 from the total range of all values found in A1:A50. If 50 falls outside the total range, an error message will appear."
msgstr "<item type=\"input\">=PERCENTRANK(A1:A50;50)</item> 返回数值 50 在 A1:A50 区域所有数值中的百分比排位。如果 50 不在该单元格区域内,则显示错误消息。"
@@ -45563,7 +42812,6 @@ msgstr "<bookmark_value>PERCENTRANK.EXC 函数</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id2848807\n"
-"121\n"
"help.text"
msgid "PERCENTRANK.EXC"
msgstr ""
@@ -45572,7 +42820,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"par_id2853573\n"
-"122\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_PERCENTRANK_EXC\"> Returns the relative position, between 0 and 1 (exclusive), of a specified value within a supplied array.</ahelp>"
msgstr ""
@@ -45589,7 +42836,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"hd_id2847512\n"
-"123\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -45598,7 +42844,6 @@ msgstr "语法"
msgctxt ""
"04060184.xhp\n"
"par_id2847238\n"
-"124\n"
"help.text"
msgid "PERCENTRANK.EXC(Data; Value; Significance)"
msgstr ""
@@ -45607,17 +42852,14 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"par_id2854266\n"
-"125\n"
"help.text"
msgid "<emph>Data</emph> represents the array of data in the sample."
msgstr "<emph>array</emph> 表示抽样中的数据数组。"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2848475\n"
-"126\n"
"help.text"
msgid "<emph>Value</emph> represents the value whose percentile rank must be determined."
msgstr "<emph>Value</emph> 是要确定其百分比排位的数值。"
@@ -45626,7 +42868,6 @@ msgstr "<emph>Value</emph> 是要确定其百分比排位的数值。"
msgctxt ""
"04060184.xhp\n"
"par_id2748475\n"
-"126\n"
"help.text"
msgid "<emph>Significance</emph> An optional argument that specifies the number of significant digits that the returned percentage value is rounded to."
msgstr ""
@@ -45635,17 +42876,14 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"hd_id2855364\n"
-"127\n"
"help.text"
msgid "Example"
msgstr "示例"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2849163\n"
-"128\n"
"help.text"
msgid "<item type=\"input\">=PERCENTRANK.EXC(A1:A50;50)</item> returns the percentage rank of the value 50 from the total range of all values found in A1:A50. If 50 falls outside the total range, an error message will appear."
msgstr "<item type=\"input\">=PERCENTRANK(A1:A50;50)</item> 返回数值 50 在 A1:A50 区域所有数值中的百分比排位。如果 50 不在该单元格区域内,则显示错误消息。"
@@ -45662,7 +42900,6 @@ msgstr "<bookmark_value>PERCENTRANK.INC 函数</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id2948807\n"
-"121\n"
"help.text"
msgid "PERCENTRANK.INC"
msgstr ""
@@ -45671,7 +42908,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"par_id2953573\n"
-"122\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_PERCENTRANK_INC\">Returns the relative position, between 0 and 1 (inclusive), of a specified value within a supplied array.</ahelp>"
msgstr ""
@@ -45688,7 +42924,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"hd_id2947512\n"
-"123\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -45697,7 +42932,6 @@ msgstr "语法"
msgctxt ""
"04060184.xhp\n"
"par_id2947238\n"
-"124\n"
"help.text"
msgid "PERCENTRANK.INC(Data; Value; Significance)"
msgstr ""
@@ -45706,17 +42940,14 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"par_id2954266\n"
-"125\n"
"help.text"
msgid "<emph>Data</emph> represents the array of data in the sample."
msgstr "<emph>array</emph> 表示抽样中的数据数组。"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2948475\n"
-"126\n"
"help.text"
msgid "<emph>Value</emph> represents the value whose percentile rank must be determined."
msgstr "<emph>Value</emph> 是要确定其百分比排位的数值。"
@@ -45725,7 +42956,6 @@ msgstr "<emph>Value</emph> 是要确定其百分比排位的数值。"
msgctxt ""
"04060184.xhp\n"
"par_id2648475\n"
-"126\n"
"help.text"
msgid "<emph>Significance</emph> An optional argument that specifies the number of significant digits that the returned percentage value is rounded to."
msgstr ""
@@ -45734,17 +42964,14 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"hd_id2955364\n"
-"127\n"
"help.text"
msgid "Example"
msgstr "示例"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2949163\n"
-"128\n"
"help.text"
msgid "<item type=\"input\">=PERCENTRANK.INC(A1:A50;50)</item> returns the percentage rank of the value 50 from the total range of all values found in A1:A50. If 50 falls outside the total range, an error message will appear."
msgstr "<item type=\"input\">=PERCENTRANK(A1:A50;50)</item> 返回数值 50 在 A1:A50 区域所有数值中的百分比排位。如果 50 不在该单元格区域内,则显示错误消息。"
@@ -45761,7 +42988,6 @@ msgstr "<bookmark_value>QUARTILE 函数</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id3166442\n"
-"130\n"
"help.text"
msgid "QUARTILE"
msgstr "QUARTILE"
@@ -45770,7 +42996,6 @@ msgstr "QUARTILE"
msgctxt ""
"04060184.xhp\n"
"par_id3146958\n"
-"131\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_QUARTILE\">Returns the quartile of a data set.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_QUARTILE\">返回数据集的分位数。</ahelp>"
@@ -45779,7 +43004,6 @@ msgstr "<ahelp hid=\"HID_FUNC_QUARTILE\">返回数据集的分位数。</ahelp>"
msgctxt ""
"04060184.xhp\n"
"hd_id3152942\n"
-"132\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -45788,7 +43012,6 @@ msgstr "语法"
msgctxt ""
"04060184.xhp\n"
"par_id3153684\n"
-"133\n"
"help.text"
msgid "QUARTILE(Data; Type)"
msgstr "QUARTILE(array; type)"
@@ -45797,7 +43020,6 @@ msgstr "QUARTILE(array; type)"
msgctxt ""
"04060184.xhp\n"
"par_id3153387\n"
-"134\n"
"help.text"
msgid "<emph>Data</emph> represents the array of data in the sample."
msgstr "<emph>array</emph> 表示抽样中的数据数组。"
@@ -45806,7 +43028,6 @@ msgstr "<emph>array</emph> 表示抽样中的数据数组。"
msgctxt ""
"04060184.xhp\n"
"par_id3155589\n"
-"135\n"
"help.text"
msgid "<emph>Type</emph> represents the type of quartile. (0 = MIN, 1 = 25%, 2 = 50% (MEDIAN), 3 = 75% and 4 = MAX.)"
msgstr "<emph>Type</emph> 是四分位的类型。(0 = 最小数值,1 = 25%,2 = 50%(中间值),3 = 75%,4 = 最大值。)"
@@ -45815,7 +43036,6 @@ msgstr "<emph>Type</emph> 是四分位的类型。(0 = 最小数值,1 = 25%
msgctxt ""
"04060184.xhp\n"
"hd_id3149103\n"
-"136\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -45824,7 +43044,6 @@ msgstr "示例"
msgctxt ""
"04060184.xhp\n"
"par_id3159276\n"
-"137\n"
"help.text"
msgid "<item type=\"input\">=QUARTILE(A1:A50;2)</item> returns the value of which 50% of the scale corresponds to the lowest to highest values in the range A1:A50."
msgstr "<item type=\"input\">=QUARTILE(A1:A50;2)</item> 返回 A1:A50 区域内从小到大排列的数据中刻度为 50% 处的数值。"
@@ -45841,7 +43060,6 @@ msgstr "<bookmark_value>QUARTILE.EXC 函数</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id2866442\n"
-"130\n"
"help.text"
msgid "QUARTILE.EXC"
msgstr ""
@@ -45850,7 +43068,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"par_id2846958\n"
-"131\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_QUARTILE_EXC\">Returns a requested quartile of a supplied range of values, based on a percentile range of 0 to 1 exclusive.</ahelp>"
msgstr ""
@@ -45867,7 +43084,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"hd_id2852942\n"
-"132\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -45876,7 +43092,6 @@ msgstr "语法"
msgctxt ""
"04060184.xhp\n"
"par_id2853684\n"
-"133\n"
"help.text"
msgid "QUARTILE.EXC(Data; Type)"
msgstr "QUARTILE.EXC(Data, Type)"
@@ -45885,7 +43100,6 @@ msgstr "QUARTILE.EXC(Data, Type)"
msgctxt ""
"04060184.xhp\n"
"par_id2853387\n"
-"134\n"
"help.text"
msgid "<emph>Data</emph> represents the range of data values for which you want to calculate the specified quartile."
msgstr ""
@@ -45894,7 +43108,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"par_id2855589\n"
-"135\n"
"help.text"
msgid "<emph>Type</emph> An integer between 1 and 3, representing the required quartile. (if type = 1 or 3, the supplied array must contain more than 2 values)"
msgstr ""
@@ -45903,17 +43116,14 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"hd_id2849103\n"
-"136\n"
"help.text"
msgid "Example"
msgstr "示例"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2859276\n"
-"137\n"
"help.text"
msgid "<item type=\"input\">=QUARTILE.EXC(A1:A50;2)</item> returns the value of which 50% of the scale corresponds to the lowest to highest values in the range A1:A50."
msgstr "<item type=\"input\">=QUARTILE(A1:A50;2)</item> 返回 A1:A50 区域内从小到大排列的数据中刻度为 50% 处的数值。"
@@ -45930,17 +43140,14 @@ msgstr "<bookmark_value>QUARTILE.INC 函数</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id2966442\n"
-"130\n"
"help.text"
msgid "QUARTILE.INC"
msgstr ""
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2946958\n"
-"131\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_QUARTILE_INC\">Returns the quartile of a data set.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_QUARTILE\">返回数据集的分位数。</ahelp>"
@@ -45957,7 +43164,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"hd_id2952942\n"
-"132\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -45966,7 +43172,6 @@ msgstr "语法"
msgctxt ""
"04060184.xhp\n"
"par_id2953684\n"
-"133\n"
"help.text"
msgid "QUARTILE.INC(Data; Type)"
msgstr "QUARTILE.INC(Data, Type)"
@@ -45975,17 +43180,14 @@ msgstr "QUARTILE.INC(Data, Type)"
msgctxt ""
"04060184.xhp\n"
"par_id2953387\n"
-"134\n"
"help.text"
msgid "<emph>Data</emph> represents the array of data in the sample."
msgstr "<emph>array</emph> 表示抽样中的数据数组。"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2955589\n"
-"135\n"
"help.text"
msgid "<emph>Type</emph> represents the type of quartile. (0 = MIN, 1 = 25%, 2 = 50% (MEDIAN), 3 = 75% and 4 = MAX.)"
msgstr "<emph>Type</emph> 是四分位的类型。(0 = 最小数值,1 = 25%,2 = 50%(中间值),3 = 75%,4 = 最大值。)"
@@ -45994,17 +43196,14 @@ msgstr "<emph>Type</emph> 是四分位的类型。(0 = 最小数值,1 = 25%
msgctxt ""
"04060184.xhp\n"
"hd_id2949103\n"
-"136\n"
"help.text"
msgid "Example"
msgstr "示例"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2959276\n"
-"137\n"
"help.text"
msgid "<item type=\"input\">=QUARTILE.INC(A1:A50;2)</item> returns the value of which 50% of the scale corresponds to the lowest to highest values in the range A1:A50."
msgstr "<item type=\"input\">=QUARTILE(A1:A50;2)</item> 返回 A1:A50 区域内从小到大排列的数据中刻度为 50% 处的数值。"
@@ -46021,7 +43220,6 @@ msgstr "统计函数第五部分"
msgctxt ""
"04060185.xhp\n"
"hd_id3147072\n"
-"1\n"
"help.text"
msgid "<variable id=\"rz\"><link href=\"text/scalc/01/04060185.xhp\" name=\"Statistical Functions Part Five\">Statistical Functions Part Five</link></variable>"
msgstr "<variable id=\"rz\"><link href=\"text/scalc/01/04060185.xhp\" name=\"统计函数第五部分\">统计函数第五部分</link></variable>"
@@ -46038,7 +43236,6 @@ msgstr "<bookmark_value>RANK 函数</bookmark_value><bookmark_value>数字; 确
msgctxt ""
"04060185.xhp\n"
"hd_id3155071\n"
-"2\n"
"help.text"
msgid "RANK"
msgstr "RANK"
@@ -46047,7 +43244,6 @@ msgstr "RANK"
msgctxt ""
"04060185.xhp\n"
"par_id3153976\n"
-"3\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_RANG\">Returns the rank of a number in a sample.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_RANG\">返回数字在抽样中的排位。</ahelp>"
@@ -46056,7 +43252,6 @@ msgstr "<ahelp hid=\"HID_FUNC_RANG\">返回数字在抽样中的排位。</ahelp
msgctxt ""
"04060185.xhp\n"
"hd_id3159206\n"
-"4\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -46065,7 +43260,6 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id3153250\n"
-"5\n"
"help.text"
msgid "RANK(Value; Data; Type)"
msgstr "RANK(Value; Data; Type)"
@@ -46074,7 +43268,6 @@ msgstr "RANK(Value; Data; Type)"
msgctxt ""
"04060185.xhp\n"
"par_id3154543\n"
-"6\n"
"help.text"
msgid "<emph>Value</emph> is the value, whose rank is to be determined."
msgstr "<emph>Value</emph> 是需要确定排位的数值。"
@@ -46083,7 +43276,6 @@ msgstr "<emph>Value</emph> 是需要确定排位的数值。"
msgctxt ""
"04060185.xhp\n"
"par_id3149130\n"
-"7\n"
"help.text"
msgid "<emph>Data</emph> is the array or range of data in the sample."
msgstr "<emph>Data</emph> 是数组或示例中的一组数据。"
@@ -46092,7 +43284,6 @@ msgstr "<emph>Data</emph> 是数组或示例中的一组数据。"
msgctxt ""
"04060185.xhp\n"
"par_id3150215\n"
-"8\n"
"help.text"
msgid "<emph>Type</emph> (optional) is the sequence order."
msgstr "<emph>Type</emph>(可选择的)是序列顺序。"
@@ -46117,7 +43308,6 @@ msgstr "Type = 1 表示升序排序,从该范围的第一项排列到最后一
msgctxt ""
"04060185.xhp\n"
"hd_id3143223\n"
-"9\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -46126,13 +43316,11 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id3155919\n"
-"10\n"
"help.text"
msgid "<item type=\"input\">=RANK(A10;A1:A50)</item> returns the ranking of the value in A10 in value range A1:A50. If <item type=\"literal\">Value</item> does not exist within the range an error message is displayed."
msgstr "<item type=\"input\">=RANK(A10;A1:A50)</item> 返回 A10 区域的数值在 A1:A50 数值区域的排位。如果 <item type=\"literal\">Value</item> 不在该区域中,则显示一条错误消息。"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id2955071\n"
@@ -46144,7 +43332,6 @@ msgstr "<bookmark_value>RANK 函数</bookmark_value><bookmark_value>数字; 确
msgctxt ""
"04060185.xhp\n"
"hd_id2955071\n"
-"2\n"
"help.text"
msgid "RANK.AVG"
msgstr ""
@@ -46153,7 +43340,6 @@ msgstr ""
msgctxt ""
"04060185.xhp\n"
"par_id2953976\n"
-"3\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_RANK_AVG\">Returns the statistical rank of a given value, within a supplied array of values.</ahelp> If there are duplicate values in the list, the average rank is returned."
msgstr ""
@@ -46170,7 +43356,6 @@ msgstr ""
msgctxt ""
"04060185.xhp\n"
"hd_id2959206\n"
-"4\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -46179,7 +43364,6 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id2953250\n"
-"5\n"
"help.text"
msgid "RANK.AVG(Value; Data; Type)"
msgstr "RANK.AVG(Value, Data, Type)"
@@ -46188,7 +43372,6 @@ msgstr "RANK.AVG(Value, Data, Type)"
msgctxt ""
"04060185.xhp\n"
"par_id2954543\n"
-"6\n"
"help.text"
msgid "<emph>Value</emph> is the value, whose rank is to be determined."
msgstr "<emph>Value</emph> 是需要确定排位的数值。"
@@ -46197,7 +43380,6 @@ msgstr "<emph>Value</emph> 是需要确定排位的数值。"
msgctxt ""
"04060185.xhp\n"
"par_id2949130\n"
-"7\n"
"help.text"
msgid "<emph>Data</emph> is the array or range of data in the sample."
msgstr "<emph>Data</emph> 是数组或示例中的一组数据。"
@@ -46206,7 +43388,6 @@ msgstr "<emph>Data</emph> 是数组或示例中的一组数据。"
msgctxt ""
"04060185.xhp\n"
"par_id2950215\n"
-"8\n"
"help.text"
msgid "<emph>Type</emph> (optional) is the sequence order."
msgstr "<emph>Type</emph>(可选择的)是序列顺序。"
@@ -46231,23 +43412,19 @@ msgstr "Type = 1 表示升序排序,从该范围的第一项排列到最后一
msgctxt ""
"04060185.xhp\n"
"hd_id2943223\n"
-"9\n"
"help.text"
msgid "Example"
msgstr "示例"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2955919\n"
-"10\n"
"help.text"
msgid "<item type=\"input\">=RANK.AVG(A10;A1:A50)</item> returns the ranking of the value in A10 in value range A1:A50. If <item type=\"literal\">Value</item> does not exist within the range an error message is displayed."
msgstr "<item type=\"input\">=RANK(A10;A1:A50)</item> 返回 A10 区域的数值在 A1:A50 数值区域的排位。如果 <item type=\"literal\">Value</item> 不在该区域中,则显示一条错误消息。"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id2855071\n"
@@ -46259,7 +43436,6 @@ msgstr "<bookmark_value>RANK 函数</bookmark_value><bookmark_value>数字; 确
msgctxt ""
"04060185.xhp\n"
"hd_id2855071\n"
-"2\n"
"help.text"
msgid "RANK.EQ"
msgstr ""
@@ -46268,7 +43444,6 @@ msgstr ""
msgctxt ""
"04060185.xhp\n"
"par_id2853976\n"
-"3\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_RANK_EQ\">Returns the statistical rank of a given value, within a supplied array of values.</ahelp> If there are duplicate values in the list, these are given the same rank."
msgstr ""
@@ -46285,7 +43460,6 @@ msgstr ""
msgctxt ""
"04060185.xhp\n"
"hd_id2859206\n"
-"4\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -46294,7 +43468,6 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id2853250\n"
-"5\n"
"help.text"
msgid "RANK.EQ(Value; Data; Type)"
msgstr "RANK.EQ(Value, Data, Type)"
@@ -46303,7 +43476,6 @@ msgstr "RANK.EQ(Value, Data, Type)"
msgctxt ""
"04060185.xhp\n"
"par_id2854543\n"
-"6\n"
"help.text"
msgid "<emph>Value</emph> is the value, whose rank is to be determined."
msgstr "<emph>Value</emph> 是需要确定排位的数值。"
@@ -46312,7 +43484,6 @@ msgstr "<emph>Value</emph> 是需要确定排位的数值。"
msgctxt ""
"04060185.xhp\n"
"par_id2849130\n"
-"7\n"
"help.text"
msgid "<emph>Data</emph> is the array or range of data in the sample."
msgstr "<emph>Data</emph> 是数组或示例中的一组数据。"
@@ -46321,7 +43492,6 @@ msgstr "<emph>Data</emph> 是数组或示例中的一组数据。"
msgctxt ""
"04060185.xhp\n"
"par_id2850215\n"
-"8\n"
"help.text"
msgid "<emph>Type</emph> (optional) is the sequence order."
msgstr "<emph>Type</emph>(可选择的)是序列顺序。"
@@ -46346,17 +43516,14 @@ msgstr "Type = 1 表示升序排序,从该范围的第一项排列到最后一
msgctxt ""
"04060185.xhp\n"
"hd_id2843223\n"
-"9\n"
"help.text"
msgid "Example"
msgstr "示例"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2855919\n"
-"10\n"
"help.text"
msgid "<item type=\"input\">=RANK.EQ(A10;A1:A50)</item> returns the ranking of the value in A10 in value range A1:A50. If <item type=\"literal\">Value</item> does not exist within the range an error message is displayed."
msgstr "<item type=\"input\">=RANK(A10;A1:A50)</item> 返回 A10 区域的数值在 A1:A50 数值区域的排位。如果 <item type=\"literal\">Value</item> 不在该区域中,则显示一条错误消息。"
@@ -46373,7 +43540,6 @@ msgstr "<bookmark_value>SKEW 函数</bookmark_value>"
msgctxt ""
"04060185.xhp\n"
"hd_id3153556\n"
-"12\n"
"help.text"
msgid "SKEW"
msgstr "SKEW"
@@ -46382,7 +43548,6 @@ msgstr "SKEW"
msgctxt ""
"04060185.xhp\n"
"par_id3153485\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_SCHIEFE\">Returns the skewness of a distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_SCHIEFE\">返回分布的不对称度。</ahelp>"
@@ -46391,7 +43556,6 @@ msgstr "<ahelp hid=\"HID_FUNC_SCHIEFE\">返回分布的不对称度。</ahelp>"
msgctxt ""
"04060185.xhp\n"
"hd_id3154733\n"
-"14\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -46400,7 +43564,6 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id3151191\n"
-"15\n"
"help.text"
msgid "SKEW(Number1; Number2; ...Number30)"
msgstr "SKEW(Number1; Number2; ...Number30)"
@@ -46409,7 +43572,6 @@ msgstr "SKEW(Number1; Number2; ...Number30)"
msgctxt ""
"04060185.xhp\n"
"par_id3155757\n"
-"16\n"
"help.text"
msgid "<emph>Number1, Number2...Number30</emph> are numerical values or ranges."
msgstr "<emph>Number1, Number2,...Number30</emph> 是数值或区域。"
@@ -46418,7 +43580,6 @@ msgstr "<emph>Number1, Number2,...Number30</emph> 是数值或区域。"
msgctxt ""
"04060185.xhp\n"
"hd_id3153297\n"
-"17\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -46427,7 +43588,6 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id3145118\n"
-"18\n"
"help.text"
msgid "<item type=\"input\">=SKEW(A1:A50)</item> calculates the value of skew for the data referenced."
msgstr "<item type=\"input\">=SKEW(A1:A50)</item> 计算引用数据的偏斜度。"
@@ -46444,7 +43604,6 @@ msgstr "<bookmark_value>回归线; FORECAST 函数</bookmark_value><bookmark_val
msgctxt ""
"04060185.xhp\n"
"hd_id3149051\n"
-"20\n"
"help.text"
msgid "FORECAST"
msgstr "FORECAST"
@@ -46453,7 +43612,6 @@ msgstr "FORECAST"
msgctxt ""
"04060185.xhp\n"
"par_id3153290\n"
-"21\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_SCHAETZER\">Extrapolates future values based on existing x and y values.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_SCHAETZER\">根据现有的 x 和 y 值推断未来值。</ahelp>"
@@ -46462,7 +43620,6 @@ msgstr "<ahelp hid=\"HID_FUNC_SCHAETZER\">根据现有的 x 和 y 值推断未
msgctxt ""
"04060185.xhp\n"
"hd_id3151343\n"
-"22\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -46471,7 +43628,6 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id3147404\n"
-"23\n"
"help.text"
msgid "FORECAST(Value; DataY; DataX)"
msgstr "FORECAST(Value; DataY; DataX)"
@@ -46480,7 +43636,6 @@ msgstr "FORECAST(Value; DataY; DataX)"
msgctxt ""
"04060185.xhp\n"
"par_id3148743\n"
-"24\n"
"help.text"
msgid "<emph>Value</emph> is the x value, for which the y value on the linear regression is to be returned."
msgstr "<emph>Value</emph> 为 X 值,Y 值就是在线性回归上对应于这点而计算得出。"
@@ -46489,7 +43644,6 @@ msgstr "<emph>Value</emph> 为 X 值,Y 值就是在线性回归上对应于这
msgctxt ""
"04060185.xhp\n"
"par_id3146325\n"
-"25\n"
"help.text"
msgid "<emph>DataY</emph> is the array or range of known y's."
msgstr "<emph>DataY</emph> 是已知的 y 的数组或区域。"
@@ -46498,7 +43652,6 @@ msgstr "<emph>DataY</emph> 是已知的 y 的数组或区域。"
msgctxt ""
"04060185.xhp\n"
"par_id3150536\n"
-"26\n"
"help.text"
msgid "<emph>DataX</emph> is the array or range of known x's."
msgstr "<emph>DataX</emph> 是已知的 x 的数组或区域。"
@@ -46507,7 +43660,6 @@ msgstr "<emph>DataX</emph> 是已知的 x 的数组或区域。"
msgctxt ""
"04060185.xhp\n"
"hd_id3147416\n"
-"27\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -46516,13 +43668,11 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id3157874\n"
-"28\n"
"help.text"
msgid "<item type=\"input\">=FORECAST(50;A1:A50;B1;B50)</item> returns the Y value expected for the X value of 50 if the X and Y values in both references are linked by a linear trend."
msgstr "<item type=\"input\">=FORECAST(50;A1:A50;B1;B50)</item> 返回两个引用中的 X 值和 Y 值以一个线性趋势相联系的情况下,给出对应于 X 值为 50 时的 Y 的期望值。"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id3149052\n"
@@ -46539,21 +43689,17 @@ msgid "FORECAST.LINEAR"
msgstr ""
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id3153291\n"
-"21\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_SCHAETZER\">Extrapolates future values based on existing x and y values.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_SCHAETZER\">根据现有的 x 和 y 值推断未来值。</ahelp>"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"hd_id3151344\n"
-"22\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -46567,51 +43713,41 @@ msgid "FORECAST.LINEAR(Value; DataY; DataX)"
msgstr ""
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id3148744\n"
-"24\n"
"help.text"
msgid "<emph>Value</emph> is the x value, for which the y value on the linear regression is to be returned."
msgstr "<emph>Value</emph> 为 X 值,Y 值就是在线性回归上对应于这点而计算得出。"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id3146326\n"
-"25\n"
"help.text"
msgid "<emph>DataY</emph> is the array or range of known y's."
msgstr "<emph>DataY</emph> 是已知的 y 的数组或区域。"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id3150537\n"
-"26\n"
"help.text"
msgid "<emph>DataX</emph> is the array or range of known x's."
msgstr "<emph>DataX</emph> 是已知的 x 的数组或区域。"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"hd_id3147417\n"
-"27\n"
"help.text"
msgid "Example"
msgstr "示例"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id3157875\n"
-"28\n"
"help.text"
msgid "<item type=\"input\">=FORECAST.LINEAR(50;A1:A50;B1;B50)</item> returns the Y value expected for the X value of 50 if the X and Y values in both references are linked by a linear trend."
msgstr "<item type=\"input\">=FORECAST(50;A1:A50;B1;B50)</item> 返回两个引用中的 X 值和 Y 值以一个线性趋势相联系的情况下,给出对应于 X 值为 50 时的 Y 的期望值。"
@@ -46628,7 +43764,6 @@ msgstr "<bookmark_value>STDEV 函数</bookmark_value><bookmark_value>统计中
msgctxt ""
"04060185.xhp\n"
"hd_id3149143\n"
-"30\n"
"help.text"
msgid "STDEV"
msgstr "STDEV"
@@ -46637,7 +43772,6 @@ msgstr "STDEV"
msgctxt ""
"04060185.xhp\n"
"par_id3146888\n"
-"31\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_STABW\">Estimates the standard deviation based on a sample.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_STABW\">根据抽样估算标准偏差。</ahelp>"
@@ -46646,7 +43780,6 @@ msgstr "<ahelp hid=\"HID_FUNC_STABW\">根据抽样估算标准偏差。</ahelp>"
msgctxt ""
"04060185.xhp\n"
"hd_id3146815\n"
-"32\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -46655,7 +43788,6 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id3149946\n"
-"33\n"
"help.text"
msgid "STDEV(Number1; Number2; ...Number30)"
msgstr "STDEV(Number1; Number2; ...Number30)"
@@ -46664,7 +43796,6 @@ msgstr "STDEV(Number1; Number2; ...Number30)"
msgctxt ""
"04060185.xhp\n"
"par_id3157904\n"
-"34\n"
"help.text"
msgid "<emph>Number1, Number2, ... Number30</emph> are numerical values or ranges representing a sample based on an entire population."
msgstr "<emph>Number1, Number2, ... Number30</emph> 是数值或区域,表示基于整个总体样本的一个抽样。"
@@ -46673,7 +43804,6 @@ msgstr "<emph>Number1, Number2, ... Number30</emph> 是数值或区域,表示
msgctxt ""
"04060185.xhp\n"
"hd_id3150650\n"
-"35\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -46682,7 +43812,6 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id3149434\n"
-"36\n"
"help.text"
msgid "<item type=\"input\">=STDEV(A1:A50)</item> returns the estimated standard deviation based on the data referenced."
msgstr "<item type=\"input\">=STDEVA(A1:A50)</item> 返回以引用数据为基础估算出的标准偏差。"
@@ -46699,7 +43828,6 @@ msgstr "<bookmark_value>STDEVA 函数</bookmark_value>"
msgctxt ""
"04060185.xhp\n"
"hd_id3144745\n"
-"186\n"
"help.text"
msgid "STDEVA"
msgstr "STDEVA"
@@ -46708,7 +43836,6 @@ msgstr "STDEVA"
msgctxt ""
"04060185.xhp\n"
"par_id3151234\n"
-"187\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_STABWA\">Calculates the standard deviation of an estimation based on a sample.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_STABWA\">根据抽样计算的估计值的标准偏差。</ahelp>"
@@ -46717,7 +43844,6 @@ msgstr "<ahelp hid=\"HID_FUNC_STABWA\">根据抽样计算的估计值的标准
msgctxt ""
"04060185.xhp\n"
"hd_id3148884\n"
-"188\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -46726,7 +43852,6 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id3147422\n"
-"189\n"
"help.text"
msgid "STDEVA(Value1;Value2;...Value30)"
msgstr "STDEVA(Value1;Value2;...Value30)"
@@ -46735,7 +43860,6 @@ msgstr "STDEVA(Value1;Value2;...Value30)"
msgctxt ""
"04060185.xhp\n"
"par_id3154547\n"
-"190\n"
"help.text"
msgid "<emph>Value1, Value2, ...Value30</emph> are values or ranges representing a sample derived from an entire population. Text has the value 0."
msgstr "<emph>Value1,value2,...value30</emph> 是数值或区域,表示从整个总体样本派生的一个抽样。文字的值为 0。"
@@ -46744,7 +43868,6 @@ msgstr "<emph>Value1,value2,...value30</emph> 是数值或区域,表示从整
msgctxt ""
"04060185.xhp\n"
"hd_id3155829\n"
-"191\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -46753,7 +43876,6 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id3148581\n"
-"192\n"
"help.text"
msgid "<item type=\"input\">=STDEVA(A1:A50)</item> returns the estimated standard deviation based on the data referenced."
msgstr "<item type=\"input\">=STDEVA(A1:A50)</item> 返回以引用数据为基础估算出的标准偏差。"
@@ -46770,7 +43892,6 @@ msgstr "<bookmark_value>STDEVP 函数</bookmark_value><bookmark_value>统计中
msgctxt ""
"04060185.xhp\n"
"hd_id3149734\n"
-"38\n"
"help.text"
msgid "STDEVP"
msgstr "STDEVP"
@@ -46779,7 +43900,6 @@ msgstr "STDEVP"
msgctxt ""
"04060185.xhp\n"
"par_id3149187\n"
-"39\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_STABWN\">Calculates the standard deviation based on the entire population.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_STABWN\">根据全部项目计算标准偏差。</ahelp>"
@@ -46788,7 +43908,6 @@ msgstr "<ahelp hid=\"HID_FUNC_STABWN\">根据全部项目计算标准偏差。</
msgctxt ""
"04060185.xhp\n"
"hd_id3154387\n"
-"40\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -46797,7 +43916,6 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id3154392\n"
-"41\n"
"help.text"
msgid "STDEVP(Number1;Number2;...Number30)"
msgstr "STDEVP(Number1;Number2;...Number30)"
@@ -46806,7 +43924,6 @@ msgstr "STDEVP(Number1;Number2;...Number30)"
msgctxt ""
"04060185.xhp\n"
"par_id3155261\n"
-"42\n"
"help.text"
msgid "<emph>Number 1,Number 2,...Number 30</emph> are numerical values or ranges representing an entire population."
msgstr "<emph>数字1,数字2,...数字30</emph> 为代表总体的数值或者单元格区域。"
@@ -46815,7 +43932,6 @@ msgstr "<emph>数字1,数字2,...数字30</emph> 为代表总体的数值或者
msgctxt ""
"04060185.xhp\n"
"hd_id3145591\n"
-"43\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -46824,13 +43940,11 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id3153933\n"
-"44\n"
"help.text"
msgid "<item type=\"input\">=STDEVP(A1:A50)</item> returns a standard deviation of the data referenced."
msgstr "<item type=\"input\">=STDEVP(A1:A50)</item> 返回引用数据的标准偏差。"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id2949734\n"
@@ -46842,17 +43956,14 @@ msgstr "<bookmark_value>STDEVP 函数</bookmark_value><bookmark_value>统计中
msgctxt ""
"04060185.xhp\n"
"hd_id2949734\n"
-"38\n"
"help.text"
msgid "STDEV.P"
msgstr "STDEV.P"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2949187\n"
-"39\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ST_DEV_P_MS\">Calculates the standard deviation based on the entire population.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_STABWN\">根据全部项目计算标准偏差。</ahelp>"
@@ -46861,7 +43972,6 @@ msgstr "<ahelp hid=\"HID_FUNC_STABWN\">根据全部项目计算标准偏差。</
msgctxt ""
"04060185.xhp\n"
"hd_id2954387\n"
-"40\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -46870,17 +43980,14 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id2954392\n"
-"41\n"
"help.text"
msgid "STDEV.P(Number1;Number2;...Number30)"
msgstr "STDEV.P(Number1,Number2,...Number30)"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2955261\n"
-"42\n"
"help.text"
msgid "<emph>Number 1,Number 2,...Number 30</emph> are numerical values or ranges representing an entire population."
msgstr "<emph>数字1,数字2,...数字30</emph> 为代表总体的数值或者单元格区域。"
@@ -46889,23 +43996,19 @@ msgstr "<emph>数字1,数字2,...数字30</emph> 为代表总体的数值或者
msgctxt ""
"04060185.xhp\n"
"hd_id2945591\n"
-"43\n"
"help.text"
msgid "Example"
msgstr "示例"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2953933\n"
-"44\n"
"help.text"
msgid "<item type=\"input\">=STDEV.P(A1:A50)</item> returns a standard deviation of the data referenced."
msgstr "<item type=\"input\">=STDEVP(A1:A50)</item> 返回引用数据的标准偏差。"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id2849734\n"
@@ -46917,17 +44020,14 @@ msgstr "<bookmark_value>STDEV 函数</bookmark_value><bookmark_value>统计中
msgctxt ""
"04060185.xhp\n"
"hd_id2849734\n"
-"38\n"
"help.text"
msgid "STDEV.S"
msgstr "STDEV.S"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2849187\n"
-"39\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ST_DEV_S\">Calculates the standard deviation based on sample of the population.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_STABWN\">根据全部项目计算标准偏差。</ahelp>"
@@ -46936,7 +44036,6 @@ msgstr "<ahelp hid=\"HID_FUNC_STABWN\">根据全部项目计算标准偏差。</
msgctxt ""
"04060185.xhp\n"
"hd_id2854387\n"
-"40\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -46945,17 +44044,14 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id2854392\n"
-"41\n"
"help.text"
msgid "STDEV.S(Number1;Number2;...Number30)"
msgstr "STDEV.S(Number1,Number2,...Number30)"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2855261\n"
-"42\n"
"help.text"
msgid "<emph>Number 1,Number 2,...Number 30</emph> are numerical values or ranges representing a sample of the population."
msgstr "<emph>数字1,数字2,...数字30</emph> 为代表总体的数值或者单元格区域。"
@@ -46964,17 +44060,14 @@ msgstr "<emph>数字1,数字2,...数字30</emph> 为代表总体的数值或者
msgctxt ""
"04060185.xhp\n"
"hd_id2845591\n"
-"43\n"
"help.text"
msgid "Example"
msgstr "示例"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2853933\n"
-"44\n"
"help.text"
msgid "<item type=\"input\">=STDEV.S(A1:A50)</item> returns a standard deviation of the data referenced."
msgstr "<item type=\"input\">=STDEVP(A1:A50)</item> 返回引用数据的标准偏差。"
@@ -46991,7 +44084,6 @@ msgstr "<bookmark_value>STDEVPA 函数</bookmark_value>"
msgctxt ""
"04060185.xhp\n"
"hd_id3154522\n"
-"194\n"
"help.text"
msgid "STDEVPA"
msgstr "STDEVPA"
@@ -47000,7 +44092,6 @@ msgstr "STDEVPA"
msgctxt ""
"04060185.xhp\n"
"par_id3149549\n"
-"195\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_STABWNA\">Calculates the standard deviation based on the entire population.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_STABWNA\">根据全部项目计算标准偏差。</ahelp>"
@@ -47009,7 +44100,6 @@ msgstr "<ahelp hid=\"HID_FUNC_STABWNA\">根据全部项目计算标准偏差。<
msgctxt ""
"04060185.xhp\n"
"hd_id3155950\n"
-"196\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -47018,7 +44108,6 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id3146851\n"
-"197\n"
"help.text"
msgid "STDEVPA(Value1;Value2;...Value30)"
msgstr "STDEVPA(Value1;Value2;...Value30)"
@@ -47027,7 +44116,6 @@ msgstr "STDEVPA(Value1;Value2;...Value30)"
msgctxt ""
"04060185.xhp\n"
"par_id3153109\n"
-"198\n"
"help.text"
msgid "<emph>Value1,value2,...value30</emph> are values or ranges representing an entire population. Text has the value 0."
msgstr "<emph>值1,值2,...值30</emph> 是代表总体的数值或者单元格区域。文本会被作为0值。"
@@ -47036,7 +44124,6 @@ msgstr "<emph>值1,值2,...值30</emph> 是代表总体的数值或者单元格
msgctxt ""
"04060185.xhp\n"
"hd_id3154506\n"
-"199\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -47045,7 +44132,6 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id3145163\n"
-"200\n"
"help.text"
msgid "<item type=\"input\">=STDEVPA(A1:A50)</item> returns the standard deviation of the data referenced."
msgstr "<item type=\"input\">=STDEVPA(A1:A50)</item> 返回引用数据的标准偏差。"
@@ -47062,7 +44148,6 @@ msgstr "<bookmark_value>STANDARDIZE 函数</bookmark_value><bookmark_value>转
msgctxt ""
"04060185.xhp\n"
"hd_id3155928\n"
-"46\n"
"help.text"
msgid "STANDARDIZE"
msgstr "STANDARDIZE"
@@ -47071,7 +44156,6 @@ msgstr "STANDARDIZE"
msgctxt ""
"04060185.xhp\n"
"par_id3149883\n"
-"47\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_STANDARDISIERUNG\">Converts a random variable to a normalized value.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_STANDARDISIERUNG\">将随机变量转换成标准值。</ahelp>"
@@ -47080,7 +44164,6 @@ msgstr "<ahelp hid=\"HID_FUNC_STANDARDISIERUNG\">将随机变量转换成标准
msgctxt ""
"04060185.xhp\n"
"hd_id3154330\n"
-"48\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -47089,7 +44172,6 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id3150132\n"
-"49\n"
"help.text"
msgid "STANDARDIZE(Number; Mean; StDev)"
msgstr "STANDARDIZE(Number; Mean; StDev)"
@@ -47098,7 +44180,6 @@ msgstr "STANDARDIZE(Number; Mean; StDev)"
msgctxt ""
"04060185.xhp\n"
"par_id3159139\n"
-"50\n"
"help.text"
msgid "<emph>Number</emph> is the value to be standardized."
msgstr "<emph>Number</emph> 为要标准化的数值。"
@@ -47107,7 +44188,6 @@ msgstr "<emph>Number</emph> 为要标准化的数值。"
msgctxt ""
"04060185.xhp\n"
"par_id3145241\n"
-"51\n"
"help.text"
msgid "<emph>Mean</emph> is the arithmetic mean of the distribution."
msgstr "<emph>Mean</emph> 为分布的算术平均值。"
@@ -47116,7 +44196,6 @@ msgstr "<emph>Mean</emph> 为分布的算术平均值。"
msgctxt ""
"04060185.xhp\n"
"par_id3148874\n"
-"52\n"
"help.text"
msgid "<emph>StDev</emph> is the standard deviation of the distribution."
msgstr "<emph>StDev</emph> 是正态分布的标准差。"
@@ -47125,7 +44204,6 @@ msgstr "<emph>StDev</emph> 是正态分布的标准差。"
msgctxt ""
"04060185.xhp\n"
"hd_id3145351\n"
-"53\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -47134,7 +44212,6 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id3156067\n"
-"54\n"
"help.text"
msgid "<item type=\"input\">=STANDARDIZE(11;10;1)</item> returns 1. The value 11 in a normal distribution with a mean of 10 and a standard deviation of 1 is as much above the mean of 10, as the value 1 is above the mean of the standard normal distribution."
msgstr "<item type=\"input\">=STANDARDIZE(11;10;1)</item> 返回 1。数值 11 在一个平均值为 10,标准偏差为 1 的正态分布中位于平均值 10 之上,正如数值 1 在标准正态分布中位于平均值 0 之上。"
@@ -47151,7 +44228,6 @@ msgstr "<bookmark_value>NORMSINV 函数</bookmark_value><bookmark_value>正态
msgctxt ""
"04060185.xhp\n"
"hd_id3157986\n"
-"56\n"
"help.text"
msgid "NORMSINV"
msgstr "NORMSINV"
@@ -47160,7 +44236,6 @@ msgstr "NORMSINV"
msgctxt ""
"04060185.xhp\n"
"par_id3151282\n"
-"57\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_STANDNORMINV\">Returns the inverse of the standard normal cumulative distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_STANDNORMINV\">返回正态累积分布函数的逆函数。</ahelp>"
@@ -47169,7 +44244,6 @@ msgstr "<ahelp hid=\"HID_FUNC_STANDNORMINV\">返回正态累积分布函数的
msgctxt ""
"04060185.xhp\n"
"hd_id3153261\n"
-"58\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -47178,7 +44252,6 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id3154195\n"
-"59\n"
"help.text"
msgid "NORMSINV(Number)"
msgstr "NORMSINV(Number)"
@@ -47187,7 +44260,6 @@ msgstr "NORMSINV(Number)"
msgctxt ""
"04060185.xhp\n"
"par_id3148772\n"
-"60\n"
"help.text"
msgid "<emph>Number</emph> is the probability to which the inverse standard normal distribution is calculated."
msgstr "<emph>Number</emph> 为概率值,据此计算逆标准正态分布。"
@@ -47196,7 +44268,6 @@ msgstr "<emph>Number</emph> 为概率值,据此计算逆标准正态分布。"
msgctxt ""
"04060185.xhp\n"
"hd_id3150934\n"
-"61\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -47205,13 +44276,11 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id3149030\n"
-"62\n"
"help.text"
msgid "<item type=\"input\">=NORMSINV(0.908789)</item> returns 1.3333."
msgstr "<item type=\"input\">=NORMSINV(0.908789)</item> 返回 1.3333。"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id2957986\n"
@@ -47223,17 +44292,14 @@ msgstr "<bookmark_value>NORMSINV 函数</bookmark_value><bookmark_value>正态
msgctxt ""
"04060185.xhp\n"
"hd_id2957986\n"
-"56\n"
"help.text"
msgid "NORM.S.INV"
msgstr "NORM.S.INV"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2951282\n"
-"57\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_STD_NORMINV_MS\">Returns the inverse of the standard normal cumulative distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_STANDNORMINV\">返回正态累积分布函数的逆函数。</ahelp>"
@@ -47242,7 +44308,6 @@ msgstr "<ahelp hid=\"HID_FUNC_STANDNORMINV\">返回正态累积分布函数的
msgctxt ""
"04060185.xhp\n"
"hd_id2953261\n"
-"58\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -47251,17 +44316,14 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id2954195\n"
-"59\n"
"help.text"
msgid "NORM.S.INV(Number)"
msgstr "NORM.S.INV(Number)"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2948772\n"
-"60\n"
"help.text"
msgid "<emph>Number</emph> is the probability to which the inverse standard normal distribution is calculated."
msgstr "<emph>Number</emph> 为概率值,据此计算逆标准正态分布。"
@@ -47270,7 +44332,6 @@ msgstr "<emph>Number</emph> 为概率值,据此计算逆标准正态分布。"
msgctxt ""
"04060185.xhp\n"
"hd_id2950934\n"
-"61\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -47279,7 +44340,6 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id2949030\n"
-"62\n"
"help.text"
msgid "<item type=\"input\">=NORM.S.INV(0.908789)</item> returns 1.333334673."
msgstr "<item type=\"input\">=NORM.S.INV(0.908789)</item> 返回 1.333334673."
@@ -47296,7 +44356,6 @@ msgstr "<bookmark_value>NORMSDIST 函数</bookmark_value><bookmark_value>正态
msgctxt ""
"04060185.xhp\n"
"hd_id3147538\n"
-"64\n"
"help.text"
msgid "NORMSDIST"
msgstr "NORMSDIST"
@@ -47305,7 +44364,6 @@ msgstr "NORMSDIST"
msgctxt ""
"04060185.xhp\n"
"par_id3150474\n"
-"65\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_STANDNORMVERT\">Returns the standard normal cumulative distribution function. The distribution has a mean of zero and a standard deviation of one.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_STANDNORMVERT\">返回标准正态累积分布函数。该分布函数的平均值为零,标准偏差为一。</ahelp>"
@@ -47322,7 +44380,6 @@ msgstr "为 GAUSS(x)=NORMSDIST(x)-0.5"
msgctxt ""
"04060185.xhp\n"
"hd_id3155083\n"
-"66\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -47331,7 +44388,6 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id3158411\n"
-"67\n"
"help.text"
msgid "NORMSDIST(Number)"
msgstr "NORMSDIST(number)"
@@ -47340,7 +44396,6 @@ msgstr "NORMSDIST(number)"
msgctxt ""
"04060185.xhp\n"
"par_id3154950\n"
-"68\n"
"help.text"
msgid "<emph>Number</emph> is the value to which the standard normal cumulative distribution is calculated."
msgstr "<emph>Number</emph> 是通过标准正态累积分布函数计算所得到的值。"
@@ -47349,7 +44404,6 @@ msgstr "<emph>Number</emph> 是通过标准正态累积分布函数计算所得
msgctxt ""
"04060185.xhp\n"
"hd_id3153228\n"
-"69\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -47358,13 +44412,11 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id3155984\n"
-"70\n"
"help.text"
msgid "<item type=\"input\">=NORMSDIST(1)</item> returns 0.84. The area below the standard normal distribution curve to the left of X value 1 is 84% of the total area."
msgstr "<item type=\"input\">=NORMSDIST(1)</item> 返回 0.84。在标准正态分布曲线以下,在 X 值 1 左边的面积占总面积的 84%。"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id2947538\n"
@@ -47376,17 +44428,14 @@ msgstr "<bookmark_value>NORMSDIST 函数</bookmark_value><bookmark_value>正态
msgctxt ""
"04060185.xhp\n"
"hd_id2947538\n"
-"64\n"
"help.text"
msgid "NORM.S.DIST"
msgstr "NORM.S.DIST"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2950474\n"
-"65\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_STD_NORMDIST_MS\">Returns the standard normal cumulative distribution function. The distribution has a mean of zero and a standard deviation of one.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_STANDNORMVERT\">返回标准正态累积分布函数。该分布函数的平均值为零,标准偏差为一。</ahelp>"
@@ -47395,7 +44444,6 @@ msgstr "<ahelp hid=\"HID_FUNC_STANDNORMVERT\">返回标准正态累积分布函
msgctxt ""
"04060185.xhp\n"
"hd_id2955083\n"
-"66\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -47404,27 +44452,22 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id2958411\n"
-"67\n"
"help.text"
msgid "NORM.S.DIST(Number; Cumulative)"
msgstr ""
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2954950\n"
-"68\n"
"help.text"
msgid "<emph>Number</emph> is the value to which the standard normal cumulative distribution is calculated."
msgstr "<emph>Number</emph> 是通过标准正态累积分布函数计算所得到的值。"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2954951\n"
-"68\n"
"help.text"
msgid "<emph>Cumulative</emph> 0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function."
msgstr "<emph>Cumulative</emph> (可选择的): 0 或 False 计算概率密度函数。其它值或 True 或缺省计算累积分布函数。"
@@ -47433,7 +44476,6 @@ msgstr "<emph>Cumulative</emph> (可选择的): 0 或 False 计算概率密
msgctxt ""
"04060185.xhp\n"
"hd_id2993228\n"
-"69\n"
"help.text"
msgid "Examples"
msgstr "示例"
@@ -47442,17 +44484,14 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id2955984\n"
-"70\n"
"help.text"
msgid "<item type=\"input\">=NORM.S.DIST(1;0)</item> returns 0.2419707245."
msgstr ""
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2955985\n"
-"70\n"
"help.text"
msgid "<item type=\"input\">=NORM.S.DIST(1;1)</item> returns 0.8413447461. The area below the standard normal distribution curve to the left of X value 1 is 84% of the total area."
msgstr "<item type=\"input\">=NORMSDIST(1)</item> 返回 0.84。在标准正态分布曲线以下,在 X 值 1 左边的面积占总面积的 84%。"
@@ -47469,7 +44508,6 @@ msgstr "<bookmark_value>SLOPE 函数</bookmark_value>"
msgctxt ""
"04060185.xhp\n"
"hd_id3152592\n"
-"72\n"
"help.text"
msgid "SLOPE"
msgstr "SLOPE"
@@ -47478,7 +44516,6 @@ msgstr "SLOPE"
msgctxt ""
"04060185.xhp\n"
"par_id3150386\n"
-"73\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_STEIGUNG\">Returns the slope of the linear regression line.</ahelp> The slope is adapted to the data points set in the y and x values."
msgstr "<ahelp hid=\"HID_FUNC_STEIGUNG\">返回线性回归线的斜率。</ahelp>斜率取决于由 y 值和 x 值所设置的数据点。"
@@ -47487,7 +44524,6 @@ msgstr "<ahelp hid=\"HID_FUNC_STEIGUNG\">返回线性回归线的斜率。</ahel
msgctxt ""
"04060185.xhp\n"
"hd_id3154315\n"
-"74\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -47496,7 +44532,6 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id3149819\n"
-"75\n"
"help.text"
msgid "SLOPE(DataY; DataX)"
msgstr "SLOPE(DataY; DataX)"
@@ -47505,7 +44540,6 @@ msgstr "SLOPE(DataY; DataX)"
msgctxt ""
"04060185.xhp\n"
"par_id3083446\n"
-"76\n"
"help.text"
msgid "<emph>DataY</emph> is the array or matrix of Y data."
msgstr "<emph>DataY</emph> 是 Y 数据的数组或矩阵。"
@@ -47514,7 +44548,6 @@ msgstr "<emph>DataY</emph> 是 Y 数据的数组或矩阵。"
msgctxt ""
"04060185.xhp\n"
"par_id3152375\n"
-"77\n"
"help.text"
msgid "<emph>DataX</emph> is the array or matrix of X data."
msgstr "<emph>DataX</emph> 是 X 数据的数组或矩阵。"
@@ -47523,7 +44556,6 @@ msgstr "<emph>DataX</emph> 是 X 数据的数组或矩阵。"
msgctxt ""
"04060185.xhp\n"
"hd_id3146061\n"
-"78\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -47532,7 +44564,6 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id3152480\n"
-"79\n"
"help.text"
msgid "<item type=\"input\">=SLOPE(A1:A50;B1:B50)</item>"
msgstr "<item type=\"input\">=SLOPE(A1:A50;B1:B50)</item>"
@@ -47549,7 +44580,6 @@ msgstr "<bookmark_value>STEYX 函数</bookmark_value><bookmark_value>标准误
msgctxt ""
"04060185.xhp\n"
"hd_id3155836\n"
-"81\n"
"help.text"
msgid "STEYX"
msgstr "STEYX"
@@ -47558,7 +44588,6 @@ msgstr "STEYX"
msgctxt ""
"04060185.xhp\n"
"par_id3149446\n"
-"82\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_STFEHLERYX\">Returns the standard error of the predicted y value for each x in the regression.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_STFEHLERYX\">返回回归中每个 x 的预测 y 值的标准错误。</ahelp>"
@@ -47567,7 +44596,6 @@ msgstr "<ahelp hid=\"HID_FUNC_STFEHLERYX\">返回回归中每个 x 的预测 y
msgctxt ""
"04060185.xhp\n"
"hd_id3147562\n"
-"83\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -47576,7 +44604,6 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id3151267\n"
-"84\n"
"help.text"
msgid "STEYX(DataY; DataX)"
msgstr "STEYX(DataY; DataX)"
@@ -47585,7 +44612,6 @@ msgstr "STEYX(DataY; DataX)"
msgctxt ""
"04060185.xhp\n"
"par_id3147313\n"
-"85\n"
"help.text"
msgid "<emph>DataY</emph> is the array or matrix of Y data."
msgstr "<emph>DataY</emph> 是 Y 数据的数组或矩阵。"
@@ -47594,7 +44620,6 @@ msgstr "<emph>DataY</emph> 是 Y 数据的数组或矩阵。"
msgctxt ""
"04060185.xhp\n"
"par_id3156097\n"
-"86\n"
"help.text"
msgid "<emph>DataX</emph> is the array or matrix of X data."
msgstr "<emph>DataX</emph> 是 X 数据的数组或矩阵。"
@@ -47603,7 +44628,6 @@ msgstr "<emph>DataX</emph> 是 X 数据的数组或矩阵。"
msgctxt ""
"04060185.xhp\n"
"hd_id3145204\n"
-"87\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -47612,7 +44636,6 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id3156131\n"
-"88\n"
"help.text"
msgid "<item type=\"input\">=STEYX(A1:A50;B1:B50)</item>"
msgstr "<item type=\"input\">=STEYX(A1:A50,B1:B50)</item>"
@@ -47629,7 +44652,6 @@ msgstr "<bookmark_value>DEVSQ 函数</bookmark_value><bookmark_value>总和; 偏
msgctxt ""
"04060185.xhp\n"
"hd_id3150873\n"
-"90\n"
"help.text"
msgid "DEVSQ"
msgstr "DEVSQ"
@@ -47638,7 +44660,6 @@ msgstr "DEVSQ"
msgctxt ""
"04060185.xhp\n"
"par_id3154748\n"
-"91\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_SUMQUADABW\">Returns the sum of squares of deviations based on a sample mean.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_SUMQUADABW\">返回基于抽样平均值的偏差的平方和。</ahelp>"
@@ -47647,7 +44668,6 @@ msgstr "<ahelp hid=\"HID_FUNC_SUMQUADABW\">返回基于抽样平均值的偏差
msgctxt ""
"04060185.xhp\n"
"hd_id3156121\n"
-"92\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -47656,7 +44676,6 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id3146790\n"
-"93\n"
"help.text"
msgid "DEVSQ(Number1; Number2; ...Number30)"
msgstr "DEVSQ(Number1; Number2; ...Number30)"
@@ -47665,7 +44684,6 @@ msgstr "DEVSQ(Number1; Number2; ...Number30)"
msgctxt ""
"04060185.xhp\n"
"par_id3155995\n"
-"94\n"
"help.text"
msgid "<emph>Number1, Number2, ...Number30</emph> numerical values or ranges representing a sample."
msgstr "<emph>Number1, Number2, ...Number30</emph> 表示一次抽样的数值或区域。"
@@ -47674,7 +44692,6 @@ msgstr "<emph>Number1, Number2, ...Number30</emph> 表示一次抽样的数值
msgctxt ""
"04060185.xhp\n"
"hd_id3150254\n"
-"95\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -47683,7 +44700,6 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id3149136\n"
-"96\n"
"help.text"
msgid "<item type=\"input\">=DEVSQ(A1:A50)</item>"
msgstr "<item type=\"input\">=DEVSQ(A1:A50)</item>"
@@ -47700,7 +44716,6 @@ msgstr "<bookmark_value>TINV 函数</bookmark_value><bookmark_value>t 分布函
msgctxt ""
"04060185.xhp\n"
"hd_id3149579\n"
-"98\n"
"help.text"
msgid "TINV"
msgstr "TINV"
@@ -47709,7 +44724,6 @@ msgstr "TINV"
msgctxt ""
"04060185.xhp\n"
"par_id3143232\n"
-"99\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TINV\">Returns the inverse of the t-distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_TINV\">返回 t 分布函数的逆函数。</ahelp>"
@@ -47718,7 +44732,6 @@ msgstr "<ahelp hid=\"HID_FUNC_TINV\">返回 t 分布函数的逆函数。</ahelp
msgctxt ""
"04060185.xhp\n"
"hd_id3155101\n"
-"100\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -47727,7 +44740,6 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id3149289\n"
-"101\n"
"help.text"
msgid "TINV(Number; DegreesFreedom)"
msgstr "TINV(Number; DegreesFreedom)"
@@ -47736,7 +44748,6 @@ msgstr "TINV(Number; DegreesFreedom)"
msgctxt ""
"04060185.xhp\n"
"par_id3154070\n"
-"102\n"
"help.text"
msgid "<emph>Number</emph> is the probability associated with the two-tailed t-distribution."
msgstr "<emph>Number</emph> 为概率值,据此计算逆 t 分布。"
@@ -47745,7 +44756,6 @@ msgstr "<emph>Number</emph> 为概率值,据此计算逆 t 分布。"
msgctxt ""
"04060185.xhp\n"
"par_id3155315\n"
-"103\n"
"help.text"
msgid "<emph>DegreesFreedom</emph> is the number of degrees of freedom for the t-distribution."
msgstr "<emph>DegreesFreedom</emph> 为 t 分布的自由度。"
@@ -47754,7 +44764,6 @@ msgstr "<emph>DegreesFreedom</emph> 为 t 分布的自由度。"
msgctxt ""
"04060185.xhp\n"
"hd_id3153885\n"
-"104\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -47763,13 +44772,11 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id3156010\n"
-"105\n"
"help.text"
msgid "<item type=\"input\">=TINV(0.1;6)</item> returns 1.94"
msgstr "<item type=\"input\">=TINV(0.1;6)</item> 返回 1.94"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id2949579\n"
@@ -47781,17 +44788,14 @@ msgstr "<bookmark_value>TINV 函数</bookmark_value><bookmark_value>t 分布函
msgctxt ""
"04060185.xhp\n"
"hd_id2949579\n"
-"98\n"
"help.text"
msgid "T.INV"
msgstr "T.INV"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2943232\n"
-"99\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TINV_MS\">Returns the one tailed inverse of the t-distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_TINV\">返回 t 分布函数的逆函数。</ahelp>"
@@ -47800,7 +44804,6 @@ msgstr "<ahelp hid=\"HID_FUNC_TINV\">返回 t 分布函数的逆函数。</ahelp
msgctxt ""
"04060185.xhp\n"
"hd_id2955101\n"
-"100\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -47809,27 +44812,22 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id2949289\n"
-"101\n"
"help.text"
msgid "T.INV(Number; DegreesFreedom)"
msgstr "T.INV(Number, DegreesFreedom)"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2954070\n"
-"102\n"
"help.text"
msgid "<emph>Number</emph> is the probability associated with the one-tailed t-distribution."
msgstr "<emph>Number</emph> 为概率值,据此计算逆 t 分布。"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2955315\n"
-"103\n"
"help.text"
msgid "<emph>DegreesFreedom</emph> is the number of degrees of freedom for the t-distribution."
msgstr "<emph>DegreesFreedom</emph> 为 t 分布的自由度。"
@@ -47838,7 +44836,6 @@ msgstr "<emph>DegreesFreedom</emph> 为 t 分布的自由度。"
msgctxt ""
"04060185.xhp\n"
"hd_id2953885\n"
-"104\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -47847,13 +44844,11 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id2956010\n"
-"105\n"
"help.text"
msgid "<item type=\"input\">=T.INV(0.1;6)</item> returns -1.4397557473."
msgstr "<item type=\"input\">=T.INV(0.1,6)</item> 返回 -1.4397557473."
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id2849579\n"
@@ -47865,7 +44860,6 @@ msgstr "<bookmark_value>TINV 函数</bookmark_value><bookmark_value>t 分布函
msgctxt ""
"04060185.xhp\n"
"hd_id2849579\n"
-"98\n"
"help.text"
msgid "T.INV.2T"
msgstr ""
@@ -47874,7 +44868,6 @@ msgstr ""
msgctxt ""
"04060185.xhp\n"
"par_id2843232\n"
-"99\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TINV_2T\">Calculates the inverse of the two-tailed Student's T Distribution </ahelp>, which is a continuous probability distribution that is frequently used for testing hypotheses on small sample data sets."
msgstr ""
@@ -47883,7 +44876,6 @@ msgstr ""
msgctxt ""
"04060185.xhp\n"
"hd_id2855101\n"
-"100\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -47892,27 +44884,22 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id2849289\n"
-"101\n"
"help.text"
msgid "T.INV.2T(Number; DegreesFreedom)"
msgstr "T.INV.2T(Number, DegreesFreedom)"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2854070\n"
-"102\n"
"help.text"
msgid "<emph>Number</emph> is the probability associated with the two-tailed t-distribution."
msgstr "<emph>Number</emph> 为概率值,据此计算逆 t 分布。"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2855315\n"
-"103\n"
"help.text"
msgid "<emph>DegreesFreedom</emph> is the number of degrees of freedom for the t-distribution."
msgstr "<emph>DegreesFreedom</emph> 为 t 分布的自由度。"
@@ -47921,7 +44908,6 @@ msgstr "<emph>DegreesFreedom</emph> 为 t 分布的自由度。"
msgctxt ""
"04060185.xhp\n"
"hd_id2853885\n"
-"104\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -47930,7 +44916,6 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id2856010\n"
-"105\n"
"help.text"
msgid "<item type=\"input\">=T.INV.2T(0.25; 10)</item> returns 1.221255395."
msgstr ""
@@ -47947,7 +44932,6 @@ msgstr "<bookmark_value>TTEST 函数</bookmark_value>"
msgctxt ""
"04060185.xhp\n"
"hd_id3154129\n"
-"107\n"
"help.text"
msgid "TTEST"
msgstr "TTEST"
@@ -47956,7 +44940,6 @@ msgstr "TTEST"
msgctxt ""
"04060185.xhp\n"
"par_id3159184\n"
-"108\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TTEST\">Returns the probability associated with a Student's t-Test.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_TTEST\">返回与 Student 的 t 测试相关的概率。</ahelp>"
@@ -47965,7 +44948,6 @@ msgstr "<ahelp hid=\"HID_FUNC_TTEST\">返回与 Student 的 t 测试相关的概
msgctxt ""
"04060185.xhp\n"
"hd_id3147257\n"
-"109\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -47974,7 +44956,6 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id3151175\n"
-"110\n"
"help.text"
msgid "TTEST(Data1; Data2; Mode; Type)"
msgstr "TTEST(Data1; Data2; Mode; Type)"
@@ -47983,7 +44964,6 @@ msgstr "TTEST(Data1; Data2; Mode; Type)"
msgctxt ""
"04060185.xhp\n"
"par_id3149202\n"
-"111\n"
"help.text"
msgid "<emph>Data1</emph> is the dependent array or range of data for the first record."
msgstr "<emph>Data1</emph> 是第一条记录的相关数组或一组数据。"
@@ -47992,7 +44972,6 @@ msgstr "<emph>Data1</emph> 是第一条记录的相关数组或一组数据。"
msgctxt ""
"04060185.xhp\n"
"par_id3145666\n"
-"112\n"
"help.text"
msgid "<emph>Data2</emph> is the dependent array or range of data for the second record."
msgstr "<emph>Data2</emph> 是第二条记录的相关数组或一组数据。"
@@ -48001,7 +44980,6 @@ msgstr "<emph>Data2</emph> 是第二条记录的相关数组或一组数据。"
msgctxt ""
"04060185.xhp\n"
"par_id3153903\n"
-"113\n"
"help.text"
msgid "<emph>Mode</emph> = 1 calculates the one-tailed test, <emph>Mode</emph> = 2 the two- tailed test."
msgstr "<emph>mode</emph> = 1 计算单尾测试,<emph>mode</emph> = 2 双尾测试。"
@@ -48010,7 +44988,6 @@ msgstr "<emph>mode</emph> = 1 计算单尾测试,<emph>mode</emph> = 2 双尾
msgctxt ""
"04060185.xhp\n"
"par_id3155327\n"
-"114\n"
"help.text"
msgid "<emph>Type</emph> is the kind of t-test to perform. Type 1 means paired. Type 2 means two samples, equal variance (homoscedastic). Type 3 means two samples, unequal variance (heteroscedastic)."
msgstr "<emph>Type</emph> 代表待执行的 t-检验的类型。Type 1 表示成对检验。Type 2 表示两个样本具有方差一致性(方差相等)。Type 3 表示两个样本不具有方差一致性(方差不等)。"
@@ -48019,7 +44996,6 @@ msgstr "<emph>Type</emph> 代表待执行的 t-检验的类型。Type 1 表示
msgctxt ""
"04060185.xhp\n"
"hd_id3159342\n"
-"115\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -48028,7 +45004,6 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id3150119\n"
-"116\n"
"help.text"
msgid "<item type=\"input\">=TTEST(A1:A50;B1:B50;2;2)</item>"
msgstr "<item type=\"input\">=TTEST(A1:A50;B1:B50;2;2)</item>"
@@ -48045,17 +45020,14 @@ msgstr "<bookmark_value>T.TEST 函数</bookmark_value>"
msgctxt ""
"04060185.xhp\n"
"hd_id2954129\n"
-"107\n"
"help.text"
msgid "T.TEST"
msgstr "T.TEST"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2959184\n"
-"108\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TTEST_MS\">Returns the probability associated with a Student's t-Test.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_TTEST\">返回与 Student 的 t 测试相关的概率。</ahelp>"
@@ -48064,7 +45036,6 @@ msgstr "<ahelp hid=\"HID_FUNC_TTEST\">返回与 Student 的 t 测试相关的概
msgctxt ""
"04060185.xhp\n"
"hd_id2947257\n"
-"109\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -48073,47 +45044,38 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id2951175\n"
-"110\n"
"help.text"
msgid "T.TEST(Data1; Data2; Mode; Type)"
msgstr "T.TEST(Data1, Data2, Mode, Type)"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2949202\n"
-"111\n"
"help.text"
msgid "<emph>Data1</emph> is the dependent array or range of data for the first record."
msgstr "<emph>Data1</emph> 是第一条记录的相关数组或一组数据。"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2945666\n"
-"112\n"
"help.text"
msgid "<emph>Data2</emph> is the dependent array or range of data for the second record."
msgstr "<emph>Data2</emph> 是第二条记录的相关数组或一组数据。"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2953903\n"
-"113\n"
"help.text"
msgid "<emph>Mode</emph> = 1 calculates the one-tailed test, <emph>Mode</emph> = 2 the two- tailed test."
msgstr "<emph>mode</emph> = 1 计算单尾测试,<emph>mode</emph> = 2 双尾测试。"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2955327\n"
-"114\n"
"help.text"
msgid "<emph>Type</emph> is the kind of t-test to perform. Type 1 means paired. Type 2 means two samples, equal variance (homoscedastic). Type 3 means two samples, unequal variance (heteroscedastic)."
msgstr "<emph>Type</emph> 代表待执行的 t-检验的类型。Type 1 表示成对检验。Type 2 表示两个样本具有方差一致性(方差相等)。Type 3 表示两个样本不具有方差一致性(方差不等)。"
@@ -48122,7 +45084,6 @@ msgstr "<emph>Type</emph> 代表待执行的 t-检验的类型。Type 1 表示
msgctxt ""
"04060185.xhp\n"
"hd_id2959342\n"
-"115\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -48131,7 +45092,6 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id2950119\n"
-"116\n"
"help.text"
msgid "<item type=\"input\">=T.TEST(A1:A50;B1:B50;2;2)</item>"
msgstr "<item type=\"input\">=T.TEST(A1:A50,B1:B50,2,2)</item>"
@@ -48148,7 +45108,6 @@ msgstr "<bookmark_value>TDIST 函数</bookmark_value><bookmark_value>t 分布</b
msgctxt ""
"04060185.xhp\n"
"hd_id3154930\n"
-"118\n"
"help.text"
msgid "TDIST"
msgstr "TDIST"
@@ -48157,7 +45116,6 @@ msgstr "TDIST"
msgctxt ""
"04060185.xhp\n"
"par_id3153372\n"
-"119\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TVERT\">Returns the t-distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_TVERT\">返回 t 分布。</ahelp>"
@@ -48166,7 +45124,6 @@ msgstr "<ahelp hid=\"HID_FUNC_TVERT\">返回 t 分布。</ahelp>"
msgctxt ""
"04060185.xhp\n"
"hd_id3149911\n"
-"120\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -48175,7 +45132,6 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id3150521\n"
-"121\n"
"help.text"
msgid "TDIST(Number; DegreesFreedom; Mode)"
msgstr "TDIST(Number; DegreesFreedom; Mode)"
@@ -48184,7 +45140,6 @@ msgstr "TDIST(Number; DegreesFreedom; Mode)"
msgctxt ""
"04060185.xhp\n"
"par_id3146991\n"
-"122\n"
"help.text"
msgid "<emph>Number</emph> is the value for which the t-distribution is calculated."
msgstr "<emph>Number</emph> 为据此计算 t-分布的值。"
@@ -48193,7 +45148,6 @@ msgstr "<emph>Number</emph> 为据此计算 t-分布的值。"
msgctxt ""
"04060185.xhp\n"
"par_id3148824\n"
-"123\n"
"help.text"
msgid "<emph>DegreesFreedom</emph> is the number of degrees of freedom for the t-distribution."
msgstr "<emph>DegreesFreedom</emph> 为 t 分布的自由度。"
@@ -48202,7 +45156,6 @@ msgstr "<emph>DegreesFreedom</emph> 为 t 分布的自由度。"
msgctxt ""
"04060185.xhp\n"
"par_id3149340\n"
-"124\n"
"help.text"
msgid "<emph>Mode</emph> = 1 returns the one-tailed test, <emph>Mode</emph> = 2 returns the two-tailed test."
msgstr "<emph>Mode</emph> = 1 返回单尾测试,<emph>Mode</emph> = 2 返回双尾测试。"
@@ -48211,7 +45164,6 @@ msgstr "<emph>Mode</emph> = 1 返回单尾测试,<emph>Mode</emph> = 2 返回
msgctxt ""
"04060185.xhp\n"
"hd_id3159150\n"
-"125\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -48220,13 +45172,11 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id3149773\n"
-"126\n"
"help.text"
msgid "<item type=\"input\">=TDIST(12;5;1)</item>"
msgstr "<item type=\"input\">=TDIST(12;5;1)</item>"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id2954930\n"
@@ -48238,7 +45188,6 @@ msgstr "<bookmark_value>TDIST 函数</bookmark_value><bookmark_value>t 分布</b
msgctxt ""
"04060185.xhp\n"
"hd_id2954930\n"
-"118\n"
"help.text"
msgid "T.DIST"
msgstr "T.DIST"
@@ -48247,7 +45196,6 @@ msgstr "T.DIST"
msgctxt ""
"04060185.xhp\n"
"par_id2953372\n"
-"119\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TDIST_MS\">Returns the t-distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_TDIST_MS\">返回 t-分布</ahelp>"
@@ -48256,7 +45204,6 @@ msgstr "<ahelp hid=\"HID_FUNC_TDIST_MS\">返回 t-分布</ahelp>"
msgctxt ""
"04060185.xhp\n"
"hd_id2949911\n"
-"120\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -48265,37 +45212,30 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id2950521\n"
-"121\n"
"help.text"
msgid "T.DIST(Number; DegreesFreedom; Cumulative)"
msgstr "T.DIST(Number, DegreesFreedom, Cumulative)"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2946991\n"
-"122\n"
"help.text"
msgid "<emph>Number</emph> is the value for which the t-distribution is calculated."
msgstr "<emph>Number</emph> 为据此计算 t-分布的值。"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2948824\n"
-"123\n"
"help.text"
msgid "<emph>DegreesFreedom</emph> is the number of degrees of freedom for the t-distribution."
msgstr "<emph>DegreesFreedom</emph> 为 t 分布的自由度。"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2949340\n"
-"124\n"
"help.text"
msgid "<emph>Cumulative</emph> = 0 or FALSE returns the probability density function, 1 or TRUE returns the cumulative distribution function."
msgstr "<emph>Cumulative</emph> (可选择的): 0 或 False 计算概率密度函数。其它值或 True 或缺省计算累积分布函数。"
@@ -48304,7 +45244,6 @@ msgstr "<emph>Cumulative</emph> (可选择的): 0 或 False 计算概率密
msgctxt ""
"04060185.xhp\n"
"hd_id2959150\n"
-"125\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -48313,13 +45252,11 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id2949773\n"
-"126\n"
"help.text"
msgid "<item type=\"input\">=T.DIST(1; 10; TRUE)</item> returns 0.8295534338"
msgstr ""
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id2854930\n"
@@ -48331,7 +45268,6 @@ msgstr "<bookmark_value>TDIST 函数</bookmark_value><bookmark_value>t 分布</b
msgctxt ""
"04060185.xhp\n"
"hd_id2854930\n"
-"118\n"
"help.text"
msgid "T.DIST.2T"
msgstr ""
@@ -48340,7 +45276,6 @@ msgstr ""
msgctxt ""
"04060185.xhp\n"
"par_id2853372\n"
-"119\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TDIST_2T\">Calculates the two-tailed Student's T Distribution, which is a continuous probability distribution that is frequently used for testing hypotheses on small sample data sets.</ahelp>"
msgstr ""
@@ -48349,7 +45284,6 @@ msgstr ""
msgctxt ""
"04060185.xhp\n"
"hd_id2849911\n"
-"120\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -48358,27 +45292,22 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id2850521\n"
-"121\n"
"help.text"
msgid "T.DIST.2T(Number; DegreesFreedom)"
msgstr "T.DIST.2T(Number, DegreesFreedom)"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2846991\n"
-"122\n"
"help.text"
msgid "<emph>Number</emph> is the value for which the t-distribution is calculated."
msgstr "<emph>Number</emph> 为据此计算 t-分布的值。"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2848824\n"
-"123\n"
"help.text"
msgid "<emph>DegreesFreedom</emph> is the number of degrees of freedom for the t-distribution."
msgstr "<emph>DegreesFreedom</emph> 为 t 分布的自由度。"
@@ -48387,7 +45316,6 @@ msgstr "<emph>DegreesFreedom</emph> 为 t 分布的自由度。"
msgctxt ""
"04060185.xhp\n"
"hd_id2859150\n"
-"125\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -48396,13 +45324,11 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id2849773\n"
-"126\n"
"help.text"
msgid "<item type=\"input\">=T.DIST.2T(1; 10)</item> returns 0.3408931323."
msgstr ""
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id274930\n"
@@ -48414,7 +45340,6 @@ msgstr "<bookmark_value>TDIST 函数</bookmark_value><bookmark_value>t 分布</b
msgctxt ""
"04060185.xhp\n"
"hd_id274930\n"
-"118\n"
"help.text"
msgid "T.DIST.RT"
msgstr ""
@@ -48423,7 +45348,6 @@ msgstr ""
msgctxt ""
"04060185.xhp\n"
"par_id2753372\n"
-"119\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TDIST_RT\">Calculates the right-tailed Student's T Distribution, which is a continuous probability distribution that is frequently used for testing hypotheses on small sample data sets.</ahelp>"
msgstr ""
@@ -48432,7 +45356,6 @@ msgstr ""
msgctxt ""
"04060185.xhp\n"
"hd_id2749911\n"
-"120\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -48441,27 +45364,22 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id2750521\n"
-"121\n"
"help.text"
msgid "T.DIST.RT(Number; DegreesFreedom)"
msgstr "T.DIST.RT(Number, DegreesFreedom)"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2746991\n"
-"122\n"
"help.text"
msgid "<emph>Number</emph> is the value for which the t-distribution is calculated."
msgstr "<emph>Number</emph> 为据此计算 t-分布的值。"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2748824\n"
-"123\n"
"help.text"
msgid "<emph>DegreesFreedom</emph> is the number of degrees of freedom for the t-distribution."
msgstr "<emph>DegreesFreedom</emph> 为 t 分布的自由度。"
@@ -48470,7 +45388,6 @@ msgstr "<emph>DegreesFreedom</emph> 为 t 分布的自由度。"
msgctxt ""
"04060185.xhp\n"
"hd_id2759150\n"
-"125\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -48479,7 +45396,6 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id2749773\n"
-"126\n"
"help.text"
msgid "<item type=\"input\">=T.DIST.RT(1; 10)</item> returns 0.1704465662."
msgstr ""
@@ -48496,7 +45412,6 @@ msgstr "<bookmark_value>VAR 函数</bookmark_value><bookmark_value>方差</bookm
msgctxt ""
"04060185.xhp\n"
"hd_id3153828\n"
-"128\n"
"help.text"
msgid "VAR"
msgstr "VAR"
@@ -48505,7 +45420,6 @@ msgstr "VAR"
msgctxt ""
"04060185.xhp\n"
"par_id3159165\n"
-"129\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VARIANZ\">Estimates the variance based on a sample.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_VARIANZ\"> 根据抽样估算方差。</ahelp>"
@@ -48514,7 +45428,6 @@ msgstr "<ahelp hid=\"HID_FUNC_VARIANZ\"> 根据抽样估算方差。</ahelp>"
msgctxt ""
"04060185.xhp\n"
"hd_id3154286\n"
-"130\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -48523,7 +45436,6 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id3153054\n"
-"131\n"
"help.text"
msgid "VAR(Number1; Number2; ...Number30)"
msgstr "VAR(Number1; Number2; ...Number30)"
@@ -48532,7 +45444,6 @@ msgstr "VAR(Number1; Number2; ...Number30)"
msgctxt ""
"04060185.xhp\n"
"par_id3148938\n"
-"132\n"
"help.text"
msgid "<emph>Number1, Number2, ...Number30</emph> are numerical values or ranges representing a sample based on an entire population."
msgstr "<emph>Number1, Number2, ...Number30</emph> 是数值或区域,表示基于整个总体样本的一个抽样。"
@@ -48541,7 +45452,6 @@ msgstr "<emph>Number1, Number2, ...Number30</emph> 是数值或区域,表示
msgctxt ""
"04060185.xhp\n"
"hd_id3147233\n"
-"133\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -48550,13 +45460,11 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id3153575\n"
-"134\n"
"help.text"
msgid "<item type=\"input\">=VAR(A1:A50)</item>"
msgstr "<item type=\"input\">=VAR(A1:A50)</item>"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id2953828\n"
@@ -48568,17 +45476,14 @@ msgstr "<bookmark_value>VAR 函数</bookmark_value><bookmark_value>方差</bookm
msgctxt ""
"04060185.xhp\n"
"hd_id2953828\n"
-"128\n"
"help.text"
msgid "VAR.S"
msgstr "VAR.S"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2959165\n"
-"129\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VAR_S\">Estimates the variance based on a sample.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_VARIANZ\"> 根据抽样估算方差。</ahelp>"
@@ -48587,7 +45492,6 @@ msgstr "<ahelp hid=\"HID_FUNC_VARIANZ\"> 根据抽样估算方差。</ahelp>"
msgctxt ""
"04060185.xhp\n"
"hd_id2954286\n"
-"130\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -48596,17 +45500,14 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id2953054\n"
-"131\n"
"help.text"
msgid "VAR.S(Number1; Number2; ...Number30)"
msgstr "VAR.S(Number1, Number2, ...Number30)"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2948938\n"
-"132\n"
"help.text"
msgid "<emph>Number1, Number2, ...Number30</emph> are numerical values or ranges representing a sample based on an entire population."
msgstr "<emph>Number1, Number2, ...Number30</emph> 是数值或区域,表示基于整个总体样本的一个抽样。"
@@ -48615,7 +45516,6 @@ msgstr "<emph>Number1, Number2, ...Number30</emph> 是数值或区域,表示
msgctxt ""
"04060185.xhp\n"
"hd_id2947233\n"
-"133\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -48624,7 +45524,6 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id2953575\n"
-"134\n"
"help.text"
msgid "<item type=\"input\">=VAR.S(A1:A50)</item>"
msgstr "<item type=\"input\">=VAR.S(A1:A50)</item>"
@@ -48641,7 +45540,6 @@ msgstr "<bookmark_value>VARA 函数</bookmark_value>"
msgctxt ""
"04060185.xhp\n"
"hd_id3151045\n"
-"202\n"
"help.text"
msgid "VARA"
msgstr "VARA"
@@ -48650,7 +45548,6 @@ msgstr "VARA"
msgctxt ""
"04060185.xhp\n"
"par_id3155122\n"
-"203\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VARIANZA\">Estimates a variance based on a sample. The value of text is 0.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_VARIANZA\"> 估算基于一次抽样的方差。文字的值为 0。</ahelp>"
@@ -48659,7 +45556,6 @@ msgstr "<ahelp hid=\"HID_FUNC_VARIANZA\"> 估算基于一次抽样的方差。
msgctxt ""
"04060185.xhp\n"
"hd_id3149176\n"
-"204\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -48668,7 +45564,6 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id3149999\n"
-"205\n"
"help.text"
msgid "VARA(Value1; Value2; ...Value30)"
msgstr "VARA(Value1; Value2; ...Value30)"
@@ -48677,7 +45572,6 @@ msgstr "VARA(Value1; Value2; ...Value30)"
msgctxt ""
"04060185.xhp\n"
"par_id3158421\n"
-"206\n"
"help.text"
msgid "<emph>Value1, Value2,...Value30</emph> are values or ranges representing a sample derived from an entire population. Text has the value 0."
msgstr "<emph>Value1,value2,...value30</emph> 是数值或区域,表示从整个总体样本派生的一个抽样。文字的值为 0。"
@@ -48686,7 +45580,6 @@ msgstr "<emph>Value1,value2,...value30</emph> 是数值或区域,表示从整
msgctxt ""
"04060185.xhp\n"
"hd_id3149160\n"
-"207\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -48695,7 +45588,6 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id3154279\n"
-"208\n"
"help.text"
msgid "<item type=\"input\">=VARA(A1:A50)</item>"
msgstr "<item type=\"input\">=VARA(A1:A50)</item>"
@@ -48712,7 +45604,6 @@ msgstr "<bookmark_value>VARP 函数</bookmark_value>"
msgctxt ""
"04060185.xhp\n"
"hd_id3166441\n"
-"136\n"
"help.text"
msgid "VARP"
msgstr "VARP"
@@ -48721,7 +45612,6 @@ msgstr "VARP"
msgctxt ""
"04060185.xhp\n"
"par_id3159199\n"
-"137\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VARIANZEN\">Calculates a variance based on the entire population.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_VARIANZEN\">根据总体样本计算方差。</ahelp>"
@@ -48730,7 +45620,6 @@ msgstr "<ahelp hid=\"HID_FUNC_VARIANZEN\">根据总体样本计算方差。</ahe
msgctxt ""
"04060185.xhp\n"
"hd_id3150706\n"
-"138\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -48739,7 +45628,6 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id3147282\n"
-"139\n"
"help.text"
msgid "VARP(Number1; Number2; ...Number30)"
msgstr "VARP(Number1; Number2; ...Number30)"
@@ -48748,7 +45636,6 @@ msgstr "VARP(Number1; Number2; ...Number30)"
msgctxt ""
"04060185.xhp\n"
"par_id3149793\n"
-"140\n"
"help.text"
msgid "<emph>Number1, Number2, ...Number30</emph> are numerical values or ranges representing an entire population."
msgstr "<emph>Number1, Number2, ...Number30</emph> 表示整个总体样本的数值或区域。"
@@ -48757,7 +45644,6 @@ msgstr "<emph>Number1, Number2, ...Number30</emph> 表示整个总体样本的
msgctxt ""
"04060185.xhp\n"
"hd_id3152939\n"
-"141\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -48766,7 +45652,6 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id3153385\n"
-"142\n"
"help.text"
msgid "<item type=\"input\">=VARP(A1:A50)</item>"
msgstr "<item type=\"input\">=VARP(A1:A50)</item>"
@@ -48783,17 +45668,14 @@ msgstr "<bookmark_value>VAR.P 函数</bookmark_value>"
msgctxt ""
"04060185.xhp\n"
"hd_id2966441\n"
-"136\n"
"help.text"
msgid "VAR.P"
msgstr "VAR.P"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2959199\n"
-"137\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VAR_P_MS\">Calculates a variance based on the entire population.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_VARIANZEN\">根据总体样本计算方差。</ahelp>"
@@ -48802,7 +45684,6 @@ msgstr "<ahelp hid=\"HID_FUNC_VARIANZEN\">根据总体样本计算方差。</ahe
msgctxt ""
"04060185.xhp\n"
"hd_id2950706\n"
-"138\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -48811,17 +45692,14 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id2947282\n"
-"139\n"
"help.text"
msgid "VAR.P(Number1; Number2; ...Number30)"
msgstr "VAR.P(Number1, Number2, ...Number30)"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2949793\n"
-"140\n"
"help.text"
msgid "<emph>Number1, Number2, ...Number30</emph> are numerical values or ranges representing an entire population."
msgstr "<emph>Number1, Number2, ...Number30</emph> 表示整个总体样本的数值或区域。"
@@ -48830,7 +45708,6 @@ msgstr "<emph>Number1, Number2, ...Number30</emph> 表示整个总体样本的
msgctxt ""
"04060185.xhp\n"
"hd_id2952939\n"
-"141\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -48839,7 +45716,6 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id2953385\n"
-"142\n"
"help.text"
msgid "<item type=\"input\">=VAR.P(A1:A50)</item>"
msgstr "<item type=\"input\">=VAR.P(A1:A50)</item>"
@@ -48856,7 +45732,6 @@ msgstr "<bookmark_value>VARPA 函数</bookmark_value>"
msgctxt ""
"04060185.xhp\n"
"hd_id3153688\n"
-"210\n"
"help.text"
msgid "VARPA"
msgstr "VARPA"
@@ -48865,7 +45740,6 @@ msgstr "VARPA"
msgctxt ""
"04060185.xhp\n"
"par_id3149109\n"
-"211\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VARIANZENA\">Calculates the variance based on the entire population. The value of text is 0.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_VARIANZENA\">根据全部项目计算方差。文本的值为 0。</ahelp>"
@@ -48874,7 +45748,6 @@ msgstr "<ahelp hid=\"HID_FUNC_VARIANZENA\">根据全部项目计算方差。文
msgctxt ""
"04060185.xhp\n"
"hd_id3152880\n"
-"212\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -48883,7 +45756,6 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id3149967\n"
-"213\n"
"help.text"
msgid "VARPA(Value1; Value2; ...Value30)"
msgstr "VARPA(Value1; Value2; ...Value30)"
@@ -48892,7 +45764,6 @@ msgstr "VARPA(Value1; Value2; ...Value30)"
msgctxt ""
"04060185.xhp\n"
"par_id3149920\n"
-"214\n"
"help.text"
msgid "<emph>Value1,value2,...Value30</emph> are values or ranges representing an entire population."
msgstr "<emph>Value1,value2,...Value30</emph> 代表整个总体样本的值或区域。"
@@ -48901,7 +45772,6 @@ msgstr "<emph>Value1,value2,...Value30</emph> 代表整个总体样本的值或
msgctxt ""
"04060185.xhp\n"
"hd_id3154862\n"
-"215\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -48910,7 +45780,6 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id3156203\n"
-"216\n"
"help.text"
msgid "<item type=\"input\">=VARPA(A1:A50)</item>"
msgstr "<item type=\"input\">=VARPA(A1:A50)</item>"
@@ -48927,7 +45796,6 @@ msgstr "<bookmark_value>PERMUT 函数</bookmark_value><bookmark_value>排列数<
msgctxt ""
"04060185.xhp\n"
"hd_id3154599\n"
-"144\n"
"help.text"
msgid "PERMUT"
msgstr "PERMUT"
@@ -48936,7 +45804,6 @@ msgstr "PERMUT"
msgctxt ""
"04060185.xhp\n"
"par_id3154334\n"
-"145\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VARIATIONEN\">Returns the number of permutations for a given number of objects.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_VARIATIONEN\">计算给定数量对象组成的排列数。</ahelp>"
@@ -48945,7 +45812,6 @@ msgstr "<ahelp hid=\"HID_FUNC_VARIATIONEN\">计算给定数量对象组成的排
msgctxt ""
"04060185.xhp\n"
"hd_id3149422\n"
-"146\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -48954,7 +45820,6 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id3148466\n"
-"147\n"
"help.text"
msgid "PERMUT(Count1; Count2)"
msgstr "PERMUT(Count1; Count2)"
@@ -48963,7 +45828,6 @@ msgstr "PERMUT(Count1; Count2)"
msgctxt ""
"04060185.xhp\n"
"par_id3148656\n"
-"148\n"
"help.text"
msgid "<emph>Count1</emph> is the total number of objects."
msgstr "<emph>Count1</emph> 是对象的总数。"
@@ -48972,7 +45836,6 @@ msgstr "<emph>Count1</emph> 是对象的总数。"
msgctxt ""
"04060185.xhp\n"
"par_id3150826\n"
-"149\n"
"help.text"
msgid "<emph>Count2</emph> is the number of objects in each permutation."
msgstr "<emph>Count2</emph> 是每个排列中的对象的个数。"
@@ -48981,7 +45844,6 @@ msgstr "<emph>Count2</emph> 是每个排列中的对象的个数。"
msgctxt ""
"04060185.xhp\n"
"hd_id3153351\n"
-"150\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -48990,7 +45852,6 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id3150424\n"
-"151\n"
"help.text"
msgid "<item type=\"input\">=PERMUT(6;3)</item> returns 120. There are 120 different possibilities, to pick a sequence of 3 playing cards out of 6 playing cards."
msgstr "<item type=\"input\">=PERMUT(6;3)</item> 返回 120。从 6 张扑克牌中抽出 3 张牌的可能排列共有 120 种。"
@@ -49007,7 +45868,6 @@ msgstr "<bookmark_value>PERMUTATIONA 函数</bookmark_value>"
msgctxt ""
"04060185.xhp\n"
"hd_id3143276\n"
-"153\n"
"help.text"
msgid "PERMUTATIONA"
msgstr "PERMUTATIONA"
@@ -49016,7 +45876,6 @@ msgstr "PERMUTATIONA"
msgctxt ""
"04060185.xhp\n"
"par_id3144759\n"
-"154\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VARIATIONEN2\">Returns the number of permutations for a given number of objects (repetition allowed).</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_VARIATIONEN2\">返回一组对象(允许重复对象)的排列数目。</ahelp>"
@@ -49025,7 +45884,6 @@ msgstr "<ahelp hid=\"HID_FUNC_VARIATIONEN2\">返回一组对象(允许重复
msgctxt ""
"04060185.xhp\n"
"hd_id3145598\n"
-"155\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -49034,7 +45892,6 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id3149298\n"
-"156\n"
"help.text"
msgid "PERMUTATIONA(Count1; Count2)"
msgstr "PERMUTATIONA(Count1; Count2)"
@@ -49043,7 +45900,6 @@ msgstr "PERMUTATIONA(Count1; Count2)"
msgctxt ""
"04060185.xhp\n"
"par_id3156139\n"
-"157\n"
"help.text"
msgid "<emph>Count1</emph> is the total number of objects."
msgstr "<emph>Count1</emph> 是对象的总数。"
@@ -49052,7 +45908,6 @@ msgstr "<emph>Count1</emph> 是对象的总数。"
msgctxt ""
"04060185.xhp\n"
"par_id3149519\n"
-"158\n"
"help.text"
msgid "<emph>Count2</emph> is the number of objects in each permutation."
msgstr "<emph>Count2</emph> 是每个排列中的对象的个数。"
@@ -49061,7 +45916,6 @@ msgstr "<emph>Count2</emph> 是每个排列中的对象的个数。"
msgctxt ""
"04060185.xhp\n"
"hd_id3151382\n"
-"159\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -49070,7 +45924,6 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id3153949\n"
-"160\n"
"help.text"
msgid "How often can 2 objects be selected from a total of 11 objects?"
msgstr "从一个有 11 个元素的集合中选出 2 个元素共有多少种可能?"
@@ -49079,7 +45932,6 @@ msgstr "从一个有 11 个元素的集合中选出 2 个元素共有多少种
msgctxt ""
"04060185.xhp\n"
"par_id3149233\n"
-"161\n"
"help.text"
msgid "<item type=\"input\">=PERMUTATIONA(11;2)</item> returns 121."
msgstr "<item type=\"input\">=PERMUTATIONA(11;2)</item> 返回 121。"
@@ -49088,7 +45940,6 @@ msgstr "<item type=\"input\">=PERMUTATIONA(11;2)</item> 返回 121。"
msgctxt ""
"04060185.xhp\n"
"par_id3150622\n"
-"162\n"
"help.text"
msgid "<item type=\"input\">=PERMUTATIONA(6;3)</item> returns 216. There are 216 different possibilities to put a sequence of 3 playing cards together out of six playing cards if every card is returned before the next one is drawn."
msgstr "<item type=\"input\">=PERMUTATIONA(6;3)</item> 返回 216。在 6 张扑克牌中抽出三张排列,并且每抽出一张后,在抽第二张之前再把这张放回牌中,这时可能的排列共有 216 种。"
@@ -49105,7 +45956,6 @@ msgstr "<bookmark_value>PROB 函数</bookmark_value>"
msgctxt ""
"04060185.xhp\n"
"hd_id3152952\n"
-"164\n"
"help.text"
msgid "PROB"
msgstr "PROB"
@@ -49114,7 +45964,6 @@ msgstr "PROB"
msgctxt ""
"04060185.xhp\n"
"par_id3154110\n"
-"165\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_WAHRSCHBEREICH\">Returns the probability that values in a range are between two limits.</ahelp> If there is no <item type=\"literal\">End</item> value, this function calculates the probability based on the principle that the Data values are equal to the value of <item type=\"literal\">Start</item>."
msgstr "<ahelp hid=\"HID_FUNC_WAHRSCHBEREICH\"> 返回该值在两个极限之间的概率。</ahelp>如果没有 <item type=\"literal\">End</item> 值,此函数会根据 Data 值等于 <item type=\"literal\">Start</item> 值的原则计算概率。"
@@ -49123,7 +45972,6 @@ msgstr "<ahelp hid=\"HID_FUNC_WAHRSCHBEREICH\"> 返回该值在两个极限之
msgctxt ""
"04060185.xhp\n"
"hd_id3146810\n"
-"166\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -49132,7 +45980,6 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id3147330\n"
-"167\n"
"help.text"
msgid "PROB(Data; Probability; Start; End)"
msgstr "PROB(Data; Probability; Start; End)"
@@ -49141,7 +45988,6 @@ msgstr "PROB(Data; Probability; Start; End)"
msgctxt ""
"04060185.xhp\n"
"par_id3154573\n"
-"168\n"
"help.text"
msgid "<emph>Data</emph> is the array or range of data in the sample."
msgstr "<emph>Data</emph> 是数组或示例中的一组数据。"
@@ -49150,7 +45996,6 @@ msgstr "<emph>Data</emph> 是数组或示例中的一组数据。"
msgctxt ""
"04060185.xhp\n"
"par_id3156334\n"
-"169\n"
"help.text"
msgid "<emph>Probability</emph> is the array or range of the corresponding probabilities."
msgstr "<emph>Probability</emph> 是相关概率的数组或区域。"
@@ -49159,7 +46004,6 @@ msgstr "<emph>Probability</emph> 是相关概率的数组或区域。"
msgctxt ""
"04060185.xhp\n"
"par_id3151107\n"
-"170\n"
"help.text"
msgid "<emph>Start</emph> is the start value of the interval whose probabilities are to be summed."
msgstr "<emph>Start</emph> 为数值区间的开始,几率在该区间被累加。"
@@ -49168,7 +46012,6 @@ msgstr "<emph>Start</emph> 为数值区间的开始,几率在该区间被累
msgctxt ""
"04060185.xhp\n"
"par_id3153694\n"
-"171\n"
"help.text"
msgid "<emph>End</emph> (optional) is the end value of the interval whose probabilities are to be summed. If this parameter is missing, the probability for the <emph>Start </emph>value is calculated."
msgstr "<emph>End</emph> (可选择的)是数值区间的结束位置,几率在该区间被累加。如缺少该参数,则计算 <emph>Start</emph> 条件下的几率。"
@@ -49177,7 +46020,6 @@ msgstr "<emph>End</emph> (可选择的)是数值区间的结束位置,几
msgctxt ""
"04060185.xhp\n"
"hd_id3147574\n"
-"172\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -49186,7 +46028,6 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id3153666\n"
-"173\n"
"help.text"
msgid "<item type=\"input\">=PROB(A1:A50;B1:B50;50;60)</item> returns the probability with which a value within the range of A1:A50 is also within the limits between 50 and 60. Every value within the range of A1:A50 has a probability within the range of B1:B50."
msgstr "<item type=\"input\">=PROB(A1:A50;B1:B50;50;60)</item> 返回 A1:A50 区域内的值位于上下限为 50 和 60 之间的几率。对于区域 A1:A50 中的每一个值在区域 B1:B50 中都有一个对应值。"
@@ -49203,7 +46044,6 @@ msgstr "<bookmark_value>WEIBULL 函数</bookmark_value>"
msgctxt ""
"04060185.xhp\n"
"hd_id3150941\n"
-"175\n"
"help.text"
msgid "WEIBULL"
msgstr "WEIBULL"
@@ -49212,7 +46052,6 @@ msgstr "WEIBULL"
msgctxt ""
"04060185.xhp\n"
"par_id3154916\n"
-"176\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_WEIBULL\">Returns the values of the Weibull distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_WEIBULL\">返回 Weibull 分布的值。</ahelp>"
@@ -49245,7 +46084,6 @@ msgstr "如果 C 等于 1,WEIBULL 返回累积分布函数。"
msgctxt ""
"04060185.xhp\n"
"hd_id3159393\n"
-"177\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -49254,7 +46092,6 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id3154478\n"
-"178\n"
"help.text"
msgid "WEIBULL(Number; Alpha; Beta; C)"
msgstr "WEIBULL(Number; Alpha; Beta; C)"
@@ -49263,7 +46100,6 @@ msgstr "WEIBULL(Number; Alpha; Beta; C)"
msgctxt ""
"04060185.xhp\n"
"par_id3151317\n"
-"179\n"
"help.text"
msgid "<emph>Number</emph> is the value at which to calculate the Weibull distribution."
msgstr "<emph>Number</emph> 确定计算哪个值的 Weibull 分布。"
@@ -49272,7 +46108,6 @@ msgstr "<emph>Number</emph> 确定计算哪个值的 Weibull 分布。"
msgctxt ""
"04060185.xhp\n"
"par_id3158436\n"
-"180\n"
"help.text"
msgid "<emph>Alpha </emph>is the shape parameter of the Weibull distribution."
msgstr "<emph>Alpha</emph> 为 Weibull 分布的 Alpha 参数。"
@@ -49281,7 +46116,6 @@ msgstr "<emph>Alpha</emph> 为 Weibull 分布的 Alpha 参数。"
msgctxt ""
"04060185.xhp\n"
"par_id3154668\n"
-"181\n"
"help.text"
msgid "<emph>Beta</emph> is the scale parameter of the Weibull distribution."
msgstr "<emph>Beta</emph> 为 Weibull 分布的 beta 参数。"
@@ -49290,7 +46124,6 @@ msgstr "<emph>Beta</emph> 为 Weibull 分布的 beta 参数。"
msgctxt ""
"04060185.xhp\n"
"par_id3154825\n"
-"182\n"
"help.text"
msgid "<emph>C</emph> indicates the type of function."
msgstr "<emph>C</emph> 指的是函数类型。"
@@ -49299,7 +46132,6 @@ msgstr "<emph>C</emph> 指的是函数类型。"
msgctxt ""
"04060185.xhp\n"
"hd_id3153794\n"
-"183\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -49308,7 +46140,6 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id3146077\n"
-"184\n"
"help.text"
msgid "<item type=\"input\">=WEIBULL(2;1;1;1)</item> returns 0.86."
msgstr "<item type=\"input\">=WEIBULL(2;1;1;1)</item> 返回 0.86。"
@@ -49333,23 +46164,19 @@ msgstr "<bookmark_value>WEIBULL.DIST 函数</bookmark_value>"
msgctxt ""
"04060185.xhp\n"
"hd_id2950941\n"
-"175\n"
"help.text"
msgid "WEIBULL.DIST"
msgstr ""
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2954916\n"
-"176\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_WEIBULL_DIST_MS\">Returns the values of the Weibull distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_WEIBULL\">返回 Weibull 分布的值。</ahelp>"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2905200911372767\n"
@@ -49377,7 +46204,6 @@ msgstr "如果 C 等于 1,WEIBULL.DIST 返回累积分布函数。"
msgctxt ""
"04060185.xhp\n"
"hd_id2959393\n"
-"177\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -49386,17 +46212,14 @@ msgstr "语法"
msgctxt ""
"04060185.xhp\n"
"par_id2954478\n"
-"178\n"
"help.text"
msgid "WEIBULL.DIST(Number; Alpha; Beta; C)"
msgstr "WEIBULL.DIST(Number, Alpha, Beta, C)"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2951317\n"
-"179\n"
"help.text"
msgid "<emph>Number</emph> is the value at which to calculate the Weibull distribution."
msgstr "<emph>Number</emph> 确定计算哪个值的 Weibull 分布。"
@@ -49405,7 +46228,6 @@ msgstr "<emph>Number</emph> 确定计算哪个值的 Weibull 分布。"
msgctxt ""
"04060185.xhp\n"
"par_id2958436\n"
-"180\n"
"help.text"
msgid "<emph>Alpha </emph>is the shape parameter of the Weibull distribution."
msgstr "<emph>Alpha</emph> 为 Weibull 分布的 Alpha 参数。"
@@ -49414,7 +46236,6 @@ msgstr "<emph>Alpha</emph> 为 Weibull 分布的 Alpha 参数。"
msgctxt ""
"04060185.xhp\n"
"par_id2954668\n"
-"181\n"
"help.text"
msgid "<emph>Beta</emph> is the scale parameter of the Weibull distribution."
msgstr "<emph>Beta</emph> 为 Weibull 分布的 beta 参数。"
@@ -49423,7 +46244,6 @@ msgstr "<emph>Beta</emph> 为 Weibull 分布的 beta 参数。"
msgctxt ""
"04060185.xhp\n"
"par_id2954825\n"
-"182\n"
"help.text"
msgid "<emph>C</emph> indicates the type of function."
msgstr "<emph>C</emph> 指的是函数类型。"
@@ -49432,7 +46252,6 @@ msgstr "<emph>C</emph> 指的是函数类型。"
msgctxt ""
"04060185.xhp\n"
"hd_id2953794\n"
-"183\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -49441,13 +46260,11 @@ msgstr "示例"
msgctxt ""
"04060185.xhp\n"
"par_id2946077\n"
-"184\n"
"help.text"
msgid "<item type=\"input\">=WEIBULL.DIST(2;1;1;1)</item> returns 0.8646647168."
msgstr "<item type=\"input\">=WEIBULL.DIST(2,1,1,1)</item> 返回 0.8646647168."
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2905200911372899\n"
@@ -49475,7 +46292,6 @@ msgstr "<bookmark_value>公式; 运算符</bookmark_value><bookmark_value>运算
msgctxt ""
"04060199.xhp\n"
"hd_id3156445\n"
-"1\n"
"help.text"
msgid "Operators in $[officename] Calc"
msgstr "$[officename] Calc 中的运算符"
@@ -49484,7 +46300,6 @@ msgstr "$[officename] Calc 中的运算符"
msgctxt ""
"04060199.xhp\n"
"par_id3155812\n"
-"2\n"
"help.text"
msgid "You can use the following operators in $[officename] Calc:"
msgstr "您可以在 $[officename] Calc 中使用以下运算符:"
@@ -49493,7 +46308,6 @@ msgstr "您可以在 $[officename] Calc 中使用以下运算符:"
msgctxt ""
"04060199.xhp\n"
"hd_id3153066\n"
-"3\n"
"help.text"
msgid "Arithmetical Operators"
msgstr "算术运算符"
@@ -49502,7 +46316,6 @@ msgstr "算术运算符"
msgctxt ""
"04060199.xhp\n"
"par_id3148601\n"
-"4\n"
"help.text"
msgid "These operators return numerical results."
msgstr "这些运算符返回数字结果。"
@@ -49511,7 +46324,6 @@ msgstr "这些运算符返回数字结果。"
msgctxt ""
"04060199.xhp\n"
"par_id3144768\n"
-"5\n"
"help.text"
msgid "Operator"
msgstr "运算符"
@@ -49520,7 +46332,6 @@ msgstr "运算符"
msgctxt ""
"04060199.xhp\n"
"par_id3157982\n"
-"6\n"
"help.text"
msgid "Name"
msgstr "名称"
@@ -49529,7 +46340,6 @@ msgstr "名称"
msgctxt ""
"04060199.xhp\n"
"par_id3159096\n"
-"7\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -49538,7 +46348,6 @@ msgstr "示例"
msgctxt ""
"04060199.xhp\n"
"par_id3149126\n"
-"8\n"
"help.text"
msgid "+ (Plus)"
msgstr "+(加号)"
@@ -49547,7 +46356,6 @@ msgstr "+(加号)"
msgctxt ""
"04060199.xhp\n"
"par_id3150892\n"
-"9\n"
"help.text"
msgid "Addition"
msgstr "加法"
@@ -49556,7 +46364,6 @@ msgstr "加法"
msgctxt ""
"04060199.xhp\n"
"par_id3153247\n"
-"10\n"
"help.text"
msgid "1+1"
msgstr "1+1"
@@ -49565,7 +46372,6 @@ msgstr "1+1"
msgctxt ""
"04060199.xhp\n"
"par_id3159204\n"
-"11\n"
"help.text"
msgid "- (Minus)"
msgstr "-(减号)"
@@ -49574,7 +46380,6 @@ msgstr "-(减号)"
msgctxt ""
"04060199.xhp\n"
"par_id3145362\n"
-"12\n"
"help.text"
msgid "Subtraction"
msgstr "减法"
@@ -49583,7 +46388,6 @@ msgstr "减法"
msgctxt ""
"04060199.xhp\n"
"par_id3153554\n"
-"13\n"
"help.text"
msgid "2-1"
msgstr "2-1"
@@ -49592,7 +46396,6 @@ msgstr "2-1"
msgctxt ""
"04060199.xhp\n"
"par_id3153808\n"
-"14\n"
"help.text"
msgid "- (Minus)"
msgstr "-(减号)"
@@ -49601,7 +46404,6 @@ msgstr "-(减号)"
msgctxt ""
"04060199.xhp\n"
"par_id3151193\n"
-"15\n"
"help.text"
msgid "Negation"
msgstr "非"
@@ -49610,7 +46412,6 @@ msgstr "非"
msgctxt ""
"04060199.xhp\n"
"par_id3154712\n"
-"16\n"
"help.text"
msgid "-5"
msgstr "-5"
@@ -49619,7 +46420,6 @@ msgstr "-5"
msgctxt ""
"04060199.xhp\n"
"par_id3149873\n"
-"17\n"
"help.text"
msgid "* (asterisk)"
msgstr "*(星号)"
@@ -49628,7 +46428,6 @@ msgstr "*(星号)"
msgctxt ""
"04060199.xhp\n"
"par_id3147504\n"
-"18\n"
"help.text"
msgid "Multiplication"
msgstr "乘法"
@@ -49637,7 +46436,6 @@ msgstr "乘法"
msgctxt ""
"04060199.xhp\n"
"par_id3149055\n"
-"19\n"
"help.text"
msgid "2*2"
msgstr "2*2"
@@ -49646,7 +46444,6 @@ msgstr "2*2"
msgctxt ""
"04060199.xhp\n"
"par_id3151341\n"
-"20\n"
"help.text"
msgid "/ (Slash)"
msgstr "/(斜线)"
@@ -49655,7 +46452,6 @@ msgstr "/(斜线)"
msgctxt ""
"04060199.xhp\n"
"par_id3159260\n"
-"21\n"
"help.text"
msgid "Division"
msgstr "除法"
@@ -49664,7 +46460,6 @@ msgstr "除法"
msgctxt ""
"04060199.xhp\n"
"par_id3153027\n"
-"22\n"
"help.text"
msgid "9/3"
msgstr "9/3"
@@ -49673,7 +46468,6 @@ msgstr "9/3"
msgctxt ""
"04060199.xhp\n"
"par_id3156396\n"
-"23\n"
"help.text"
msgid "% (Percent)"
msgstr "%(百分号)"
@@ -49682,7 +46476,6 @@ msgstr "%(百分号)"
msgctxt ""
"04060199.xhp\n"
"par_id3150372\n"
-"24\n"
"help.text"
msgid "Percent"
msgstr "百分比"
@@ -49691,7 +46484,6 @@ msgstr "百分比"
msgctxt ""
"04060199.xhp\n"
"par_id3145632\n"
-"25\n"
"help.text"
msgid "15%"
msgstr "15%"
@@ -49700,7 +46492,6 @@ msgstr "15%"
msgctxt ""
"04060199.xhp\n"
"par_id3149722\n"
-"26\n"
"help.text"
msgid "^ (Caret)"
msgstr "^(脱字号)"
@@ -49709,7 +46500,6 @@ msgstr "^(脱字号)"
msgctxt ""
"04060199.xhp\n"
"par_id3159127\n"
-"27\n"
"help.text"
msgid "Exponentiation"
msgstr "乘方"
@@ -49718,7 +46508,6 @@ msgstr "乘方"
msgctxt ""
"04060199.xhp\n"
"par_id3157873\n"
-"28\n"
"help.text"
msgid "3^2"
msgstr "3^2"
@@ -49727,7 +46516,6 @@ msgstr "3^2"
msgctxt ""
"04060199.xhp\n"
"hd_id3152981\n"
-"29\n"
"help.text"
msgid "Comparative operators"
msgstr "比较运算符"
@@ -49736,7 +46524,6 @@ msgstr "比较运算符"
msgctxt ""
"04060199.xhp\n"
"par_id3157902\n"
-"30\n"
"help.text"
msgid "These operators return either true or false."
msgstr "这些运算符返回逻辑值 TRUE 或 FALSE。"
@@ -49745,7 +46532,6 @@ msgstr "这些运算符返回逻辑值 TRUE 或 FALSE。"
msgctxt ""
"04060199.xhp\n"
"par_id3149889\n"
-"31\n"
"help.text"
msgid "Operator"
msgstr "运算符"
@@ -49754,7 +46540,6 @@ msgstr "运算符"
msgctxt ""
"04060199.xhp\n"
"par_id3150743\n"
-"32\n"
"help.text"
msgid "Name"
msgstr "名称"
@@ -49763,7 +46548,6 @@ msgstr "名称"
msgctxt ""
"04060199.xhp\n"
"par_id3146877\n"
-"33\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -49772,7 +46556,6 @@ msgstr "示例"
msgctxt ""
"04060199.xhp\n"
"par_id3148888\n"
-"34\n"
"help.text"
msgid "= (equal sign)"
msgstr "=(等号)"
@@ -49781,7 +46564,6 @@ msgstr "=(等号)"
msgctxt ""
"04060199.xhp\n"
"par_id3154845\n"
-"35\n"
"help.text"
msgid "Equal"
msgstr "等于"
@@ -49790,7 +46572,6 @@ msgstr "等于"
msgctxt ""
"04060199.xhp\n"
"par_id3154546\n"
-"36\n"
"help.text"
msgid "A1=B1"
msgstr "A1=B1"
@@ -49799,7 +46580,6 @@ msgstr "A1=B1"
msgctxt ""
"04060199.xhp\n"
"par_id3154807\n"
-"37\n"
"help.text"
msgid "> (Greater than)"
msgstr ">(大于号)"
@@ -49808,7 +46588,6 @@ msgstr ">(大于号)"
msgctxt ""
"04060199.xhp\n"
"par_id3148580\n"
-"38\n"
"help.text"
msgid "Greater than"
msgstr "大于"
@@ -49817,7 +46596,6 @@ msgstr "大于"
msgctxt ""
"04060199.xhp\n"
"par_id3145138\n"
-"39\n"
"help.text"
msgid "A1>B1"
msgstr "A1>B1"
@@ -49826,7 +46604,6 @@ msgstr "A1>B1"
msgctxt ""
"04060199.xhp\n"
"par_id3149507\n"
-"40\n"
"help.text"
msgid "< (Less than)"
msgstr "<(小于号)"
@@ -49835,7 +46612,6 @@ msgstr "<(小于号)"
msgctxt ""
"04060199.xhp\n"
"par_id3150145\n"
-"41\n"
"help.text"
msgid "Less than"
msgstr "小于"
@@ -49844,7 +46620,6 @@ msgstr "小于"
msgctxt ""
"04060199.xhp\n"
"par_id3150901\n"
-"42\n"
"help.text"
msgid "A1<B1"
msgstr "A1<B1"
@@ -49853,7 +46628,6 @@ msgstr "A1<B1"
msgctxt ""
"04060199.xhp\n"
"par_id3153078\n"
-"43\n"
"help.text"
msgid ">= (Greater than or equal to)"
msgstr ">=(大于或等于)"
@@ -49862,7 +46636,6 @@ msgstr ">=(大于或等于)"
msgctxt ""
"04060199.xhp\n"
"par_id3150866\n"
-"44\n"
"help.text"
msgid "Greater than or equal to"
msgstr "大于或等于"
@@ -49871,7 +46644,6 @@ msgstr "大于或等于"
msgctxt ""
"04060199.xhp\n"
"par_id3153111\n"
-"45\n"
"help.text"
msgid "A1>=B1"
msgstr "A1>=B1"
@@ -49880,7 +46652,6 @@ msgstr "A1>=B1"
msgctxt ""
"04060199.xhp\n"
"par_id3153004\n"
-"46\n"
"help.text"
msgid "<= (Less than or equal to)"
msgstr "<=(小于或等于)"
@@ -49889,7 +46660,6 @@ msgstr "<=(小于或等于)"
msgctxt ""
"04060199.xhp\n"
"par_id3150335\n"
-"47\n"
"help.text"
msgid "Less than or equal to"
msgstr "小于或等于"
@@ -49898,7 +46668,6 @@ msgstr "小于或等于"
msgctxt ""
"04060199.xhp\n"
"par_id3148760\n"
-"48\n"
"help.text"
msgid "A1<=B1"
msgstr "A1<=B1"
@@ -49907,7 +46676,6 @@ msgstr "A1<=B1"
msgctxt ""
"04060199.xhp\n"
"par_id3157994\n"
-"49\n"
"help.text"
msgid "<> (Inequality)"
msgstr "<>(不等于)"
@@ -49916,7 +46684,6 @@ msgstr "<>(不等于)"
msgctxt ""
"04060199.xhp\n"
"par_id3150019\n"
-"50\n"
"help.text"
msgid "Inequality"
msgstr "不等于"
@@ -49925,7 +46692,6 @@ msgstr "不等于"
msgctxt ""
"04060199.xhp\n"
"par_id3149878\n"
-"51\n"
"help.text"
msgid "A1<>B1"
msgstr "A1<>B1"
@@ -49934,7 +46700,6 @@ msgstr "A1<>B1"
msgctxt ""
"04060199.xhp\n"
"hd_id3145241\n"
-"52\n"
"help.text"
msgid "Text operators"
msgstr "文字运算符"
@@ -49943,7 +46708,6 @@ msgstr "文字运算符"
msgctxt ""
"04060199.xhp\n"
"par_id3155438\n"
-"53\n"
"help.text"
msgid "The operator combines separate texts into one text."
msgstr "该运算符把各文本合并到一个文本中。"
@@ -49952,7 +46716,6 @@ msgstr "该运算符把各文本合并到一个文本中。"
msgctxt ""
"04060199.xhp\n"
"par_id3150566\n"
-"54\n"
"help.text"
msgid "Operator"
msgstr "运算符"
@@ -49961,7 +46724,6 @@ msgstr "运算符"
msgctxt ""
"04060199.xhp\n"
"par_id3153048\n"
-"55\n"
"help.text"
msgid "Name"
msgstr "名称"
@@ -49970,7 +46732,6 @@ msgstr "名称"
msgctxt ""
"04060199.xhp\n"
"par_id3149001\n"
-"56\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -49979,7 +46740,6 @@ msgstr "示例"
msgctxt ""
"04060199.xhp\n"
"par_id3148769\n"
-"57\n"
"help.text"
msgid "& (And)"
msgstr "&(和)"
@@ -49996,7 +46756,6 @@ msgstr "<bookmark_value>文字连接 AND</bookmark_value>"
msgctxt ""
"04060199.xhp\n"
"par_id3157975\n"
-"58\n"
"help.text"
msgid "text concatenation AND"
msgstr "文本连接 AND"
@@ -50005,7 +46764,6 @@ msgstr "文本连接 AND"
msgctxt ""
"04060199.xhp\n"
"par_id3157993\n"
-"59\n"
"help.text"
msgid "\"Sun\" & \"day\" is \"Sunday\""
msgstr "\"Sun\" & \"day\"得出\"Sunday\""
@@ -50014,7 +46772,6 @@ msgstr "\"Sun\" & \"day\"得出\"Sunday\""
msgctxt ""
"04060199.xhp\n"
"hd_id3153550\n"
-"60\n"
"help.text"
msgid "Reference operators"
msgstr "引用运算符"
@@ -50023,7 +46780,6 @@ msgstr "引用运算符"
msgctxt ""
"04060199.xhp\n"
"par_id3149024\n"
-"61\n"
"help.text"
msgid "These operators return a cell range of zero, one or more cells."
msgstr "这些运算符返回 0、1 或更多个单元格区域。"
@@ -50040,7 +46796,6 @@ msgstr "区域具有最高优先级,然后是交集,最后是并集。"
msgctxt ""
"04060199.xhp\n"
"par_id3158416\n"
-"62\n"
"help.text"
msgid "Operator"
msgstr "运算符"
@@ -50049,7 +46804,6 @@ msgstr "运算符"
msgctxt ""
"04060199.xhp\n"
"par_id3152822\n"
-"63\n"
"help.text"
msgid "Name"
msgstr "名称"
@@ -50058,7 +46812,6 @@ msgstr "名称"
msgctxt ""
"04060199.xhp\n"
"par_id3154949\n"
-"64\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -50067,7 +46820,6 @@ msgstr "示例"
msgctxt ""
"04060199.xhp\n"
"par_id3156257\n"
-"65\n"
"help.text"
msgid ": (Colon)"
msgstr ":(冒号)"
@@ -50076,7 +46828,6 @@ msgstr ":(冒号)"
msgctxt ""
"04060199.xhp\n"
"par_id3153924\n"
-"66\n"
"help.text"
msgid "Range"
msgstr "区域"
@@ -50085,7 +46836,6 @@ msgstr "区域"
msgctxt ""
"04060199.xhp\n"
"par_id3148432\n"
-"67\n"
"help.text"
msgid "A1:C108"
msgstr "A1:C108"
@@ -50094,7 +46844,6 @@ msgstr "A1:C108"
msgctxt ""
"04060199.xhp\n"
"par_id3152592\n"
-"68\n"
"help.text"
msgid "! (Exclamation point)"
msgstr "!(感叹号)"
@@ -50111,7 +46860,6 @@ msgstr "<bookmark_value>交集运算符</bookmark_value>"
msgctxt ""
"04060199.xhp\n"
"par_id3150606\n"
-"69\n"
"help.text"
msgid "Intersection"
msgstr "交集"
@@ -50120,7 +46868,6 @@ msgstr "交集"
msgctxt ""
"04060199.xhp\n"
"par_id3083445\n"
-"70\n"
"help.text"
msgid "SUM(A1:B6!B5:C12)"
msgstr "SUM(A1:B6!B5:C12)"
@@ -50129,7 +46876,6 @@ msgstr "SUM(A1:B6!B5:C12)"
msgctxt ""
"04060199.xhp\n"
"par_id3150385\n"
-"71\n"
"help.text"
msgid "Calculates the sum of all cells in the intersection; in this example, the result yields the sum of cells B5 and B6."
msgstr "计算交集中所有单元格的和。此例中,计算单元格 B5 和 B6 的和。"
@@ -50178,7 +46924,6 @@ msgstr ""
msgctxt ""
"04070000.xhp\n"
"hd_id3153951\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Named Ranges and Expressions</link>"
msgstr ""
@@ -50187,7 +46932,6 @@ msgstr ""
msgctxt ""
"04070000.xhp\n"
"par_id3145801\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">Allows you to name the different sections of your spreadsheet document.</ahelp> By naming the different sections, you can easily <link href=\"text/scalc/01/02110000.xhp\" name=\"navigate\">navigate</link> through the spreadsheet documents and find specific information."
msgstr "<ahelp hid=\".\">用于为电子表格文档的不同部分指定名称。</ahelp> 通过命名工作表的不同部分,您可以很方便地<link href=\"text/scalc/01/02110000.xhp\" name=\"浏览\">浏览</link>电子表格文档,并查找特定信息。"
@@ -50196,7 +46940,6 @@ msgstr "<ahelp hid=\".\">用于为电子表格文档的不同部分指定名称
msgctxt ""
"04070000.xhp\n"
"hd_id3153878\n"
-"3\n"
"help.text"
msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Define\">Define</link>"
msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"定义\">定义</link>"
@@ -50205,7 +46948,6 @@ msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"定义\">定义</link>"
msgctxt ""
"04070000.xhp\n"
"hd_id3146969\n"
-"4\n"
"help.text"
msgid "<link href=\"text/scalc/01/04070200.xhp\" name=\"Insert\">Insert</link>"
msgstr "<link href=\"text/scalc/01/04070200.xhp\" name=\"插入\">插入</link>"
@@ -50214,7 +46956,6 @@ msgstr "<link href=\"text/scalc/01/04070200.xhp\" name=\"插入\">插入</link>"
msgctxt ""
"04070000.xhp\n"
"hd_id3155764\n"
-"5\n"
"help.text"
msgid "<link href=\"text/scalc/01/04070300.xhp\" name=\"Apply\">Apply</link>"
msgstr "<link href=\"text/scalc/01/04070300.xhp\" name=\"应用\">应用</link>"
@@ -50223,7 +46964,6 @@ msgstr "<link href=\"text/scalc/01/04070300.xhp\" name=\"应用\">应用</link>"
msgctxt ""
"04070000.xhp\n"
"hd_id3156382\n"
-"6\n"
"help.text"
msgid "<link href=\"text/scalc/01/04070400.xhp\" name=\"Labels\">Labels</link>"
msgstr "<link href=\"text/scalc/01/04070400.xhp\" name=\"数据标志\">数据标志</link>"
@@ -50240,7 +46980,6 @@ msgstr "定义名称"
msgctxt ""
"04070100.xhp\n"
"hd_id3156330\n"
-"1\n"
"help.text"
msgid "Define Names"
msgstr "定义名称"
@@ -50249,7 +46988,6 @@ msgstr "定义名称"
msgctxt ""
"04070100.xhp\n"
"par_id3154366\n"
-"2\n"
"help.text"
msgid "<variable id=\"namenfestlegentext\"><ahelp hid=\".uno:DefineName\">Opens a dialog where you can specify a name for a selected area or a name for a formula expression.</ahelp></variable>"
msgstr ""
@@ -50258,7 +46996,6 @@ msgstr ""
msgctxt ""
"04070100.xhp\n"
"par_id3154123\n"
-"31\n"
"help.text"
msgid "Use the mouse to define ranges or type the reference into the <emph>Define Name </emph>dialog fields."
msgstr "使用鼠标定义区域或引用,或者在<emph>定义名称</emph>对话框字段中键入引用。"
@@ -50267,7 +47004,6 @@ msgstr "使用鼠标定义区域或引用,或者在<emph>定义名称</emph>
msgctxt ""
"04070100.xhp\n"
"par_id3155131\n"
-"30\n"
"help.text"
msgid "The <emph>Sheet Area</emph> box on the Formula bar contains a list of defined names for the ranges or formula expressions and their scope between parenthesis. Click a name from this box to highlight the corresponding reference on the spreadsheet. Names given formulas or parts of a formula are not listed here."
msgstr ""
@@ -50276,7 +47012,6 @@ msgstr ""
msgctxt ""
"04070100.xhp\n"
"hd_id3151118\n"
-"3\n"
"help.text"
msgid "Name"
msgstr "名称"
@@ -50285,16 +47020,14 @@ msgstr "名称"
msgctxt ""
"04070100.xhp\n"
"par_id3163712\n"
-"29\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/definename/edit\">Enter the name of the area for which you want to define a reference or a formula expression. All area names already defined in the spreadsheet are listed in the text field below.</ahelp> If you click a name on the list, the corresponding reference in the document will be shown with a blue frame. If multiple cell ranges belong to the same area name, they are displayed with different colored frames."
+msgid "<ahelp hid=\".\">Enter the name of the area for which you want to define a reference or a formula expression.</ahelp> All area names already defined in the spreadsheet are listed in the text field above. If you click a name on the list, the corresponding reference in the document will be shown with a blue frame. If multiple cell ranges belong to the same area name, they are displayed with different colored frames."
msgstr ""
#: 04070100.xhp
msgctxt ""
"04070100.xhp\n"
"hd_id3153728\n"
-"9\n"
"help.text"
msgid "Range or formula expression"
msgstr ""
@@ -50303,16 +47036,14 @@ msgstr ""
msgctxt ""
"04070100.xhp\n"
"par_id3147435\n"
-"10\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/definename/range\">The reference of the selected area name is shown here as an absolute value.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/definename/range\">选定区域名称的引用在此显示为绝对值。</ahelp>"
+msgid "<ahelp hid=\".\">The reference of the selected area name is shown here as an absolute value.</ahelp>"
+msgstr ""
#: 04070100.xhp
msgctxt ""
"04070100.xhp\n"
"par_id3146986\n"
-"12\n"
"help.text"
msgid "To insert a new area reference, place the cursor in this field and use your mouse to select the desired area in any sheet of your spreadsheet document. To insert a new named formula, type the formula expression."
msgstr ""
@@ -50321,7 +47052,6 @@ msgstr ""
msgctxt ""
"04070100.xhp\n"
"hd_id31547290\n"
-"13\n"
"help.text"
msgid "Scope"
msgstr ""
@@ -50330,16 +47060,14 @@ msgstr ""
msgctxt ""
"04070100.xhp\n"
"hd_id31547291\n"
-"13\n"
"help.text"
-msgid "Select the scope of the named range or named formula. Document(Global) means the name is valid for the whole document. Any other sheet name selected will restrict the scope of the named range or formula expression to that sheet."
+msgid "<ahelp hid=\".\">Select the scope of the named range or named formula. Document (Global) means the name is valid for the whole document.</ahelp> Any other sheet name selected will restrict the scope of the named range or formula expression to that sheet."
msgstr ""
#: 04070100.xhp
msgctxt ""
"04070100.xhp\n"
"hd_id3154729\n"
-"13\n"
"help.text"
msgid "Range options"
msgstr ""
@@ -50348,16 +47076,14 @@ msgstr ""
msgctxt ""
"04070100.xhp\n"
"par_id3149958\n"
-"14\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/definename/more\">Allows you to specify the <emph>Area type</emph> (optional) for the reference.</ahelp>"
+msgid "<ahelp hid=\".\">Allows you to specify the <emph>Area type</emph> (optional) for the reference.</ahelp>"
msgstr ""
#: 04070100.xhp
msgctxt ""
"04070100.xhp\n"
"par_id3155416\n"
-"16\n"
"help.text"
msgid "Defines additional options related to the type of reference area."
msgstr "指定其他关于引用区域类型的选项。"
@@ -50366,7 +47092,6 @@ msgstr "指定其他关于引用区域类型的选项。"
msgctxt ""
"04070100.xhp\n"
"hd_id3150716\n"
-"17\n"
"help.text"
msgid "Print range"
msgstr "打印区域"
@@ -50375,16 +47100,14 @@ msgstr "打印区域"
msgctxt ""
"04070100.xhp\n"
"par_id3150751\n"
-"18\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/definename/printarea\">Defines the area as a print range.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/definename/printarea\">将区域定义为打印区域。</ahelp>"
+msgid "<ahelp hid=\".\">Defines the area as a print range.</ahelp>"
+msgstr ""
#: 04070100.xhp
msgctxt ""
"04070100.xhp\n"
"hd_id3153764\n"
-"19\n"
"help.text"
msgid "Filter"
msgstr "筛选器"
@@ -50393,16 +47116,14 @@ msgstr "筛选器"
msgctxt ""
"04070100.xhp\n"
"par_id3155766\n"
-"20\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/definename/filter\">Defines the selected area to be used in an <link href=\"text/scalc/01/12040300.xhp\" name=\"advanced filter\">advanced filter</link>.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/definename/filter\">将选定区域定义为在<link href=\"text/scalc/01/12040300.xhp\" name=\"高级筛选器\">高级筛选器</link>中使用。</ahelp>"
+msgid "<ahelp hid=\".\">Defines the selected area to be used in an <link href=\"text/scalc/01/12040300.xhp\" name=\"advanced filter\">advanced filter</link>.</ahelp>"
+msgstr ""
#: 04070100.xhp
msgctxt ""
"04070100.xhp\n"
"hd_id3159267\n"
-"21\n"
"help.text"
msgid "Repeat column"
msgstr "重复的列"
@@ -50411,16 +47132,14 @@ msgstr "重复的列"
msgctxt ""
"04070100.xhp\n"
"par_id3149565\n"
-"22\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/definename/colheader\">Defines the area as a repeating column.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/definename/colheader\">将区域定义为重复的列。</ahelp>"
+msgid "<ahelp hid=\".\">Defines the area as a repeating column.</ahelp>"
+msgstr ""
#: 04070100.xhp
msgctxt ""
"04070100.xhp\n"
"hd_id3153966\n"
-"23\n"
"help.text"
msgid "Repeat row"
msgstr "重复的行"
@@ -50429,59 +47148,62 @@ msgstr "重复的行"
msgctxt ""
"04070100.xhp\n"
"par_id3150300\n"
-"24\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/definename/rowheader\">Defines the area as a repeating row.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/definename/rowheader\">将区域定义为重复的行。</ahelp>"
+msgid "<ahelp hid=\".\">Defines the area as a repeating row.</ahelp>"
+msgstr ""
#: 04070100.xhp
msgctxt ""
"04070100.xhp\n"
"hd_id3155112\n"
-"27\n"
"help.text"
-msgid "Add/Modify"
-msgstr "添加/修改"
+msgid "Add"
+msgstr ""
#: 04070100.xhp
msgctxt ""
"04070100.xhp\n"
"par_id3159236\n"
-"28\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/managenamesdialog/add\">Click the <emph>Add</emph> button to add the defined name to the list. Click the <emph>Modify</emph> button to enter another name for an already existing name selected from the list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/managenamesdialog/add\">单击<emph>添加</emph>按钮将定义的名称添加到列表中。单击<emph>修改</emph>按钮为列表中选定的现有名称输入其他名称。</ahelp>"
+msgid "<ahelp hid=\".\">Click the <emph>Add</emph> button to add a new defined name.</ahelp>"
+msgstr ""
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3150301\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/managenamesdialog/names\" visibility=\"hidden\">Select a named range or named formula from the list to modify its properties.</ahelp>"
+msgstr ""
#: 04070200.xhp
msgctxt ""
"04070200.xhp\n"
"tit\n"
"help.text"
-msgid "Insert Name"
-msgstr "插入名称"
+msgid "Paste Names"
+msgstr ""
#: 04070200.xhp
msgctxt ""
"04070200.xhp\n"
"bm_id3153195\n"
"help.text"
-msgid "<bookmark_value>cell ranges; inserting named ranges</bookmark_value><bookmark_value>inserting; cell ranges</bookmark_value>"
-msgstr "<bookmark_value>单元格区域;插入已命名区域</bookmark_value><bookmark_value>插入;单元格区域</bookmark_value>"
+msgid "<bookmark_value>cell ranges; inserting named ranges</bookmark_value><bookmark_value>inserting; cell ranges</bookmark_value> <bookmark_value>pasting; cell ranges</bookmark_value>"
+msgstr ""
#: 04070200.xhp
msgctxt ""
"04070200.xhp\n"
"hd_id3153195\n"
-"1\n"
"help.text"
-msgid "Insert Name"
-msgstr "插入名称"
+msgid "Paste Names"
+msgstr ""
#: 04070200.xhp
msgctxt ""
"04070200.xhp\n"
"par_id3150011\n"
-"2\n"
"help.text"
msgid "<variable id=\"nameneinfuegentext\"><ahelp hid=\".uno:InsertName\">Inserts a defined named cell range at the current cursor's position.</ahelp></variable>"
msgstr "<variable id=\"nameneinfuegentext\"><ahelp hid=\".uno:InsertName\">在当前光标位置插入一个已定义名称的单元格区域。</ahelp></variable>"
@@ -50490,7 +47212,6 @@ msgstr "<variable id=\"nameneinfuegentext\"><ahelp hid=\".uno:InsertName\">在
msgctxt ""
"04070200.xhp\n"
"par_id3149412\n"
-"7\n"
"help.text"
msgid "You can only insert a cell area after having defined a name for the area."
msgstr "前提是在插入名称前,必须已经为该区域指定名称。"
@@ -50499,37 +47220,49 @@ msgstr "前提是在插入名称前,必须已经为该区域指定名称。"
msgctxt ""
"04070200.xhp\n"
"hd_id3153160\n"
-"3\n"
"help.text"
-msgid "Insert name"
-msgstr "插入名称"
+msgid "Table area"
+msgstr ""
#: 04070200.xhp
msgctxt ""
"04070200.xhp\n"
"par_id3154944\n"
-"4\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NAMES_PASTE:LB_ENTRYLIST\">Lists all defined cell areas. Double-click an entry to insert the named area into the active sheet at the current cursor position.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NAMES_PASTE:LB_ENTRYLIST\">列出所有已定义的单元格区域。双击条目可以将已命名区域插入到当前工作表中光标所在处。</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/insertname/ctrl\">Lists all defined cell areas. Double-click an entry to insert the named area into the active sheet at the current cursor position.</ahelp>"
+msgstr ""
#: 04070200.xhp
msgctxt ""
"04070200.xhp\n"
"hd_id3153418\n"
-"5\n"
"help.text"
-msgid "Insert All"
-msgstr "插入全部"
+msgid "Paste All"
+msgstr ""
#: 04070200.xhp
msgctxt ""
"04070200.xhp\n"
"par_id3155066\n"
-"6\n"
"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_NAMES_PASTE:BTN_ADD\">Inserts a list of all named areas and the corresponding cell references at the current cursor position.</ahelp>"
-msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_NAMES_PASTE:BTN_ADD\">将含有所有已命名区域及其相关单元格引用的列表插入到当前光标所在处。</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/insertname/pasteall\">Inserts a list of all named areas and the corresponding cell references at the current cursor position.</ahelp>"
+msgstr ""
+
+#: 04070200.xhp
+msgctxt ""
+"04070200.xhp\n"
+"hd_id3153419\n"
+"help.text"
+msgid "Paste"
+msgstr ""
+
+#: 04070200.xhp
+msgctxt ""
+"04070200.xhp\n"
+"par_id3155067\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/insertname/paste\">Inserts the selected named area and the corresponding cell reference at the current cursor position.</ahelp>"
+msgstr ""
#: 04070300.xhp
msgctxt ""
@@ -50551,7 +47284,6 @@ msgstr "<bookmark_value>单元格区域;自动创建名称</bookmark_value><book
msgctxt ""
"04070300.xhp\n"
"hd_id3147264\n"
-"1\n"
"help.text"
msgid "Creating Names"
msgstr "创建名称"
@@ -50560,7 +47292,6 @@ msgstr "创建名称"
msgctxt ""
"04070300.xhp\n"
"par_id3153969\n"
-"2\n"
"help.text"
msgid "<variable id=\"namenuebernehmentext\"><ahelp hid=\".uno:CreateNames\">Allows you to automatically name multiple cell ranges.</ahelp></variable>"
msgstr "<variable id=\"namenuebernehmentext\"><ahelp hid=\".uno:CreateNames\">可用于自动命名多个单元格区域。</ahelp></variable>"
@@ -50569,7 +47300,6 @@ msgstr "<variable id=\"namenuebernehmentext\"><ahelp hid=\".uno:CreateNames\">
msgctxt ""
"04070300.xhp\n"
"par_id3156280\n"
-"13\n"
"help.text"
msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Sheet - Named Ranges and Expressions - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
msgstr ""
@@ -50578,7 +47308,6 @@ msgstr ""
msgctxt ""
"04070300.xhp\n"
"hd_id3151116\n"
-"3\n"
"help.text"
msgid "Create names from"
msgstr "建立名称自"
@@ -50587,7 +47316,6 @@ msgstr "建立名称自"
msgctxt ""
"04070300.xhp\n"
"par_id3152597\n"
-"4\n"
"help.text"
msgid "Defines which part of the spreadsheet is to be used for creating the name."
msgstr "确定采用工作表的哪个部分来建立名称。"
@@ -50596,7 +47324,6 @@ msgstr "确定采用工作表的哪个部分来建立名称。"
msgctxt ""
"04070300.xhp\n"
"hd_id3153729\n"
-"5\n"
"help.text"
msgid "Top row"
msgstr "首行"
@@ -50605,7 +47332,6 @@ msgstr "首行"
msgctxt ""
"04070300.xhp\n"
"par_id3149263\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/createnamesdialog/top\">Creates the range names from the header row of the selected range.</ahelp> Each column receives a separated name and cell reference."
msgstr "<ahelp hid=\"modules/scalc/ui/createnamesdialog/top\">从选定区域的标题行创建区域名称。</ahelp> 每列都接收单独的名称和单元格引用。"
@@ -50614,7 +47340,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/createnamesdialog/top\">从选定区域的
msgctxt ""
"04070300.xhp\n"
"hd_id3146984\n"
-"7\n"
"help.text"
msgid "Left Column"
msgstr "左列"
@@ -50623,7 +47348,6 @@ msgstr "左列"
msgctxt ""
"04070300.xhp\n"
"par_id3153190\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/createnamesdialog/left\">Creates the range names from the entries in the first column of the selected sheet range.</ahelp> Each row receives a separated name and cell reference."
msgstr "<ahelp hid=\"modules/scalc/ui/createnamesdialog/left\">从选定工作表区域第一列中的条目创建区域名称。</ahelp> 每行都接收单独的名称和单元格引用。"
@@ -50632,7 +47356,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/createnamesdialog/left\">从选定工作
msgctxt ""
"04070300.xhp\n"
"hd_id3156284\n"
-"9\n"
"help.text"
msgid "Bottom row"
msgstr "末行"
@@ -50641,7 +47364,6 @@ msgstr "末行"
msgctxt ""
"04070300.xhp\n"
"par_id3147124\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/createnamesdialog/bottom\">Creates the range names from the entries in the last row of the selected sheet range.</ahelp> Each column receives a separated name and cell reference."
msgstr "<ahelp hid=\"modules/scalc/ui/createnamesdialog/bottom\">从选定工作表范围的最后一行中的条目创建区域名称。</ahelp> 每列都接收单独的名称和单元格引用。"
@@ -50650,7 +47372,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/createnamesdialog/bottom\">从选定工作
msgctxt ""
"04070300.xhp\n"
"hd_id3154731\n"
-"11\n"
"help.text"
msgid "Right Column"
msgstr "右列"
@@ -50659,7 +47380,6 @@ msgstr "右列"
msgctxt ""
"04070300.xhp\n"
"par_id3153158\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/createnamesdialog/right\">Creates the range names from the entries in the last column of the selected sheet range.</ahelp> Each row receives a separated name and cell reference."
msgstr "<ahelp hid=\"modules/scalc/ui/createnamesdialog/right\">从选定工作表区域最后一列中的条目创建区域名称。</ahelp> 每行都接收单独的名称和单元格引用。"
@@ -50684,7 +47404,6 @@ msgstr "<bookmark_value>工作表;定义标签区域</bookmark_value><bookmark_v
msgctxt ""
"04070400.xhp\n"
"hd_id3150791\n"
-"1\n"
"help.text"
msgid "<variable id=\"define_label_range\"><link href=\"text/scalc/01/04070400.xhp\">Define Label Range</link></variable>"
msgstr "<variable id=\"define_label_range\"><link href=\"text/scalc/01/04070400.xhp\">定义标签区域</link></variable>"
@@ -50693,7 +47412,6 @@ msgstr "<variable id=\"define_label_range\"><link href=\"text/scalc/01/04070400.
msgctxt ""
"04070400.xhp\n"
"par_id3150868\n"
-"2\n"
"help.text"
msgid "<variable id=\"beschtext\"><ahelp hid=\".uno:DefineLabelRange\">Opens a dialog in which you can define a label range.</ahelp></variable>"
msgstr "<variable id=\"beschtext\"><ahelp hid=\".uno:DefineLabelRange\">打开一个对话框,在其中可以定义标签区域。</ahelp></variable>"
@@ -50702,7 +47420,6 @@ msgstr "<variable id=\"beschtext\"><ahelp hid=\".uno:DefineLabelRange\">打开
msgctxt ""
"04070400.xhp\n"
"par_id3155411\n"
-"13\n"
"help.text"
msgid "The cell contents of a label range can be used like names in formulas - $[officename] recognizes these names in the same manner that it does the predefined names of the weekdays and months. These names are automatically completed when typed into a formula. In addition, the names defined by label ranges will have priority over names defined by automatically generated ranges."
msgstr "数据标志区域的单元格内容可作为名称用在公式中 - $[officename] 能象识别预设的工作日和月份一样识别这些名称。这些名称在输入到公式中时将自动补充完整。此外,数据标志区域定义的名称具有的优先度高于自动生成区域定义的名称。"
@@ -50711,7 +47428,6 @@ msgstr "数据标志区域的单元格内容可作为名称用在公式中 - $[o
msgctxt ""
"04070400.xhp\n"
"par_id3147435\n"
-"14\n"
"help.text"
msgid "You can set label ranges that contain the same labels on different sheets. $[officename] first searches the label ranges of the current sheet and, following a failed search, the ranges of other sheets."
msgstr "可以定义多个不同工作表中包含相同标签的标签区域。在这种情况下,$[officename] 首先检查当前工作表中的区域,搜索失败后检查其他工作表区域。"
@@ -50720,7 +47436,6 @@ msgstr "可以定义多个不同工作表中包含相同标签的标签区域。
msgctxt ""
"04070400.xhp\n"
"hd_id3145801\n"
-"3\n"
"help.text"
msgid "Range"
msgstr "区域"
@@ -50729,7 +47444,6 @@ msgstr "区域"
msgctxt ""
"04070400.xhp\n"
"par_id3154731\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/namerangesdialog/edassign\">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=\"modules/scalc/ui/namerangesdialog/edassign\">显示每个标签区域的单元格引用。</ahelp>要从列表框中删除标签区域,请选择该区域然后单击<emph>删除</emph>。"
@@ -50738,7 +47452,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/namerangesdialog/edassign\">显示每个
msgctxt ""
"04070400.xhp\n"
"hd_id3149121\n"
-"5\n"
"help.text"
msgid "Contains column labels"
msgstr "含有列标签"
@@ -50747,7 +47460,6 @@ msgstr "含有列标签"
msgctxt ""
"04070400.xhp\n"
"par_id3150330\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/namerangesdialog/colhead\">Includes column labels in the current label range.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/namerangesdialog/colhead\">在当前标签区域中包含列标签。</ahelp>"
@@ -50756,7 +47468,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/namerangesdialog/colhead\">在当前标签
msgctxt ""
"04070400.xhp\n"
"hd_id3149020\n"
-"7\n"
"help.text"
msgid "Contains row labels"
msgstr "含有行标签"
@@ -50765,7 +47476,6 @@ msgstr "含有行标签"
msgctxt ""
"04070400.xhp\n"
"par_id3154754\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/namerangesdialog/rowhead\">Includes row labels in the current label range.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/namerangesdialog/rowhead\">在当前标签区域中包含行标签。</ahelp>"
@@ -50774,7 +47484,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/namerangesdialog/rowhead\">在当前标签
msgctxt ""
"04070400.xhp\n"
"hd_id3159264\n"
-"11\n"
"help.text"
msgid "For data range"
msgstr "用于数据区域"
@@ -50783,7 +47492,6 @@ msgstr "用于数据区域"
msgctxt ""
"04070400.xhp\n"
"par_id3154703\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/namerangesdialog/edassign2\">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=\"modules/scalc/ui/namerangesdialog/edassign2\">设置选定标签区域有效的数据区域。要修改此区域,请在工作表中单击,并用鼠标选择其他区域。</ahelp>"
@@ -50792,7 +47500,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/namerangesdialog/edassign2\">设置选定
msgctxt ""
"04070400.xhp\n"
"hd_id3145789\n"
-"9\n"
"help.text"
msgid "Add"
msgstr "添加"
@@ -50801,7 +47508,6 @@ msgstr "添加"
msgctxt ""
"04070400.xhp\n"
"par_id3147005\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/namerangesdialog/add\">Adds the current label range to the list.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/namerangesdialog/add\">将当前标签区域添加到列表中。</ahelp>"
@@ -50815,7 +47521,6 @@ msgid "Function List"
msgstr "函数列表"
#: 04080000.xhp
-#, fuzzy
msgctxt ""
"04080000.xhp\n"
"bm_id3154126\n"
@@ -50832,7 +47537,6 @@ msgid "<variable id=\"function_list_title\"><link href=\"text/scalc/01/04080000.
msgstr ""
#: 04080000.xhp
-#, fuzzy
msgctxt ""
"04080000.xhp\n"
"par_id3151118\n"
@@ -50841,7 +47545,6 @@ msgid "<variable id=\"function_list_text\"><ahelp hid=\"HID_SC_FUNCTIONLIST\">Op
msgstr "<variable id=\"funktionslistetext\"><ahelp hid=\"HID_SC_FUNCTIONLIST\">此命令将打开<emph>函数列表</emph>窗口,其中列出了可以插入到文档中的所有函数。</ahelp></variable> 此<emph>函数列表</emph>窗口与<link href=\"text/scalc/01/04060000.xhp\" name=\"函数向导\">函数向导</link>中的<emph>函数</emph>选项卡页面类似。通过函数列表插入的函数含有占位符,在插入时,需要用相应的数值替换这些占位符。"
#: 04080000.xhp
-#, fuzzy
msgctxt ""
"04080000.xhp\n"
"par_id3152576\n"
@@ -50850,7 +47553,6 @@ msgid "The <emph>Function List</emph> window is a resizable <link href=\"text/sh
msgstr "<emph>函数列表</emph>窗口是一个可调整大小且<link href=\"text/shared/00/00000005.xhp#andocken\" name=\"可停靠的窗口\">可停靠的窗口</link>。用于在电子表格中快速输入函数。通过双击函数列表中的条目,相应的函数及其参数将被直接输入。"
#: 04080000.xhp
-#, fuzzy
msgctxt ""
"04080000.xhp\n"
"hd_id3145799\n"
@@ -50859,7 +47561,6 @@ msgid "Category List"
msgstr "类别列表"
#: 04080000.xhp
-#, fuzzy
msgctxt ""
"04080000.xhp\n"
"hd_id3153160\n"
@@ -50876,7 +47577,6 @@ msgid "<ahelp hid=\"modules/scalc/ui/functionpanel/funclist\">Displays the avail
msgstr ""
#: 04080000.xhp
-#, fuzzy
msgctxt ""
"04080000.xhp\n"
"hd_id3146971\n"
@@ -50885,7 +47585,6 @@ msgid "Insert Function into calculation sheet"
msgstr "向计算工作表中插入函数"
#: 04080000.xhp
-#, fuzzy
msgctxt ""
"04080000.xhp\n"
"par_id3150043\n"
@@ -50913,7 +47612,6 @@ msgstr "链接外部数据"
msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">找到含有要插入的数据的文件。</ahelp>"
@@ -50922,7 +47620,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\
msgctxt ""
"04090000.xhp\n"
"hd_id3145785\n"
-"3\n"
"help.text"
msgid "<link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\">Link to External Data</link>"
msgstr "<link href=\"text/scalc/01/04090000.xhp\" name=\"外部数据\">链接外部数据</link>"
@@ -50931,7 +47628,6 @@ msgstr "<link href=\"text/scalc/01/04090000.xhp\" name=\"外部数据\">链接
msgctxt ""
"04090000.xhp\n"
"par_id3149262\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertExternalDataSourc\">Inserts data from an HTML, Calc, or Excel file into the current sheet as a link. The data must be located within a named range.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertExternalDataSourc\">将 HTML、Calc 或 Excel 文件中的数据作为链接插入到当前工作表中。这些数据必须位于已命名区域内。</ahelp>"
@@ -50940,7 +47636,6 @@ msgstr "<ahelp hid=\".uno:InsertExternalDataSourc\">将 HTML、Calc 或 Excel
msgctxt ""
"04090000.xhp\n"
"hd_id3146984\n"
-"5\n"
"help.text"
msgid "URL of external data source."
msgstr "外部数据源的 URL。"
@@ -50949,7 +47644,6 @@ msgstr "外部数据源的 URL。"
msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/url\">输入含有要插入数据的 URL 或文件名,然后按 Enter 键。</ahelp>"
@@ -50958,7 +47652,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/url\">输入含有要插入
msgctxt ""
"04090000.xhp\n"
"hd_id3145251\n"
-"7\n"
"help.text"
msgid "Available tables/ranges"
msgstr "可用的表格/区域"
@@ -50967,7 +47660,6 @@ msgstr "可用的表格/区域"
msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">选择要插入的表格或数据区域。</ahelp>"
@@ -50976,7 +47668,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">选择要插入的
msgctxt ""
"04090000.xhp\n"
"hd_id3154492\n"
-"9\n"
"help.text"
msgid "Update every"
msgstr "更新时间间隔"
@@ -50985,7 +47676,6 @@ msgstr "更新时间间隔"
msgctxt ""
"04090000.xhp\n"
"par_id3154017\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/externaldata/delay\">Enter the number of seconds to wait before the external data are reloaded into the current document.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/delay\">输入在当前文档中加载外部数据之前等待的时间(以秒为单位)。</ahelp>"
@@ -51010,7 +47700,6 @@ msgstr "<bookmark_value>单元格属性</bookmark_value><bookmark_value>属性;
msgctxt ""
"05020000.xhp\n"
"hd_id3148663\n"
-"1\n"
"help.text"
msgid "Format Cells"
msgstr "单元格格式"
@@ -51019,7 +47708,6 @@ msgstr "单元格格式"
msgctxt ""
"05020000.xhp\n"
"par_id3150448\n"
-"2\n"
"help.text"
msgid "<variable id=\"zellattributetext\"><ahelp hid=\".uno:FormatCellDialog\">Allows you to specify a variety of formatting options and to apply attributes to the selected cells.</ahelp></variable>"
msgstr "<variable id=\"zellattributetext\"><ahelp hid=\".uno:FormatCellDialog\">用于指定各种格式选项并对选定的单元格应用属性。</ahelp></variable>"
@@ -51028,7 +47716,6 @@ msgstr "<variable id=\"zellattributetext\"><ahelp hid=\".uno:FormatCellDialog\">
msgctxt ""
"05020000.xhp\n"
"hd_id3145785\n"
-"3\n"
"help.text"
msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"数字\">数字</link>"
@@ -51037,7 +47724,6 @@ msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"数字\">数字</link>
msgctxt ""
"05020000.xhp\n"
"hd_id3146119\n"
-"4\n"
"help.text"
msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>"
msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"字体\">字体</link>"
@@ -51054,7 +47740,6 @@ msgstr "单元格保护"
msgctxt ""
"05020600.xhp\n"
"hd_id3145119\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/05020600.xhp\" name=\"Cell Protection\">Cell Protection</link>"
msgstr "<link href=\"text/scalc/01/05020600.xhp\" name=\"单元格保护\">单元格保护</link>"
@@ -51063,7 +47748,6 @@ msgstr "<link href=\"text/scalc/01/05020600.xhp\" name=\"单元格保护\">单
msgctxt ""
"05020600.xhp\n"
"par_id3150398\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/CellProtectionPage\">Defines protection options for selected cells.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/CellProtectionPage\">定义选定单元格的保护选项。</ahelp>"
@@ -51072,7 +47756,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/CellProtectionPage\">
msgctxt ""
"05020600.xhp\n"
"hd_id3150447\n"
-"3\n"
"help.text"
msgid "Protection"
msgstr "保护"
@@ -51081,7 +47764,6 @@ msgstr "保护"
msgctxt ""
"05020600.xhp\n"
"hd_id3125864\n"
-"9\n"
"help.text"
msgid "Hide all"
msgstr "全部隐藏"
@@ -51090,7 +47772,6 @@ msgstr "全部隐藏"
msgctxt ""
"05020600.xhp\n"
"par_id3153768\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHideAll\">Hides formulas and contents of the selected cells.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHideAll\">隐藏选定单元格的公式和内容。</ahelp>"
@@ -51099,7 +47780,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHideAll\">隐藏
msgctxt ""
"05020600.xhp\n"
"hd_id3153190\n"
-"5\n"
"help.text"
msgid "Protected"
msgstr "已保护"
@@ -51108,7 +47788,6 @@ msgstr "已保护"
msgctxt ""
"05020600.xhp\n"
"par_id3151119\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkProtected\">Prevents the selected cells from being modified.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkProtected\">防止选定单元格被修改。</ahelp>"
@@ -51125,7 +47804,6 @@ msgstr ""
msgctxt ""
"05020600.xhp\n"
"hd_id3149377\n"
-"7\n"
"help.text"
msgid "Hide formula"
msgstr "隐藏公式"
@@ -51134,7 +47812,6 @@ msgstr "隐藏公式"
msgctxt ""
"05020600.xhp\n"
"par_id3154510\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHideFormula\">Hides formulas in the selected cells.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHideFormula\">隐藏选定单元格中的公式。</ahelp>"
@@ -51143,7 +47820,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHideFormula\">隐
msgctxt ""
"05020600.xhp\n"
"hd_id3155602\n"
-"11\n"
"help.text"
msgid "Print"
msgstr "打印"
@@ -51152,7 +47828,6 @@ msgstr "打印"
msgctxt ""
"05020600.xhp\n"
"par_id3153836\n"
-"12\n"
"help.text"
msgid "Defines print options for the sheet."
msgstr "定义工作表的打印选项。"
@@ -51161,7 +47836,6 @@ msgstr "定义工作表的打印选项。"
msgctxt ""
"05020600.xhp\n"
"hd_id3155065\n"
-"13\n"
"help.text"
msgid "Hide when printing"
msgstr "打印时隐藏"
@@ -51170,7 +47844,6 @@ msgstr "打印时隐藏"
msgctxt ""
"05020600.xhp\n"
"par_id3155443\n"
-"14\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHidePrinting\">Keeps the selected cells from being printed.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHidePrinting\">防止打印选定单元格。</ahelp>"
@@ -51187,7 +47860,6 @@ msgstr "行"
msgctxt ""
"05030000.xhp\n"
"hd_id3147228\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/05030000.xhp\" name=\"Row\">Row</link>"
msgstr "<link href=\"text/scalc/01/05030000.xhp\" name=\"行\">行</link>"
@@ -51196,7 +47868,6 @@ msgstr "<link href=\"text/scalc/01/05030000.xhp\" name=\"行\">行</link>"
msgctxt ""
"05030000.xhp\n"
"par_id3154685\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the row height and hides or shows selected rows.</ahelp>"
msgstr "<ahelp hid=\".\">设置行高以及隐藏或显示选定的行。</ahelp>"
@@ -51205,7 +47876,6 @@ msgstr "<ahelp hid=\".\">设置行高以及隐藏或显示选定的行。</ahelp
msgctxt ""
"05030000.xhp\n"
"hd_id3155132\n"
-"3\n"
"help.text"
msgid "<link href=\"text/shared/01/05340100.xhp\" name=\"Height\">Height</link>"
msgstr "<link href=\"text/shared/01/05340100.xhp\" name=\"高度\">高度</link>"
@@ -51214,7 +47884,6 @@ msgstr "<link href=\"text/shared/01/05340100.xhp\" name=\"高度\">高度</link>
msgctxt ""
"05030000.xhp\n"
"hd_id3155854\n"
-"4\n"
"help.text"
msgid "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimal Height\">Optimal Height</link>"
msgstr "<link href=\"text/scalc/01/05030200.xhp\" name=\"最佳高度\">最佳高度</link>"
@@ -51239,7 +47908,6 @@ msgstr "<bookmark_value>工作表;最佳行高</bookmark_value><bookmark_value>
msgctxt ""
"05030200.xhp\n"
"hd_id3148491\n"
-"1\n"
"help.text"
msgid "Optimal Row Heights"
msgstr "最佳行高"
@@ -51248,7 +47916,6 @@ msgstr "最佳行高"
msgctxt ""
"05030200.xhp\n"
"par_id3154758\n"
-"2\n"
"help.text"
msgid "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalRowHeight\">Determines the optimal row height for the selected rows.</ahelp></variable> The optimal row height depends on the font size of the largest character in the row. You can use various <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"units of measure\">units of measure</link>."
msgstr "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalRowHeight\">确定选定行的最佳行高。</ahelp></variable>最佳行高取决于选定行中最大字符的字体大小。您可以使用各种不同的<link href=\"text/shared/00/00000003.xhp#metrik\" name=\"度量单位\">度量单位</link>。"
@@ -51257,7 +47924,6 @@ msgstr "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalRowHeight\">确定
msgctxt ""
"05030200.xhp\n"
"hd_id3154908\n"
-"3\n"
"help.text"
msgid "Add"
msgstr "添加"
@@ -51266,7 +47932,6 @@ msgstr "添加"
msgctxt ""
"05030200.xhp\n"
"par_id3151044\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/optimalrowheightdialog/value\">Sets additional spacing between the largest character in a row and the cell boundaries.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/optimalrowheightdialog/value\">设置行中最大字符和单元格边框之间的附加间距。</ahelp>"
@@ -51275,7 +47940,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/optimalrowheightdialog/value\">设置行
msgctxt ""
"05030200.xhp\n"
"hd_id3150439\n"
-"5\n"
"help.text"
msgid "Default value"
msgstr "默认值"
@@ -51284,7 +47948,6 @@ msgstr "默认值"
msgctxt ""
"05030200.xhp\n"
"par_id3146984\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/optimalrowheightdialog/default\">Restores the default value for the optimal row height.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/optimalrowheightdialog/default\">恢复最适合行高的默认值。</ahelp>"
@@ -51309,7 +47972,6 @@ msgstr "<bookmark_value>电子表格;隐藏函数</bookmark_value><bookmark_valu
msgctxt ""
"05030300.xhp\n"
"hd_id3147265\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/05030300.xhp\" name=\"Hide\">Hide</link>"
msgstr "<link href=\"text/scalc/01/05030300.xhp\" name=\"隐藏\">隐藏</link>"
@@ -51318,7 +47980,6 @@ msgstr "<link href=\"text/scalc/01/05030300.xhp\" name=\"隐藏\">隐藏</link>"
msgctxt ""
"05030300.xhp\n"
"par_id3156281\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:Hide\">Hides selected rows, columns or individual sheets.</ahelp>"
msgstr "<ahelp hid=\".uno:Hide\">隐藏所选的行、列或各个工作表。</ahelp>"
@@ -51327,7 +47988,6 @@ msgstr "<ahelp hid=\".uno:Hide\">隐藏所选的行、列或各个工作表。</
msgctxt ""
"05030300.xhp\n"
"par_id3148645\n"
-"3\n"
"help.text"
msgid "Select the rows or columns that you want to hide, and then choose <emph>Format - Row - Hide </emph>or<emph> Format - Column - Hide</emph>."
msgstr "选择需要隐藏的行或列,然后选择<emph>格式 - 行 - 隐藏</emph>或者<emph>格式 - 列 - 隐藏</emph>。"
@@ -51336,7 +47996,6 @@ msgstr "选择需要隐藏的行或列,然后选择<emph>格式 - 行 - 隐藏
msgctxt ""
"05030300.xhp\n"
"par_id3147427\n"
-"6\n"
"help.text"
msgid "You can hide a sheet by selecting the sheet tab and then choosing <emph>Format - Sheet - Hide</emph>. Hidden sheets are not printed unless they occur within a <link href=\"text/scalc/01/05080000.xhp\" name=\"print range\">print range</link>."
msgstr "您可以通过选择工作表标签,然后选择<emph>格式 - 工作表 - 隐藏</emph>来隐藏工作表。如果隐藏的工作表不属于指定的<link href=\"text/scalc/01/05080000.xhp\" name=\"打印区域\">打印区域</link>内,则不会被打印出来。"
@@ -51345,7 +48004,6 @@ msgstr "您可以通过选择工作表标签,然后选择<emph>格式 - 工作
msgctxt ""
"05030300.xhp\n"
"par_id3153157\n"
-"5\n"
"help.text"
msgid "A break in the row or column header indicates whether the row or column is hidden."
msgstr "行标或列标中的中断符指示行或列是否被隐藏。"
@@ -51354,7 +48012,6 @@ msgstr "行标或列标中的中断符指示行或列是否被隐藏。"
msgctxt ""
"05030300.xhp\n"
"par_id3145251\n"
-"4\n"
"help.text"
msgid "To display hidden rows, columns or sheets"
msgstr "显示隐藏的行、列或工作表。"
@@ -51395,7 +48052,6 @@ msgstr "<bookmark_value>电子表格;显示列</bookmark_value><bookmark_value>
msgctxt ""
"05030400.xhp\n"
"hd_id3147264\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/05030400.xhp\" name=\"Show\">Show</link>"
msgstr "<link href=\"text/scalc/01/05030400.xhp\" name=\"显示\">显示</link>"
@@ -51404,7 +48060,6 @@ msgstr "<link href=\"text/scalc/01/05030400.xhp\" name=\"显示\">显示</link>"
msgctxt ""
"05030400.xhp\n"
"par_id3150447\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:ShowColumn\">Choose this command to show previously hidden rows or columns.</ahelp>"
msgstr "<ahelp hid=\".uno:ShowColumn\">选择此命令可以重新显示隐藏的行或列。</ahelp>"
@@ -51413,7 +48068,6 @@ msgstr "<ahelp hid=\".uno:ShowColumn\">选择此命令可以重新显示隐藏
msgctxt ""
"05030400.xhp\n"
"par_id3155131\n"
-"3\n"
"help.text"
msgid "To show a column or row, select the range of rows or columns containing the hidden elements, then choose <emph>Format - Row - Show</emph> or <emph>Format - Column - Show</emph>."
msgstr "要显示隐藏的行或列,请选择含有隐藏元素的行或列区域,然后选择<emph>格式 - 行 - 显示</emph>或<emph>格式 - 列 - 显示</emph>。"
@@ -51422,7 +48076,6 @@ msgstr "要显示隐藏的行或列,请选择含有隐藏元素的行或列区
msgctxt ""
"05030400.xhp\n"
"par_id3155132\n"
-"4\n"
"help.text"
msgid "For example, to show the column B, click on the header of the column A, expand the selection to the column C, then chose <emph>Format - Column - Show</emph>. To show the column A previously hidden, click on the header of the column B, keep the mouse button pressed and drag on the left. The selected range displayed in the name area changes from B1:B1048576 to A1:B1048576. Choose <emph>Format - Column - Show</emph>. Proceed the same way with rows."
msgstr "例如,要显示B列,请单击A列的列标签,然后扩展选区到C列,然后选择<emph>格式 - 列 - 显示</emph>。如果A列之前被隐藏,而现在想要让其显示,请选择B列的列标签,不要松开鼠标,继续向左拖动。名称区域显示的已选择区域从 B1:B1048576 变为了 A1:B1048576。然后选择<emph>格式 - 列 - 显示</emph>。若要显示隐藏的行,操作方法类似。"
@@ -51431,7 +48084,6 @@ msgstr "例如,要显示B列,请单击A列的列标签,然后扩展选区
msgctxt ""
"05030400.xhp\n"
"par_id3145748\n"
-"5\n"
"help.text"
msgid "To show all hidden cells, first click in the field in the upper left corner. This selects all cells of the table."
msgstr "要显示所有隐藏的单元格,首先请单击左上角的区域,这会选择表格的所有单元格。"
@@ -51448,7 +48100,6 @@ msgstr "列"
msgctxt ""
"05040000.xhp\n"
"hd_id3155628\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/05040000.xhp\" name=\"Column\">Column</link>"
msgstr "<link href=\"text/scalc/01/05040000.xhp\" name=\"列\">列</link>"
@@ -51457,7 +48108,6 @@ msgstr "<link href=\"text/scalc/01/05040000.xhp\" name=\"列\">列</link>"
msgctxt ""
"05040000.xhp\n"
"par_id3148946\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the column width and hides or shows selected columns.</ahelp>"
msgstr "<ahelp hid=\".\">设置列宽以及隐藏或显示选定的列。</ahelp>"
@@ -51466,7 +48116,6 @@ msgstr "<ahelp hid=\".\">设置列宽以及隐藏或显示选定的列。</ahelp
msgctxt ""
"05040000.xhp\n"
"hd_id3150398\n"
-"3\n"
"help.text"
msgid "<link href=\"text/shared/01/05340200.xhp\" name=\"Width\">Width</link>"
msgstr "<link href=\"text/shared/01/05340200.xhp\" name=\"宽度\">宽度</link>"
@@ -51475,7 +48124,6 @@ msgstr "<link href=\"text/shared/01/05340200.xhp\" name=\"宽度\">宽度</link>
msgctxt ""
"05040000.xhp\n"
"hd_id3145171\n"
-"4\n"
"help.text"
msgid "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimal Width\">Optimal Width</link>"
msgstr "<link href=\"text/scalc/01/05040200.xhp\" name=\"最佳宽度\">最佳宽度</link>"
@@ -51500,7 +48148,6 @@ msgstr "<bookmark_value>电子表格;最佳列宽</bookmark_value><bookmark_valu
msgctxt ""
"05040200.xhp\n"
"hd_id3155628\n"
-"1\n"
"help.text"
msgid "Optimal Column Width"
msgstr "最佳列宽"
@@ -51509,7 +48156,6 @@ msgstr "最佳列宽"
msgctxt ""
"05040200.xhp\n"
"par_id3145068\n"
-"2\n"
"help.text"
msgid "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalColumnWidthDi\">Defines the optimal column width for selected columns.</ahelp></variable> The optimal column width depends on the longest entry within a column. You can choose from the available <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"measurement units\">measurement units</link>."
msgstr "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalColumnWidthDi\">指定选定列的最佳列宽。</ahelp></variable>最佳列宽取决于列中最长的条目,您可以选择可用的<link href=\"text/shared/00/00000003.xhp#metrik\" name=\"度量单位\">度量单位</link>。"
@@ -51518,7 +48164,6 @@ msgstr "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalColumnWidthDi\">
msgctxt ""
"05040200.xhp\n"
"hd_id3150767\n"
-"3\n"
"help.text"
msgid "Add"
msgstr "添加"
@@ -51527,7 +48172,6 @@ msgstr "添加"
msgctxt ""
"05040200.xhp\n"
"par_id3150449\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/optimalcolwidthdialog/value\">Defines additional spacing between the longest entry in a column and the vertical column borders.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/optimalcolwidthdialog/value\">指定列中最长的条目与垂直列边框之间的附加间距。</ahelp>"
@@ -51536,7 +48180,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/optimalcolwidthdialog/value\">指定列中
msgctxt ""
"05040200.xhp\n"
"hd_id3145785\n"
-"5\n"
"help.text"
msgid "Default value"
msgstr "默认值"
@@ -51545,7 +48188,6 @@ msgstr "默认值"
msgctxt ""
"05040200.xhp\n"
"par_id3146120\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/optimalcolwidthdialog/default\">Defines the optimal column width in order to display the entire contents of the column.</ahelp> The additional spacing for the optimal column width is preset to 0.1 in."
msgstr "<ahelp hid=\"modules/scalc/ui/optimalcolwidthdialog/default\">定义最佳列宽,完整地显示列中的内容。</ahelp>最佳列宽的附加间距预设为 0.1 英寸。"
@@ -51570,7 +48212,6 @@ msgstr "<bookmark_value>CTL;从右向左工作表</bookmark_value><bookmark_valu
msgctxt ""
"05050000.xhp\n"
"hd_id3155923\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/05050000.xhp\" name=\"Sheet\">Sheet</link>"
msgstr "<link href=\"text/scalc/01/05050000.xhp\" name=\"工作表\">工作表</link>"
@@ -51579,7 +48220,6 @@ msgstr "<link href=\"text/scalc/01/05050000.xhp\" name=\"工作表\">工作表</
msgctxt ""
"05050000.xhp\n"
"par_id3154758\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the sheet name and hides or shows selected sheets.</ahelp>"
msgstr "<ahelp hid=\".\">设置工作表名称以及隐藏或显示选定的工作表。</ahelp>"
@@ -51588,7 +48228,6 @@ msgstr "<ahelp hid=\".\">设置工作表名称以及隐藏或显示选定的工
msgctxt ""
"05050000.xhp\n"
"hd_id3156280\n"
-"3\n"
"help.text"
msgid "<link href=\"text/scalc/01/05050100.xhp\" name=\"Rename\">Rename</link>"
msgstr "<link href=\"text/scalc/01/05050100.xhp\" name=\"重命名\">重命名</link>"
@@ -51597,7 +48236,6 @@ msgstr "<link href=\"text/scalc/01/05050100.xhp\" name=\"重命名\">重命名</
msgctxt ""
"05050000.xhp\n"
"hd_id3145787\n"
-"4\n"
"help.text"
msgid "<link href=\"text/scalc/01/05050300.xhp\" name=\"Show\">Show</link>"
msgstr "<link href=\"text/scalc/01/05050300.xhp\" name=\"显示\">显示</link>"
@@ -51606,7 +48244,6 @@ msgstr "<link href=\"text/scalc/01/05050300.xhp\" name=\"显示\">显示</link>"
msgctxt ""
"05050000.xhp\n"
"par_id3150542\n"
-"5\n"
"help.text"
msgid "If a sheet has been hidden, the Show Sheet dialog opens, which allows you to select a sheet to be shown again."
msgstr "如果已隐藏工作表,则会打开“显示工作表”对话框,以便选择要重新显示的工作表。"
@@ -51647,7 +48284,6 @@ msgstr "<bookmark_value>工作表名称</bookmark_value><bookmark_value>修改;
msgctxt ""
"05050100.xhp\n"
"hd_id3147336\n"
-"1\n"
"help.text"
msgid "Rename Sheet"
msgstr "重命名工作表"
@@ -51656,7 +48292,6 @@ msgstr "重命名工作表"
msgctxt ""
"05050100.xhp\n"
"par_id3150792\n"
-"2\n"
"help.text"
msgid "<variable id=\"umbenennentext\"><ahelp hid=\".uno:RenameTable\">This command opens a dialog where you can assign a different name to the current sheet.</ahelp></variable>"
msgstr "<variable id=\"umbenennentext\"><ahelp hid=\".uno:RenameTable\">此命令将打开一个对话框,可以在其中为当前工作表重新指定名称。</ahelp></variable>"
@@ -51665,7 +48300,6 @@ msgstr "<variable id=\"umbenennentext\"><ahelp hid=\".uno:RenameTable\">此命
msgctxt ""
"05050100.xhp\n"
"hd_id3153968\n"
-"3\n"
"help.text"
msgid "Name"
msgstr "名称"
@@ -51682,7 +48316,6 @@ msgstr "<ahelp hid=\"HID_SC_APPEND_NAME\">在此处为工作表输入一个新
msgctxt ""
"05050100.xhp\n"
"par_id3153092\n"
-"5\n"
"help.text"
msgid "You can also open the<emph> Rename Sheet </emph>dialog through the context menu by positioning the mouse pointer over a sheet tab at the bottom of the window and <switchinline select=\"sys\"><caseinline select=\"MAC\">clicking while pressing Control</caseinline><defaultinline>clicking the right mouse button</defaultinline></switchinline>."
msgstr "您也可以通过上下文菜单打开<emph>重命名工作表</emph>对话框,方法是将鼠标指针移到窗口底部的工作表标签上,<switchinline select=\"sys\"><caseinline select=\"MAC\">在按住 Control 键的同时单击</caseinline><defaultinline>单击鼠标右键</defaultinline></switchinline>。"
@@ -51691,7 +48324,6 @@ msgstr "您也可以通过上下文菜单打开<emph>重命名工作表</emph>
msgctxt ""
"05050100.xhp\n"
"par_id3147396\n"
-"6\n"
"help.text"
msgid "Alternatively, click the sheet tab while pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Alt</defaultinline></switchinline> key. Now you can change the name directly. <switchinline select=\"sys\"><caseinline select=\"UNIX\"><embedvar href=\"text/shared/00/00000099.xhp#winmanager\"/></caseinline></switchinline>"
msgstr "或者,按住 <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Alt</defaultinline></switchinline> 键的同时单击工作表标签。现在您就可以直接更改名称了。<switchinline select=\"sys\"><caseinline select=\"UNIX\"><embedvar href=\"text/shared/00/00000099.xhp#winmanager\"/></caseinline></switchinline>"
@@ -51716,13 +48348,11 @@ msgstr "<bookmark_value>工作表; 显示</bookmark_value><bookmark_value>显示
msgctxt ""
"05050300.xhp\n"
"hd_id3148946\n"
-"1\n"
"help.text"
msgid "Show Sheet"
msgstr "显示工作表"
#: 05050300.xhp
-#, fuzzy
msgctxt ""
"05050300.xhp\n"
"par_id3148799\n"
@@ -51734,7 +48364,6 @@ msgstr "<variable id=\"tabeintext\"><ahelp visibility=\"visible\" hid=\".uno:Sho
msgctxt ""
"05050300.xhp\n"
"hd_id3151112\n"
-"3\n"
"help.text"
msgid "Hidden sheets"
msgstr "隐藏工作表"
@@ -51743,7 +48372,6 @@ msgstr "隐藏工作表"
msgctxt ""
"05050300.xhp\n"
"par_id3145273\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/whowsheetdialog/ShowSheetDialog\" 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=\"modules/scalc/ui/whowsheetdialog/ShowSheetDialog\" visibility=\"visible\">显示电子表格文档中所有隐藏的工作表列表。</ahelp>要显示某个工作表,请单击列表中相应的条目并单击“确定”进行确认。"
@@ -51760,7 +48388,6 @@ msgstr "合并并居中单元格"
msgctxt ""
"05060000.xhp\n"
"hd_id3149785\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/05060000.xhp\" name=\"Merge and Center Cells\">Merge and Center Cells</link>"
msgstr "<link href=\"text/scalc/01/05060000.xhp\" name=\"合并并居中单元格\">合并并居中单元格</link>"
@@ -51769,7 +48396,6 @@ msgstr "<link href=\"text/scalc/01/05060000.xhp\" name=\"合并并居中单元
msgctxt ""
"05060000.xhp\n"
"par_id3151246\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">Combines the selected cells into a single cell or splits merged cells. Aligns cell content centered.</ahelp>"
msgstr "<ahelp hid=\".\">将选中单元格合并为一个,或拆分已合并的单元格。单元格内容居中排列。</ahelp>"
@@ -51778,7 +48404,6 @@ msgstr "<ahelp hid=\".\">将选中单元格合并为一个,或拆分已合并
msgctxt ""
"05060000.xhp\n"
"par_id3154020\n"
-"18\n"
"help.text"
msgid "Choose <emph>Format - Merge Cells - Merge and Center Cells</emph>"
msgstr "选择 <emph>格式 - 合并单元格 - 合并并居中单元格</emph>"
@@ -51787,7 +48412,6 @@ msgstr "选择 <emph>格式 - 合并单元格 - 合并并居中单元格</emph>"
msgctxt ""
"05060000.xhp\n"
"par_id3148552\n"
-"4\n"
"help.text"
msgid "The merged cell receives the name of the first cell of the original cell range. Merged cells cannot be merged a second time with other cells. The range must form a rectangle, multiple selection is not supported."
msgstr "合并后的单元格地址取自合并前单元格区域第一个单元格的地址。合并后的单元格不能再与其它单元格进行合并。单元格区域只能是一个矩形。"
@@ -51796,7 +48420,6 @@ msgstr "合并后的单元格地址取自合并前单元格区域第一个单元
msgctxt ""
"05060000.xhp\n"
"par_id3149665\n"
-"3\n"
"help.text"
msgid "If the cells to be merged have any contents, a security dialog is shown."
msgstr "如果要合并的单元格包含内容,将显示一个警告对话框。"
@@ -51853,7 +48476,6 @@ msgstr "页面样式"
msgctxt ""
"05070000.xhp\n"
"hd_id3157910\n"
-"1\n"
"help.text"
msgid "Page Style"
msgstr "页面样式"
@@ -51862,7 +48484,6 @@ msgstr "页面样式"
msgctxt ""
"05070000.xhp\n"
"par_id3156023\n"
-"2\n"
"help.text"
msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:PageFormatDialog\" visibility=\"visible\">Opens a dialog where you can define the appearance of all pages in your document.</ahelp></variable>"
msgstr "<variable id=\"seitetext\"><ahelp hid=\".uno:PageFormatDialog\" visibility=\"visible\">将打开一个对话框,用于指定文档中所有页面的外观。</ahelp></variable>"
@@ -51887,7 +48508,6 @@ msgstr "<bookmark_value>页面; 打印时的顺序</bookmark_value><bookmark_val
msgctxt ""
"05070500.xhp\n"
"hd_id3156329\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/05070500.xhp\" name=\"Sheet\">Sheet</link>"
msgstr "<link href=\"text/scalc/01/05070500.xhp\" name=\"工作表\">工作表</link>"
@@ -51896,7 +48516,6 @@ msgstr "<link href=\"text/scalc/01/05070500.xhp\" name=\"工作表\">工作表</
msgctxt ""
"05070500.xhp\n"
"par_id3151384\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/SheetPrintPage\">Specifies the elements to be included in the printout of all sheets with the current Page Style. Additionally, you can set the print order, the first page number, and the page scale.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/SheetPrintPage\">指定采用当前页面样式的所有工作表的打印输出中要包含的元素。另外,您可以设置打印顺序、首页页码和页面比例。</ahelp>"
@@ -51905,7 +48524,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/SheetPrintPage\">指定采
msgctxt ""
"05070500.xhp\n"
"hd_id3150542\n"
-"3\n"
"help.text"
msgid "Print"
msgstr "打印"
@@ -51914,7 +48532,6 @@ msgstr "打印"
msgctxt ""
"05070500.xhp\n"
"par_id3125863\n"
-"4\n"
"help.text"
msgid "Defines which elements of the spreadsheet are to be printed."
msgstr "定义要打印的电子表格元素。"
@@ -51923,7 +48540,6 @@ msgstr "定义要打印的电子表格元素。"
msgctxt ""
"05070500.xhp\n"
"hd_id3151041\n"
-"5\n"
"help.text"
msgid "Column and row headers"
msgstr "行标题和列标题"
@@ -51932,7 +48548,6 @@ msgstr "行标题和列标题"
msgctxt ""
"05070500.xhp\n"
"par_id3147228\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_HEADER\">Specifies whether you want the column and row headers to be printed.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_HEADER\">指定是否要打印列标题和行标题。</ahelp>"
@@ -51941,17 +48556,14 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_HEADER\">指定是
msgctxt ""
"05070500.xhp\n"
"hd_id3150439\n"
-"7\n"
"help.text"
msgid "Grid"
msgstr "网格"
#: 05070500.xhp
-#, fuzzy
msgctxt ""
"05070500.xhp\n"
"par_id3147436\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_GRID\">Prints out the borders of the individual cells as a grid.</ahelp> For the view on screen, make your choice under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc</emph> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"View\"><emph>View</emph></link> - <emph>Grid lines</emph>."
msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_GRID\">将各个单元格的边框作为网格打印。</ahelp>要在屏幕上显示网格,请在 <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - 首选项</caseinline><defaultinline>工具 - 选项</defaultinline></switchinline> - %PRODUCTNAME Calc</emph> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"View\"><emph>视图</emph></link> - <emph>网格线</emph>下选择。"
@@ -51960,7 +48572,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_GRID\">将各个
msgctxt ""
"05070500.xhp\n"
"hd_id3145750\n"
-"9\n"
"help.text"
msgid "Comments"
msgstr "批注"
@@ -51969,7 +48580,6 @@ msgstr "批注"
msgctxt ""
"05070500.xhp\n"
"par_id3150010\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_NOTES\">Prints the comments defined in your spreadsheet.</ahelp> They will be printed on a separate page, along with the corresponding cell reference."
msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_NOTES\">打印电子表格中定义的批注。</ahelp>批注将与相应的单元格引用打印在单独的页面上。"
@@ -51978,7 +48588,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_NOTES\">打印电
msgctxt ""
"05070500.xhp\n"
"hd_id3154944\n"
-"11\n"
"help.text"
msgid "Objects/images"
msgstr "对象/图像"
@@ -51987,7 +48596,6 @@ msgstr "对象/图像"
msgctxt ""
"05070500.xhp\n"
"par_id3149581\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_OBJECTS\">Includes all inserted objects (if printable) and graphics with the printed document.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_OBJECTS\">在打印的文档中包括所有插入的对象(如果可打印)和图形。</ahelp>"
@@ -51996,7 +48604,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_OBJECTS\">在打
msgctxt ""
"05070500.xhp\n"
"hd_id3149377\n"
-"13\n"
"help.text"
msgid "Charts"
msgstr "图表"
@@ -52005,7 +48612,6 @@ msgstr "图表"
msgctxt ""
"05070500.xhp\n"
"par_id3148455\n"
-"14\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_CHARTS\">Prints the charts that have been inserted into your spreadsheet.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_CHARTS\">打印插入电子表格中的图表。</ahelp>"
@@ -52014,7 +48620,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_CHARTS\">打印插
msgctxt ""
"05070500.xhp\n"
"hd_id3153418\n"
-"15\n"
"help.text"
msgid "Drawing Objects"
msgstr "绘图对象"
@@ -52023,7 +48628,6 @@ msgstr "绘图对象"
msgctxt ""
"05070500.xhp\n"
"par_id3149122\n"
-"16\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_DRAWINGS\">Includes all drawing objects in the printed document.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_DRAWINGS\">在打印的文档中包括所有绘图对象。</ahelp>"
@@ -52032,7 +48636,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_DRAWINGS\">在打
msgctxt ""
"05070500.xhp\n"
"hd_id3150330\n"
-"17\n"
"help.text"
msgid "Formulas"
msgstr "公式"
@@ -52041,7 +48644,6 @@ msgstr "公式"
msgctxt ""
"05070500.xhp\n"
"par_id3153715\n"
-"18\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_FORMULAS\">Prints the formulas contained in the cells, instead of the results.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_FORMULAS\">打印单元格中的公式而不是结果。</ahelp>"
@@ -52050,7 +48652,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_FORMULAS\">打印
msgctxt ""
"05070500.xhp\n"
"hd_id3156385\n"
-"19\n"
"help.text"
msgid "Zero Values"
msgstr "零值"
@@ -52059,7 +48660,6 @@ msgstr "零值"
msgctxt ""
"05070500.xhp\n"
"par_id3149258\n"
-"20\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_NULLVALS\">Specifies that cells with a zero value are printed.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_NULLVALS\">指定打印含有零值的单元格。</ahelp>"
@@ -52068,7 +48668,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_NULLVALS\">指定
msgctxt ""
"05070500.xhp\n"
"hd_id3154022\n"
-"21\n"
"help.text"
msgid "Page Order"
msgstr "页面顺序"
@@ -52077,7 +48676,6 @@ msgstr "页面顺序"
msgctxt ""
"05070500.xhp\n"
"par_id3166423\n"
-"22\n"
"help.text"
msgid "Defines the order in which data in a sheet is numbered and printed when it does not fit on one printed page."
msgstr "定义当工作表中的数据无法打印在一张纸上时多页打印的顺序。"
@@ -52086,7 +48684,6 @@ msgstr "定义当工作表中的数据无法打印在一张纸上时多页打印
msgctxt ""
"05070500.xhp\n"
"hd_id3152580\n"
-"23\n"
"help.text"
msgid "Top to bottom, then right"
msgstr "从上向下,再向右"
@@ -52095,7 +48692,6 @@ msgstr "从上向下,再向右"
msgctxt ""
"05070500.xhp\n"
"par_id3150205\n"
-"24\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/radioBTN_TOPDOWN\">Prints vertically from the left column to the bottom of the sheet.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/radioBTN_TOPDOWN\">按照自左列至工作表底部的顺序垂直打印。</ahelp>"
@@ -52104,7 +48700,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/radioBTN_TOPDOWN\">按照
msgctxt ""
"05070500.xhp\n"
"hd_id3150786\n"
-"25\n"
"help.text"
msgid "Left to right, then down"
msgstr "从左向右,再向下"
@@ -52113,7 +48708,6 @@ msgstr "从左向右,再向下"
msgctxt ""
"05070500.xhp\n"
"par_id3154657\n"
-"26\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/radioBTN_LEFTRIGHT\">Prints horizontally from the top row of the sheet to the right column.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/radioBTN_LEFTRIGHT\">按照从工作表顶行到右列的顺序水平打印。</ahelp>"
@@ -52122,7 +48716,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/radioBTN_LEFTRIGHT\">按照
msgctxt ""
"05070500.xhp\n"
"hd_id3150887\n"
-"27\n"
"help.text"
msgid "First page number"
msgstr "第一个页码"
@@ -52131,7 +48724,6 @@ msgstr "第一个页码"
msgctxt ""
"05070500.xhp\n"
"par_id3155378\n"
-"28\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_PAGENO\">Select this option if you want the first page to start with a number other than 1.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_PAGENO\">如果您希望首页的页码不是 1,则选择此选项。</ahelp>"
@@ -52140,7 +48732,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_PAGENO\">如果您
msgctxt ""
"05070500.xhp\n"
"par_id3145389\n"
-"35\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_PAGENO\">Enter the number of the first page.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_PAGENO\">输入首页的编号。</ahelp>"
@@ -52149,7 +48740,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_PAGENO\">输入首
msgctxt ""
"05070500.xhp\n"
"hd_id3146978\n"
-"29\n"
"help.text"
msgid "Scale"
msgstr "显示比例"
@@ -52158,7 +48748,6 @@ msgstr "显示比例"
msgctxt ""
"05070500.xhp\n"
"par_id3149408\n"
-"30\n"
"help.text"
msgid "Defines a page scale for the printed spreadsheet."
msgstr "指定打印的电子表格的页面显示比例。"
@@ -52176,14 +48765,13 @@ msgctxt ""
"05070500.xhp\n"
"par_idN10971\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/comboLB_SCALEMODE\">Select a scaling mode from the list box. Appropriate controls will be shown at the side of the list box.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/comboLB_SCALEMODE\">从列表框中选择缩放模式。相应的控件将显示在列表框一侧。</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/comboLB_SCALEMODE\">Select a scaling mode from the list box. Appropriate controls will be shown below the list box.</ahelp>"
+msgstr ""
#: 05070500.xhp
msgctxt ""
"05070500.xhp\n"
"hd_id3155089\n"
-"31\n"
"help.text"
msgid "Reduce/enlarge printout"
msgstr "缩小和放大打印页面"
@@ -52192,7 +48780,6 @@ msgstr "缩小和放大打印页面"
msgctxt ""
"05070500.xhp\n"
"par_id3159171\n"
-"32\n"
"help.text"
msgid "Specifies a scaling factor to scale all printed pages."
msgstr "指定缩放因子以缩放所有打印的页面。"
@@ -52209,10 +48796,9 @@ msgstr "缩放因子"
msgctxt ""
"05070500.xhp\n"
"par_id3152899\n"
-"36\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEALL\" visibility=\"hidden\">Enter a scaling factor. Factors less than 100 reduce the pages, higher factors enlarge the pages.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEALL\" visibility=\"hidden\">输入缩放因子,如果小于 100,则缩小页面,如果大于 100,则放大页面。</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEALL\">Enter a scaling factor. Factors less than 100 reduce the pages, higher factors enlarge the pages.</ahelp>"
+msgstr ""
#: 05070500.xhp
msgctxt ""
@@ -52290,7 +48876,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGEHEIGHT\">
msgctxt ""
"05070500.xhp\n"
"hd_id3148868\n"
-"33\n"
"help.text"
msgid "Fit print range(s) on number of pages"
msgstr "根据页数调整打印范围"
@@ -52299,7 +48884,6 @@ msgstr "根据页数调整打印范围"
msgctxt ""
"05070500.xhp\n"
"par_id3145074\n"
-"34\n"
"help.text"
msgid "Specifies the maximum number of pages on which every sheet with the current Page Style is to be printed. The scale will be reduced as necessary to fit the defined number of pages."
msgstr "指定每个具有当前“页面样式”的工作表要被打印成的最多页数。工作表的比例将根据需要进行缩小以适应定义的页数。"
@@ -52316,7 +48900,6 @@ msgstr "页数"
msgctxt ""
"05070500.xhp\n"
"par_id3144507\n"
-"37\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGENUM\">Enter the maximum number of pages to be printed.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGENUM\">输入要打印的最多页数。</ahelp>"
@@ -52333,7 +48916,6 @@ msgstr "打印范围"
msgctxt ""
"05080000.xhp\n"
"hd_id3154013\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/05080000.xhp\" name=\"Print Ranges\">Print Ranges</link>"
msgstr "<link href=\"text/scalc/01/05080000.xhp\" name=\"打印区域\">打印区域</link>"
@@ -52342,7 +48924,6 @@ msgstr "<link href=\"text/scalc/01/05080000.xhp\" name=\"打印区域\">打印
msgctxt ""
"05080000.xhp\n"
"par_id3155855\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">Manages print ranges. Only cells within the print ranges will be printed.</ahelp>"
msgstr "<ahelp hid=\".\">管理打印范围。打印范围之内的单元格才会被打印。</ahelp>"
@@ -52351,7 +48932,6 @@ msgstr "<ahelp hid=\".\">管理打印范围。打印范围之内的单元格才
msgctxt ""
"05080000.xhp\n"
"par_id3146119\n"
-"4\n"
"help.text"
msgid "If you do not define any print range manually, Calc assigns an automatic print range to include all the cells that are not empty."
msgstr "如果您没有手动定义任何的打印范围,则 Calc 会指定一个可包含所有非空单元格的自动打印范围。"
@@ -52360,7 +48940,6 @@ msgstr "如果您没有手动定义任何的打印范围,则 Calc 会指定一
msgctxt ""
"05080000.xhp\n"
"hd_id3154729\n"
-"3\n"
"help.text"
msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Edit\">Edit</link>"
msgstr "<link href=\"text/scalc/01/05080300.xhp\" name=\"编辑\">编辑</link>"
@@ -52377,7 +48956,6 @@ msgstr "定义"
msgctxt ""
"05080100.xhp\n"
"hd_id3145673\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/05080100.xhp\" name=\"Define\">Define</link>"
msgstr "<link href=\"text/scalc/01/05080100.xhp\" name=\"定义\">定义</link>"
@@ -52386,7 +48964,6 @@ msgstr "<link href=\"text/scalc/01/05080100.xhp\" name=\"定义\">定义</link>"
msgctxt ""
"05080100.xhp\n"
"par_id3153896\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:DefinePrintArea\">Defines an active cell or selected cell area as the print range.</ahelp>"
msgstr "<ahelp hid=\".uno:DefinePrintArea\">将活动单元格或选定单元格区域定义为打印范围。</ahelp>"
@@ -52403,7 +48980,6 @@ msgstr ""
msgctxt ""
"05080200.xhp\n"
"hd_id3153562\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/05080200.xhp\" name=\"Clear\">Clear</link>"
msgstr "<link href=\"text/scalc/01/05080200.xhp\" name=\"Clear\">清除</link>"
@@ -52412,7 +48988,6 @@ msgstr "<link href=\"text/scalc/01/05080200.xhp\" name=\"Clear\">清除</link>"
msgctxt ""
"05080200.xhp\n"
"par_id3148550\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:DeletePrintArea\">Removes the defined print area.</ahelp>"
msgstr "<ahelp hid=\".uno:DeletePrintArea\">删除定义的打印区域。</ahelp>"
@@ -52429,7 +49004,6 @@ msgstr "编辑打印范围"
msgctxt ""
"05080300.xhp\n"
"hd_id3153088\n"
-"1\n"
"help.text"
msgid "Edit Print Ranges"
msgstr "编辑打印范围"
@@ -52438,7 +49012,6 @@ msgstr "编辑打印范围"
msgctxt ""
"05080300.xhp\n"
"par_id3159488\n"
-"2\n"
"help.text"
msgid "<variable id=\"druckbereichetext\"><ahelp hid=\".uno:EditPrintArea\">Opens a dialog where you can specify the print range.</ahelp></variable> You can also set the rows or columns which are to be repeated in every page."
msgstr "<variable id=\"druckbereichetext\"><ahelp hid=\".uno:EditPrintArea\">打开一个对话框,您可以指定打印区域。</ahelp></variable>您也可以设置要在每页重复打印的行或列。"
@@ -52447,7 +49020,6 @@ msgstr "<variable id=\"druckbereichetext\"><ahelp hid=\".uno:EditPrintArea\">打
msgctxt ""
"05080300.xhp\n"
"hd_id3156281\n"
-"3\n"
"help.text"
msgid "Print range"
msgstr "打印区域"
@@ -52456,7 +49028,6 @@ msgstr "打印区域"
msgctxt ""
"05080300.xhp\n"
"par_id3147228\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/printareasdialog/edprintarea\">Allows you to modify a defined print range.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/printareasdialog/edprintarea\">用于修改自定义的打印范围。</ahelp>"
@@ -52465,7 +49036,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/printareasdialog/edprintarea\">用于修
msgctxt ""
"05080300.xhp\n"
"par_id3145174\n"
-"5\n"
"help.text"
msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Sheet - Named Ranges and Expressions - Define</emph> command, this name will be displayed and can be selected from the list box."
msgstr ""
@@ -52474,7 +49044,6 @@ msgstr ""
msgctxt ""
"05080300.xhp\n"
"par_id3145272\n"
-"6\n"
"help.text"
msgid "In the right-hand text box, you can enter a print range by reference or by name. If the cursor is in the <emph>Print range</emph> text box, you can also select the print range in the spreadsheet with your mouse."
msgstr "在右边的文字框中,您可以通过输入引用或名称来指定打印区域。如果光标位于<emph>打印区域</emph>文字框中,还可以通过鼠标在电子表格中选择打印区域。"
@@ -52483,7 +49052,6 @@ msgstr "在右边的文字框中,您可以通过输入引用或名称来指定
msgctxt ""
"05080300.xhp\n"
"hd_id3149260\n"
-"7\n"
"help.text"
msgid "Rows to repeat"
msgstr "重复的行"
@@ -52492,7 +49060,6 @@ msgstr "重复的行"
msgctxt ""
"05080300.xhp\n"
"par_id3147426\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/printareasdialog/edrepeatrow\">Choose one or more rows to print on every page. In the right text box enter the row reference, for example, \"1\" or \"$1\" or \"$2:$3\".</ahelp> The list box displays <emph>-user defined-</emph>. You can also select <emph>-none-</emph> to remove a defined repeating row."
msgstr "<ahelp hid=\"modules/scalc/ui/printareasdialog/edrepeatrow\">选择要在每页打印的行。在右边的文字框中输入行引用,例如 \"1\"、\"$1\" 或 \"$2:$3\"。</ahelp>列表框中将显示 <emph>-用户定义-</emph>。您还可以选择 <emph>-无-</emph> 来删除定义的重复行。"
@@ -52501,7 +49068,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/printareasdialog/edrepeatrow\">选择要
msgctxt ""
"05080300.xhp\n"
"par_id3155418\n"
-"9\n"
"help.text"
msgid "You can also define repeating rows by dragging the mouse in the spreadsheet, if the cursor is in the <emph>Rows to repeat</emph> text field in the dialog."
msgstr "如果光标位于对话框中的<emph>重复的行</emph>文字字段中,还可以通过在电子表格中拖动鼠标来定义重复的行。"
@@ -52510,7 +49076,6 @@ msgstr "如果光标位于对话框中的<emph>重复的行</emph>文字字段
msgctxt ""
"05080300.xhp\n"
"hd_id3149581\n"
-"10\n"
"help.text"
msgid "Columns to repeat"
msgstr "重复的列"
@@ -52519,7 +49084,6 @@ msgstr "重复的列"
msgctxt ""
"05080300.xhp\n"
"par_id3155602\n"
-"11\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/printareasdialog/edrepeatcol\">Choose one or more columns to print on every page. In the right text box enter the column reference, for example, \"A\" or \"AB\" or \"$C:$E\".</ahelp> The list box then displays <emph>-user defined-</emph>. You can also select <emph>-none-</emph> to remove a defined repeating column."
msgstr "<ahelp hid=\"modules/scalc/ui/printareasdialog/edrepeatcol\">选择要在每页打印的列。在右边的文字框中输入列引用,例如 \"A\"、\"AB\" 或 \"$C:$E\"。</ahelp>列表框中将显示 <emph>-用户定义-</emph>。您还可以选择 <emph>-无-</emph> 来删除定义的重复列。"
@@ -52528,7 +49092,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/printareasdialog/edrepeatcol\">选择要
msgctxt ""
"05080300.xhp\n"
"par_id3150749\n"
-"12\n"
"help.text"
msgid "You can also define repeating columns by dragging the mouse in the spreadsheet, if the cursor is in the <emph>Columns to repeat</emph> text field in the dialog."
msgstr "如果光标位于对话框中的<emph>重复的列</emph>文字字段中,还可以通过在电子表格中拖动鼠标来定义重复的列。"
@@ -52545,7 +49108,6 @@ msgstr "添加"
msgctxt ""
"05080400.xhp\n"
"hd_id3149457\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/05080400.xhp\" name=\"Add\">Add</link>"
msgstr "<link href=\"text/scalc/01/05080400.xhp\" name=\"添加\">添加</link>"
@@ -52554,7 +49116,6 @@ msgstr "<link href=\"text/scalc/01/05080400.xhp\" name=\"添加\">添加</link>"
msgctxt ""
"05080400.xhp\n"
"par_id3156423\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:AddPrintArea\">Adds the current selection to the defined print areas.</ahelp>"
msgstr "<ahelp hid=\".uno:AddPrintArea\">将当前选定的内容添加到已定义的打印区域中。</ahelp>"
@@ -52568,7 +49129,6 @@ msgid "Styles and Formatting"
msgstr "样式和格式"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"bm_id3150447\n"
@@ -52577,7 +49137,6 @@ msgid "<bookmark_value>Stylist, see Styles and Formatting window</bookmark_value
msgstr "<bookmark_value>样式列表; 请参阅“样式和格式”窗口</bookmark_value><bookmark_value>“样式和格式”窗口</bookmark_value><bookmark_value>格式;“样式和格式”窗口</bookmark_value><bookmark_value>格式;“样式和格式”窗口</bookmark_value><bookmark_value>油漆桶可用于应用样式</bookmark_value>"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"hd_id3150447\n"
@@ -52594,7 +49153,6 @@ msgid "Use the Styles and Formatting deck of the Sidebar to assign styles to cel
msgstr ""
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3149665\n"
@@ -52603,7 +49161,6 @@ msgid "The Styles and Formatting <link href=\"text/shared/00/00000005.xhp#andock
msgstr "样式和格式<link href=\"text/shared/00/00000005.xhp#andocken\" name=\"可固定窗口\">可固定窗口</link>可以在编辑文档时保持打开状态。"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"hd_id3150012\n"
@@ -52612,7 +49169,6 @@ msgid "How to apply a cell style:"
msgstr "如何应用单元格样式:"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3159155\n"
@@ -52621,7 +49177,6 @@ msgid "Select the cell or cell range."
msgstr "选择单元格或单元格区域。"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3145749\n"
@@ -52630,7 +49185,6 @@ msgid "Double-click the style in the Styles and Formatting window."
msgstr "双击“样式和格式”窗口中的样式。"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"hd_id3153877\n"
@@ -52639,7 +49193,6 @@ msgid "Cell Styles"
msgstr "单元格样式"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3145801\n"
@@ -52648,7 +49201,6 @@ msgid "<ahelp hid=\".\">Displays the list of the available Cell Styles for <link
msgstr "<ahelp hid=\".uno:ParaStyle\">显示可用于<link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"间接单元格格式\">间接单元格格式的单元格样式。</link></ahelp>"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3150751\n"
@@ -52657,7 +49209,6 @@ msgid "<image id=\"img_id3153714\" src=\"sc/res/sf01.png\"><alt id=\"alt_id31537
msgstr "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155754\">图标</alt></image>"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3154255\n"
@@ -52666,7 +49217,6 @@ msgid "Cell Styles"
msgstr "单元格样式"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"hd_id3153963\n"
@@ -52675,7 +49225,6 @@ msgid "Page Styles"
msgstr "页面样式"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3147003\n"
@@ -52684,16 +49233,14 @@ msgid "<ahelp hid=\".\">Displays the Page Styles available for indirect page for
msgstr "<ahelp hid=\".uno:PageStyle\">显示可用于间接页面格式化的页面样式。</ahelp>"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3159100\n"
"help.text"
-msgid "<image id=\"img_id3149814\" src=\"sw/imglst/sf04.png\"><alt id=\"alt_id3149814\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155754\">图标</alt></image>"
+msgid "<image id=\"img_id3149814\" src=\"sw/res/sf04.png\"><alt id=\"alt_id3149814\">Icon</alt></image>"
+msgstr ""
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3150361\n"
@@ -52702,7 +49249,6 @@ msgid "Page Styles"
msgstr "页面样式"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"hd_id3150202\n"
@@ -52711,16 +49257,14 @@ msgid "Fill Format Mode"
msgstr "填充模式"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3155531\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLDLG_WATERCAN\">Turns the Fill Format mode on and off. Use the paint can to assign the Style selected in the Styles and Formatting window.</ahelp>"
-msgstr "<ahelp hid=\"HID_TEMPLDLG_WATERCAN\">打开或关闭“填充模式”。使用油漆桶可指定在“样式和格式”窗口中选定的样式。</ahelp>"
+msgid "<ahelp hid=\"SFX2_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 ""
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3155087\n"
@@ -52729,7 +49273,6 @@ msgid "<image id=\"img_id3153068\" src=\"cmd/sc_fillstyle.png\"><alt id=\"alt_id
msgstr "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155754\">图标</alt></image>"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3156198\n"
@@ -52738,7 +49281,6 @@ msgid "Fill Format Mode"
msgstr "填充模式"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"hd_id3148870\n"
@@ -52747,7 +49289,6 @@ msgid "How to apply a new style with the paint can:"
msgstr "如何使用油漆桶应用新样式:"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3145078\n"
@@ -52756,7 +49297,6 @@ msgid "Select the desired style from the Styles and Formatting window."
msgstr "从“样式和格式”窗口中选择所需的样式。"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3159098\n"
@@ -52765,7 +49305,6 @@ msgid "Click the <emph>Fill Format Mode</emph> icon."
msgstr "单击<emph>填充模式</emph>图标。"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3148609\n"
@@ -52774,7 +49313,6 @@ msgid "Click a cell to format it, or drag your mouse over a certain range to for
msgstr "单击要格式化的单元格,或用鼠标拖过某个区域对整个区域进行格式化。对其他单元格或区域重复执行此操作。"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3149438\n"
@@ -52783,7 +49321,6 @@ msgid "Click the <emph>Fill Format Mode</emph> icon again to exit this mode."
msgstr "再次单击<emph>填充模式</emph>可退出此模式。"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"hd_id3153975\n"
@@ -52792,16 +49329,14 @@ msgid "New Style from Selection"
msgstr "选中的新样式"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3149499\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLDLG_NEWBYEXAMPLE\">Creates a new style based on the formatting of a selected object.</ahelp> Assign a name for the style in the <link href=\"text/shared/01/05140100.xhp\" name=\"Create Style\">Create Style</link> dialog."
-msgstr "<ahelp hid=\"HID_TEMPLDLG_NEWBYEXAMPLE\">使用选定对象的格式生成新样式。</ahelp> 在<link href=\"text/shared/01/05140100.xhp\" name=\"创建样式\">创建样式</link>对话框中指定样式的名称。"
+msgid "<ahelp hid=\"SFX2_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 ""
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3150050\n"
@@ -52810,7 +49345,6 @@ msgid "<image id=\"img_id3154649\" src=\"cmd/sc_stylenewbyexample.png\"><alt id=
msgstr "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155754\">图标</alt></image>"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3146963\n"
@@ -52819,7 +49353,6 @@ msgid "New Style from Selection"
msgstr "选中的新样式"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"hd_id3153813\n"
@@ -52828,16 +49361,14 @@ msgid "Update Style"
msgstr "更新样式"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3154707\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLDLG_UPDATEBYEXAMPLE\">Updates the Style selected in the Styles and Formatting window with the current formatting of the selected object.</ahelp>"
-msgstr "<ahelp hid=\"HID_TEMPLDLG_UPDATEBYEXAMPLE\">用选定对象的当前格式来更新在“样式和格式”窗口中选择的样式。</ahelp>"
+msgid "<ahelp hid=\"SFX2_HID_TEMPLDLG_UPDATEBYEXAMPLE\">Updates the Style selected in the Styles and Formatting window with the current formatting of the selected object.</ahelp>"
+msgstr ""
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3145118\n"
@@ -52846,7 +49377,6 @@ msgid "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\"><alt
msgstr "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155754\">图标</alt></image>"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3147501\n"
@@ -52867,8 +49397,8 @@ msgctxt ""
"05100000.xhp\n"
"par_idN109C2\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLATE_FMT\">Displays the list of the styles from the selected style category.</ahelp>"
-msgstr "<ahelp hid=\"HID_TEMPLATE_FMT\">显示选定样式类别中的样式列表。</ahelp>"
+msgid "<ahelp hid=\"SFX2_HID_TEMPLATE_FMT\">Displays the list of the styles from the selected style category.</ahelp>"
+msgstr ""
#: 05100000.xhp
msgctxt ""
@@ -52879,7 +49409,6 @@ msgid "In the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"con
msgstr "在<link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"上下文菜单\">上下文菜单</link>中,您可以选择命令以新建样式、删除自定义样式或修改选定的样式。"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"hd_id3149053\n"
@@ -52888,13 +49417,12 @@ msgid "Style Groups"
msgstr "样式组"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3147299\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLATE_FILTER\">Lists the available style groups.</ahelp>"
-msgstr "<ahelp hid=\"HID_TEMPLATE_FILTER\">列出可用的样式组合。</ahelp>"
+msgid "<ahelp hid=\"SFX2_HID_TEMPLATE_FILTER\">Lists the available style groups.</ahelp>"
+msgstr ""
#: 05100100.xhp
msgctxt ""
@@ -52972,7 +49500,6 @@ msgstr "自动套用格式"
msgctxt ""
"05110000.xhp\n"
"hd_id3149666\n"
-"1\n"
"help.text"
msgid "<variable id=\"autoformat\"><link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">AutoFormat</link></variable>"
msgstr "<variable id=\"autoformat\"><link href=\"text/scalc/01/05110000.xhp\" name=\"自动套用格式\">自动套用格式</link></variable>"
@@ -52981,7 +49508,6 @@ msgstr "<variable id=\"autoformat\"><link href=\"text/scalc/01/05110000.xhp\" na
msgctxt ""
"05110000.xhp\n"
"par_id3145367\n"
-"2\n"
"help.text"
msgid "<variable id=\"autoformattext\"><ahelp hid=\".\">Use this command to apply an AutoFormat to a selected sheet area or to define your own AutoFormats.</ahelp></variable>"
msgstr "<variable id=\"autoformattext\"><ahelp hid=\".\">此命令用于对选定的工作表区域应用自动套用格式,或者定义自己的自动套用格式。</ahelp></variable>"
@@ -52990,7 +49516,6 @@ msgstr "<variable id=\"autoformattext\"><ahelp hid=\".\">此命令用于对选
msgctxt ""
"05110000.xhp\n"
"hd_id3148455\n"
-"3\n"
"help.text"
msgid "Format"
msgstr "格式"
@@ -52999,7 +49524,6 @@ msgstr "格式"
msgctxt ""
"05110000.xhp\n"
"par_id3145799\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/autoformattable/formatlb\">Choose a predefined AutoFormat to apply to a selected area in your sheet.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/formatlb\">选择预定义的“自动套用格式”,以应用到工作表中选定的区域。</ahelp>"
@@ -53008,7 +49532,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/formatlb\">选择预定义
msgctxt ""
"05110000.xhp\n"
"hd_id3149410\n"
-"5\n"
"help.text"
msgid "Add"
msgstr "添加"
@@ -53017,7 +49540,6 @@ msgstr "添加"
msgctxt ""
"05110000.xhp\n"
"par_id3154017\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/autoformattable/add\">Allows you to add the current formatting of a range of at least 4 x 4 cells to the list of predefined AutoFormats.</ahelp> The <link href=\"text/shared/01/05150101.xhp\" name=\"Add AutoFormat\">Add AutoFormat</link> dialog then appears."
msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/add\">可将大于或等于 4 x 4 个单元格的当前格式加入到预定义的自动套用格式列表中。</ahelp> 将显示<link href=\"text/shared/01/05150101.xhp\" name=\"添加自动套用格式\">添加自动套用格式</link>对话框。"
@@ -53026,7 +49548,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/add\">可将大于或等
msgctxt ""
"05110000.xhp\n"
"par_id3153708\n"
-"29\n"
"help.text"
msgid "<ahelp hid=\"HID_SC_AUTOFMT_NAME\">Enter a name and click <emph>OK</emph>. </ahelp>"
msgstr "<ahelp hid=\"HID_SC_AUTOFMT_NAME\">输入名称,然后单击<emph>确定</emph>。 </ahelp>"
@@ -53035,7 +49556,6 @@ msgstr "<ahelp hid=\"HID_SC_AUTOFMT_NAME\">输入名称,然后单击<emph>确
msgctxt ""
"05110000.xhp\n"
"hd_id3155961\n"
-"9\n"
"help.text"
msgid "Formatting"
msgstr "格式化"
@@ -53044,7 +49564,6 @@ msgstr "格式化"
msgctxt ""
"05110000.xhp\n"
"par_id3153965\n"
-"10\n"
"help.text"
msgid "In this section you can select or deselect the available formatting options. If you want to keep any of the settings currently in your spreadsheet, deselect the corresponding option."
msgstr "可在此区域选择或取消选择可用的格式化选项。如果要保留工作表中当前的设置,请取消选择相应的选项。"
@@ -53053,7 +49572,6 @@ msgstr "可在此区域选择或取消选择可用的格式化选项。如果要
msgctxt ""
"05110000.xhp\n"
"hd_id3154021\n"
-"11\n"
"help.text"
msgid "Number format"
msgstr "数字格式"
@@ -53062,7 +49580,6 @@ msgstr "数字格式"
msgctxt ""
"05110000.xhp\n"
"par_id3159239\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/autoformattable/numformatcb\">When marked, specifies that you want to retain the number format of the selected format.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/numformatcb\">标记后,表示要保留选定格式所采用的数字格式。</ahelp>"
@@ -53071,7 +49588,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/numformatcb\">标记后,
msgctxt ""
"05110000.xhp\n"
"hd_id3149530\n"
-"13\n"
"help.text"
msgid "Borders"
msgstr "边框"
@@ -53080,7 +49596,6 @@ msgstr "边框"
msgctxt ""
"05110000.xhp\n"
"par_id3145259\n"
-"14\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/autoformattable/bordercb\">When marked, specifies that you want to retain the border of the selected format.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/bordercb\">选中时,表示要保留选定格式的边框。</ahelp>"
@@ -53089,7 +49604,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/bordercb\">选中时,表
msgctxt ""
"05110000.xhp\n"
"hd_id3154657\n"
-"15\n"
"help.text"
msgid "Font"
msgstr "字体"
@@ -53098,7 +49612,6 @@ msgstr "字体"
msgctxt ""
"05110000.xhp\n"
"par_id3152990\n"
-"16\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/autoformattable/fontcb\">When marked, specifies that you want to retain the font of the selected format.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/fontcb\">选中时,表示要保留选定格式所应用的字体。</ahelp>"
@@ -53107,7 +49620,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/fontcb\">选中时,表
msgctxt ""
"05110000.xhp\n"
"hd_id3155379\n"
-"17\n"
"help.text"
msgid "Pattern"
msgstr "图案"
@@ -53116,7 +49628,6 @@ msgstr "图案"
msgctxt ""
"05110000.xhp\n"
"par_id3150368\n"
-"18\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/autoformattable/patterncb\">When marked, specifies that you want to retain the pattern of the selected format.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/patterncb\">选中时,表示要保留选定格式所应用的图案。</ahelp>"
@@ -53125,7 +49636,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/patterncb\">选中时,
msgctxt ""
"05110000.xhp\n"
"hd_id3146115\n"
-"19\n"
"help.text"
msgid "Alignment"
msgstr "对齐方式"
@@ -53134,7 +49644,6 @@ msgstr "对齐方式"
msgctxt ""
"05110000.xhp\n"
"par_id3156445\n"
-"20\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/autoformattable/alignmentcb\">When marked, specifies that you want to retain the alignment of the selected format.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/alignmentcb\">标记时,指定要保留选定格式的对齐方式。</ahelp>"
@@ -53143,7 +49652,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/alignmentcb\">标记时,
msgctxt ""
"05110000.xhp\n"
"hd_id3155811\n"
-"21\n"
"help.text"
msgid "AutoFit width and height"
msgstr "自动调整宽度和高度"
@@ -53152,7 +49660,6 @@ msgstr "自动调整宽度和高度"
msgctxt ""
"05110000.xhp\n"
"par_id3148703\n"
-"22\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/autoformattable/autofitcb\">When marked, specifies that you want to retain the width and height of the selected cells of the selected format.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/autofitcb\">选中时,表示要保留选定格式的单元格所应用的宽度和高度。</ahelp>"
@@ -53161,7 +49668,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/autofitcb\">选中时,
msgctxt ""
"05110000.xhp\n"
"hd_id3159223\n"
-"26\n"
"help.text"
msgid "Rename"
msgstr "重命名"
@@ -53170,7 +49676,6 @@ msgstr "重命名"
msgctxt ""
"05110000.xhp\n"
"par_id3153064\n"
-"27\n"
"help.text"
msgid "<ahelp hid=\"HID_SC_RENAME_AUTOFMT\">Opens a dialog where you can change the specification of the selected AutoFormat.</ahelp> The button is only visible if you clicked the <emph>More</emph> button."
msgstr "<ahelp hid=\"HID_SC_RENAME_AUTOFMT\">打开一个对话框,您可以修改选定的“自动套用格式”的设置。</ahelp>只有在单击<emph>更多</emph>按钮之后,该按钮才可见。"
@@ -53179,7 +49684,6 @@ msgstr "<ahelp hid=\"HID_SC_RENAME_AUTOFMT\">打开一个对话框,您可以
msgctxt ""
"05110000.xhp\n"
"par_id3153912\n"
-"28\n"
"help.text"
msgid "The <emph>Rename AutoFormat</emph> dialog opens.<ahelp hid=\"HID_SC_REN_AFMT_NAME\"> Enter the new name of the AutoFormat here.</ahelp>"
msgstr "<emph>重命名自动套用格式</emph>对话框打开。<ahelp hid=\"HID_SC_REN_AFMT_NAME\">在此处输入新的自动套用格式名称。</ahelp>"
@@ -53188,7 +49692,6 @@ msgstr "<emph>重命名自动套用格式</emph>对话框打开。<ahelp hid=\"H
msgctxt ""
"05110000.xhp\n"
"hd_id3155264\n"
-"23\n"
"help.text"
msgid "More"
msgstr "更多"
@@ -53197,7 +49700,6 @@ msgstr "更多"
msgctxt ""
"05110000.xhp\n"
"par_id3159094\n"
-"24\n"
"help.text"
msgid "Closes the <emph>Formatting</emph> options section, if it is currently open."
msgstr "如果<emph>格式化</emph>选项当前处于打开状态,请将其关闭。"
@@ -53214,7 +49716,6 @@ msgstr "条件格式"
msgctxt ""
"05120000.xhp\n"
"hd_id3155132\n"
-"1\n"
"help.text"
msgid "Conditional Formatting"
msgstr "条件格式"
@@ -53223,7 +49724,6 @@ msgstr "条件格式"
msgctxt ""
"05120000.xhp\n"
"par_id3163710\n"
-"2\n"
"help.text"
msgid "<variable id=\"bedingtetext\"><ahelp hid=\".uno:ConditionalFormatDialog\">Choose <emph>Conditional Formatting</emph> to define format styles depending on certain conditions.</ahelp></variable> If a style was already assigned to a cell, it remains unchanged. The style entered here is then evaluated. There are several types of conditional formatting that can be used."
msgstr "<variable id=\"bedingtetext\"><ahelp hid=\".uno:ConditionalFormatDialog\">选择 <emph>条件格式</emph> 来根据特定的条件设定样式。</ahelp></variable> 如果一个样式已经被指定给了某个单元格,它不会改变。在此输入的样式将会被评估。有多个类型的条件格式可供使用。"
@@ -53237,7 +49737,6 @@ msgid "You can enter several conditions that query the contents of cell values o
msgstr "您可以输入多个条件,这些条件查询单元格的值或者公式。条件将被逐个进行评估。若第一个条件被满足,设定的样式将会被使用。否则,条件2将会被评估,它设定的样式将会被使用。若该样式不满足,则下一个条件将会被评估,以此反复。"
#: 05120000.xhp
-#, fuzzy
msgctxt ""
"05120000.xhp\n"
"par_id2414014\n"
@@ -53577,7 +50076,6 @@ msgstr "<bookmark_value>电子表格中的自动连字符</bookmark_value><bookm
msgctxt ""
"06020000.xhp\n"
"hd_id3159399\n"
-"1\n"
"help.text"
msgid "Hyphenation"
msgstr "连字符"
@@ -53586,7 +50084,6 @@ msgstr "连字符"
msgctxt ""
"06020000.xhp\n"
"par_id3145068\n"
-"2\n"
"help.text"
msgid "<variable id=\"silben\"><ahelp hid=\".uno:Hyphenate\">The <emph>Hyphenation </emph>command calls the dialog for setting the hyphenation in $[officename] Calc.</ahelp></variable>"
msgstr "<variable id=\"silben\"><ahelp hid=\".uno:Hyphenate\"><emph>连字符</emph>命令可以打开一个对话框,用于设置 $[officename] Calc 中的连字符。</ahelp></variable>"
@@ -53595,7 +50092,6 @@ msgstr "<variable id=\"silben\"><ahelp hid=\".uno:Hyphenate\"><emph>连字符</e
msgctxt ""
"06020000.xhp\n"
"par_id3154366\n"
-"3\n"
"help.text"
msgid "You can only turn on the automatic hyphenation in $[officename] Calc when the <link href=\"text/shared/01/05340300.xhp\" name=\"row break\">row break</link> feature is active."
msgstr "只有使用了<link href=\"text/shared/01/05340300.xhp\" name=\"换行\">换行</link>功能,才能打开 $[officename] Calc 中的自动连字符。"
@@ -53604,7 +50100,6 @@ msgstr "只有使用了<link href=\"text/shared/01/05340300.xhp\" name=\"换行\
msgctxt ""
"06020000.xhp\n"
"hd_id3153192\n"
-"4\n"
"help.text"
msgid "Hyphenation for selected cells."
msgstr "选定单元格的连字符"
@@ -53613,7 +50108,6 @@ msgstr "选定单元格的连字符"
msgctxt ""
"06020000.xhp\n"
"par_id3150868\n"
-"5\n"
"help.text"
msgid "Select the cells for which you want to change the hyphenation."
msgstr "选定要修改连字符的单元格。"
@@ -53622,7 +50116,6 @@ msgstr "选定要修改连字符的单元格。"
msgctxt ""
"06020000.xhp\n"
"par_id3150440\n"
-"6\n"
"help.text"
msgid "Choose <emph>Tools - Language - Hyphenation</emph>."
msgstr "选择<emph>工具 - 语言 - 连字符</emph>。"
@@ -53631,7 +50124,6 @@ msgstr "选择<emph>工具 - 语言 - 连字符</emph>。"
msgctxt ""
"06020000.xhp\n"
"par_id3156441\n"
-"7\n"
"help.text"
msgid "The <emph>Format Cells</emph> dialog appears with the <emph>Alignment</emph> tab page open."
msgstr "将显示<emph>单元格格式</emph>对话框,其中的<emph>对齐</emph>选项卡页面为打开状态。"
@@ -53640,7 +50132,6 @@ msgstr "将显示<emph>单元格格式</emph>对话框,其中的<emph>对齐</
msgctxt ""
"06020000.xhp\n"
"par_id3149260\n"
-"12\n"
"help.text"
msgid "Mark the <emph>Wrap text automatically</emph> and <emph>Hyphenation active</emph> check boxes."
msgstr "选中<emph>自动换行</emph>和<emph>启用连字符</emph>复选框。"
@@ -53649,7 +50140,6 @@ msgstr "选中<emph>自动换行</emph>和<emph>启用连字符</emph>复选框
msgctxt ""
"06020000.xhp\n"
"hd_id3153094\n"
-"8\n"
"help.text"
msgid "Hyphenation for Drawing Objects"
msgstr "绘图对象的连字符"
@@ -53658,7 +50148,6 @@ msgstr "绘图对象的连字符"
msgctxt ""
"06020000.xhp\n"
"par_id3148577\n"
-"9\n"
"help.text"
msgid "Select a drawing object."
msgstr "选定一个绘图对象。"
@@ -53667,7 +50156,6 @@ msgstr "选定一个绘图对象。"
msgctxt ""
"06020000.xhp\n"
"par_id3156285\n"
-"10\n"
"help.text"
msgid "Choose <emph>Tools - Language - Hyphenation</emph>."
msgstr "选择<emph>工具 - 语言 - 连字符</emph>。"
@@ -53676,7 +50164,6 @@ msgstr "选择<emph>工具 - 语言 - 连字符</emph>。"
msgctxt ""
"06020000.xhp\n"
"par_id3147394\n"
-"11\n"
"help.text"
msgid "Each time you call the command you turn the hyphenation for the drawing object on or off. A check mark shows the current status."
msgstr "每次调用该命令时,便对绘图对象打开或关闭连字符。在该条命令旁以打钩表示当前状况。"
@@ -53701,7 +50188,6 @@ msgstr "<bookmark_value>单元格链接查找</bookmark_value> <bookmark
msgctxt ""
"06030000.xhp\n"
"hd_id3151245\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/06030000.xhp\" name=\"Detective\">Detective</link>"
msgstr "<link href=\"text/scalc/01/06030000.xhp\" name=\"侦探\">侦探</link>"
@@ -53710,7 +50196,6 @@ msgstr "<link href=\"text/scalc/01/06030000.xhp\" name=\"侦探\">侦探</link>"
msgctxt ""
"06030000.xhp\n"
"par_id3151211\n"
-"2\n"
"help.text"
msgid "This command activates the Spreadsheet Detective. With the Detective, you can trace the dependencies from the current formula cell to the cells in the spreadsheet."
msgstr "此命令用于启动电子表格侦探。使用侦探功能,可以在电子表格中追踪当前公式单元格与其他单元格之间的关系。"
@@ -53719,7 +50204,6 @@ msgstr "此命令用于启动电子表格侦探。使用侦探功能,可以在
msgctxt ""
"06030000.xhp\n"
"par_id3150447\n"
-"3\n"
"help.text"
msgid "Once you have defined a trace, you can point with the mouse cursor to the trace. The mouse cursor will change its shape. Double-click the trace with this cursor to select the referenced cell at the end of the trace."
msgstr "定义追踪后,如果将鼠标光标指向此追踪,光标的形状将发生改变。双击此追踪可以选中追踪末端引用的单元格。"
@@ -53744,7 +50228,6 @@ msgstr "<bookmark_value>单元格;跟踪引用单元格</bookmark_value><bookmar
msgctxt ""
"06030100.xhp\n"
"hd_id3155628\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedents\">Trace Precedents</link>"
msgstr "<link href=\"text/scalc/01/06030100.xhp\" name=\"追踪引用单元格\">追踪引用单元格</link>"
@@ -53753,7 +50236,6 @@ msgstr "<link href=\"text/scalc/01/06030100.xhp\" name=\"追踪引用单元格\"
msgctxt ""
"06030100.xhp\n"
"par_id3153542\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:ShowPrecedents\">This function shows the relationship between the current cell containing a formula and the cells used in the formula.</ahelp>"
msgstr "<ahelp hid=\".uno:ShowPrecedents\">此功能用于显示含有公式的当前单元格与该公式所用单元格之间的关系。</ahelp>"
@@ -53762,7 +50244,6 @@ msgstr "<ahelp hid=\".uno:ShowPrecedents\">此功能用于显示含有公式的
msgctxt ""
"06030100.xhp\n"
"par_id3147265\n"
-"4\n"
"help.text"
msgid "Traces are displayed in the sheet with marking arrows. At the same time, the range of all the cells contained in the formula of the current cell is highlighted with a blue frame."
msgstr "采用标记箭头在工作表中显示追踪。同时,当前单元格公式引用的所有单元格区域均以蓝色框突出显示。"
@@ -53771,7 +50252,6 @@ msgstr "采用标记箭头在工作表中显示追踪。同时,当前单元格
msgctxt ""
"06030100.xhp\n"
"par_id3154321\n"
-"3\n"
"help.text"
msgid "This function is based on a principle of layers. For example, if the precedent cell to a formula is already indicated with a tracer arrow, when you repeat this command, the tracer arrows are drawn to the precedent cells of this cell."
msgstr "可逐极进行追踪。例如,如果已显示从公式单元格指向前一个链接单元的追踪箭头,重新按击追踪箭头,可进一步追踪上一级间接链接单元。"
@@ -53796,7 +50276,6 @@ msgstr "<bookmark_value>单元格; 删除引用单元格</bookmark_value><bookma
msgctxt ""
"06030200.xhp\n"
"hd_id3155628\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/06030200.xhp\" name=\"Remove Precedents\">Remove Precedents</link>"
msgstr "<link href=\"text/scalc/01/06030200.xhp\" name=\"删除引用单元格\">删除引用单元格</link>"
@@ -53805,7 +50284,6 @@ msgstr "<link href=\"text/scalc/01/06030200.xhp\" name=\"删除引用单元格\"
msgctxt ""
"06030200.xhp\n"
"par_id3149456\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:ClearArrowPrecedents\">Deletes one level of the trace arrows that were inserted with the <emph>Trace Precedents</emph> command.</ahelp>"
msgstr "<ahelp hid=\".uno:ClearArrowPrecedents\">删除使用<emph>跟踪引用单元格</emph>命令插入的某一级跟踪箭头。</ahelp>"
@@ -53830,7 +50308,6 @@ msgstr "<bookmark_value>单元格; 追踪从属单元格</bookmark_value>"
msgctxt ""
"06030300.xhp\n"
"hd_id3153252\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/06030300.xhp\" name=\"Trace Dependents\">Trace Dependents</link>"
msgstr "<link href=\"text/scalc/01/06030300.xhp\" name=\"追踪从属单元格\">追踪从属单元格</link>"
@@ -53839,7 +50316,6 @@ msgstr "<link href=\"text/scalc/01/06030300.xhp\" name=\"追踪从属单元格\"
msgctxt ""
"06030300.xhp\n"
"par_id3156024\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:ShowDependents\" visibility=\"visible\">Draws tracer arrows to the active cell from formulas that depend on values in the active cell.</ahelp>"
msgstr "<ahelp hid=\".uno:ShowDependents\" visibility=\"visible\">利用取决于当前单元格中的值的公式,为当前单元格绘制跟踪箭头。</ahelp>"
@@ -53848,7 +50324,6 @@ msgstr "<ahelp hid=\".uno:ShowDependents\" visibility=\"visible\">利用取决
msgctxt ""
"06030300.xhp\n"
"par_id3148948\n"
-"4\n"
"help.text"
msgid "The area of all cells that are used together with the active cell in a formula is highlighted by a blue frame."
msgstr "所有与当前单元格共用一个公式的单元格区域会用蓝色框突出显示。"
@@ -53857,7 +50332,6 @@ msgstr "所有与当前单元格共用一个公式的单元格区域会用蓝色
msgctxt ""
"06030300.xhp\n"
"par_id3151112\n"
-"3\n"
"help.text"
msgid "This function works per level. For instance, if one level of traces has already been activated to show the precedents (or dependents), then you would see the next dependency level by activating the <emph>Trace</emph> function again."
msgstr "此功能逐级执行。例如,如果当前已启动一个追踪级别来显示向前的追踪 (或向后的追踪),则再次启动<emph>追踪</emph>功能即可看到下一个追踪级别。"
@@ -53882,7 +50356,6 @@ msgstr "<bookmark_value>单元格; 删除从属单元格</bookmark_value>"
msgctxt ""
"06030400.xhp\n"
"hd_id3147335\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/06030400.xhp\" name=\"Remove Dependents\">Remove Dependents</link>"
msgstr "<link href=\"text/scalc/01/06030400.xhp\" name=\"删除向后的追踪箭头\">删除向后的追踪箭头</link>"
@@ -53891,7 +50364,6 @@ msgstr "<link href=\"text/scalc/01/06030400.xhp\" name=\"删除向后的追踪
msgctxt ""
"06030400.xhp\n"
"par_id3148663\n"
-"2\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\".uno:ClearArrowDependents\">Deletes one level of tracer arrows created with <emph>Trace Dependents</emph>.</ahelp>"
msgstr "<ahelp visibility=\"visible\" hid=\".uno:ClearArrowDependents\">删除由<emph>跟踪从属单元格</emph>插入的某一级跟踪箭头。</ahelp>"
@@ -53916,7 +50388,6 @@ msgstr "<bookmark_value>单元格; 删除追踪</bookmark_value>"
msgctxt ""
"06030500.xhp\n"
"hd_id3153088\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/06030500.xhp\" name=\"Remove All Traces\">Remove All Traces</link>"
msgstr "<link href=\"text/scalc/01/06030500.xhp\" name=\"删除全部追踪箭头\">删除全部追踪箭头</link>"
@@ -53925,7 +50396,6 @@ msgstr "<link href=\"text/scalc/01/06030500.xhp\" name=\"删除全部追踪箭
msgctxt ""
"06030500.xhp\n"
"par_id3151246\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:ClearArrows\" visibility=\"visible\">Removes all tracer arrows from the spreadsheet.</ahelp>"
msgstr "<ahelp hid=\".uno:ClearArrows\" visibility=\"visible\">删除电子表格中全部的跟踪箭头。</ahelp>"
@@ -53950,7 +50420,6 @@ msgstr "<bookmark_value>单元格; 追踪错误</bookmark_value><bookmark_value>
msgctxt ""
"06030600.xhp\n"
"hd_id3153561\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/06030600.xhp\" name=\"Trace Error\">Trace Error</link>"
msgstr "<link href=\"text/scalc/01/06030600.xhp\" name=\"追踪错误\">追踪错误</link>"
@@ -53959,7 +50428,6 @@ msgstr "<link href=\"text/scalc/01/06030600.xhp\" name=\"追踪错误\">追踪
msgctxt ""
"06030600.xhp\n"
"par_id3148550\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:ShowErrors\" visibility=\"visible\">Draws tracer arrows to all precedent cells which cause an error value in a selected cell.</ahelp>"
msgstr "<ahelp hid=\".uno:ShowErrors\" visibility=\"visible\">在选定的单元格中为导致错误值的所有引用单元格绘制跟踪箭头。</ahelp>"
@@ -53984,7 +50452,6 @@ msgstr "<bookmark_value>单元格;跟踪填充模式</bookmark_value><bookmark_v
msgctxt ""
"06030700.xhp\n"
"hd_id3145119\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/06030700.xhp\" name=\"Fill Mode\">Fill Mode</link>"
msgstr "<link href=\"text/scalc/01/06030700.xhp\" name=\"填充模式\">填充模式</link>"
@@ -53993,7 +50460,6 @@ msgstr "<link href=\"text/scalc/01/06030700.xhp\" name=\"填充模式\">填充
msgctxt ""
"06030700.xhp\n"
"par_id3151246\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:AuditingFillMode\">Activates the Fill Mode in the Detective. The mouse pointer changes to a special symbol, and you can click any cell to see a trace to the precedent cell.</ahelp> To exit this mode, press Escape or click the <emph>End Fill Mode</emph> command in the context menu."
msgstr "<ahelp hid=\".uno:AuditingFillMode\">激活\"侦探\"中的\"填充模式\"。鼠标指针变为一个特殊图标,并且您可以单击任意单元格来查看对引用单元格的跟踪。</ahelp>要退出此模式,请按 Escape 键或单击上下文菜单中的<emph>结束填充模式</emph>命令。"
@@ -54002,7 +50468,6 @@ msgstr "<ahelp hid=\".uno:AuditingFillMode\">激活\"侦探\"中的\"填充模
msgctxt ""
"06030700.xhp\n"
"par_id3151211\n"
-"3\n"
"help.text"
msgid "The <emph>Fill Mode</emph> function is identical to the <link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedent\">Trace Precedent</link> command if you call this mode for the first time. Use the context menu to select further options for the Fill Mode and to exit this mode."
msgstr "如果首次调用<emph>填充模式</emph>,则其功能与 <link href=\"text/scalc/01/06030100.xhp\" name=\"追踪引用单元格\">追踪引用单元格</link> 命令相同。在上下文菜单中,您可以进一步选择所需的填充模式或退出此模式。"
@@ -54027,7 +50492,6 @@ msgstr "<bookmark_value>单元格; 无效数据</bookmark_value><bookmark_value>
msgctxt ""
"06030800.xhp\n"
"hd_id3153821\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/06030800.xhp\" name=\"Mark Invalid Data\">Mark Invalid Data</link>"
msgstr "<link href=\"text/scalc/01/06030800.xhp\" name=\"标记无效的数据\">标记无效的数据</link>"
@@ -54036,7 +50500,6 @@ msgstr "<link href=\"text/scalc/01/06030800.xhp\" name=\"标记无效的数据\"
msgctxt ""
"06030800.xhp\n"
"par_id3147264\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:ShowInvalid\" visibility=\"visible\">Marks all cells in the sheet that contain values outside the validation rules.</ahelp>"
msgstr "<ahelp hid=\".uno:ShowInvalid\" visibility=\"visible\">标记工作表中所有含有不符合有效性规则的数值的单元格。</ahelp>"
@@ -54045,7 +50508,6 @@ msgstr "<ahelp hid=\".uno:ShowInvalid\" visibility=\"visible\">标记工作表
msgctxt ""
"06030800.xhp\n"
"par_id3151211\n"
-"3\n"
"help.text"
msgid "The <link href=\"text/scalc/01/12120000.xhp\" name=\"validity rules\">validity rules</link> restrict the input of numbers, dates, time values and text to certain values. However, it is possible to enter invalid values or copy invalid values into the cells if the <emph>Stop</emph> option is not selected. When you assign a validity rule, existing values in a cell will not be modified."
msgstr "<link href=\"text/scalc/01/12120000.xhp\" name=\"有效性规则\">有效性规则</link>限定了只能输入某些值的数字、日期、时间和文字。但是,如果没有选择<emph>停止</emph>选项,则仍可以向单元格中输入或复制无效的值。即使您事后指定了有效性规则,单元格中的现有值也不会改变。"
@@ -54070,7 +50532,6 @@ msgstr "<bookmark_value>单元格; 刷新追踪</bookmark_value><bookmark_value>
msgctxt ""
"06030900.xhp\n"
"hd_id3152349\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/06030900.xhp\" name=\"Refresh Traces\">Refresh Traces</link>"
msgstr "<link href=\"text/scalc/01/06030900.xhp\" name=\"刷新追踪箭头\">刷新追踪箭头</link>"
@@ -54079,7 +50540,6 @@ msgstr "<link href=\"text/scalc/01/06030900.xhp\" name=\"刷新追踪箭头\">
msgctxt ""
"06030900.xhp\n"
"par_id3148947\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:RefreshArrows\">Redraws all traces in the sheet. Formulas modified when traces are redrawn are taken into account.</ahelp>"
msgstr "<ahelp hid=\".uno:RefreshArrows\">重新绘制工作表中的所有跟踪箭头。重新绘制跟踪箭头时会考虑已修改的公式。</ahelp>"
@@ -54088,7 +50548,6 @@ msgstr "<ahelp hid=\".uno:RefreshArrows\">重新绘制工作表中的所有跟
msgctxt ""
"06030900.xhp\n"
"par_id3148798\n"
-"3\n"
"help.text"
msgid "Detective arrows in the document are updated under the following circumstances:"
msgstr "文档中的侦探箭头在下列情况下更新:"
@@ -54097,7 +50556,6 @@ msgstr "文档中的侦探箭头在下列情况下更新:"
msgctxt ""
"06030900.xhp\n"
"par_id3153192\n"
-"4\n"
"help.text"
msgid "Starting <emph>Tools - Detective - Update Refresh Traces</emph>"
msgstr "启动<emph>工具 - 侦探 - 更新刷新追踪箭头</emph>。"
@@ -54106,7 +50564,6 @@ msgstr "启动<emph>工具 - 侦探 - 更新刷新追踪箭头</emph>。"
msgctxt ""
"06030900.xhp\n"
"par_id3151041\n"
-"5\n"
"help.text"
msgid "If <emph>Tools - Detective - Update Automatically</emph> is turned on, every time formulas are changed in the document."
msgstr "如果打开<emph>工具 - 侦探 -自动更新</emph>,则每次公式修改都在文档中体现。"
@@ -54131,7 +50588,6 @@ msgstr "<bookmark_value>单元格; 自动刷新追踪箭头</bookmark_value><boo
msgctxt ""
"06031000.xhp\n"
"hd_id3154515\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/06031000.xhp\" name=\"AutoRefresh\">AutoRefresh</link>"
msgstr "<link href=\"text/scalc/01/06031000.xhp\" name=\"自动刷新\">自动刷新</link>"
@@ -54140,7 +50596,6 @@ msgstr "<link href=\"text/scalc/01/06031000.xhp\" name=\"自动刷新\">自动
msgctxt ""
"06031000.xhp\n"
"par_id3147264\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:AutoRefreshArrows\" visibility=\"visible\">Automatically refreshes all the traces in the sheet whenever you modify a formula.</ahelp>"
msgstr "<ahelp hid=\".uno:AutoRefreshArrows\" visibility=\"visible\">修改公式时自动刷新工作表中所有的跟踪箭头。</ahelp>"
@@ -54157,7 +50612,6 @@ msgstr "单变量求解"
msgctxt ""
"06040000.xhp\n"
"hd_id3155629\n"
-"1\n"
"help.text"
msgid "Goal Seek"
msgstr "单变量求解"
@@ -54166,7 +50620,6 @@ msgstr "单变量求解"
msgctxt ""
"06040000.xhp\n"
"par_id3145119\n"
-"2\n"
"help.text"
msgid "<variable id=\"zielwertsuchetext\"><ahelp hid=\".uno:GoalSeekDialog\">Opens a dialog where you can solve an equation with a variable.</ahelp></variable> After a successful search, a dialog with the results opens, allowing you to apply the result and the target value directly to the cell."
msgstr "<variable id=\"zielwertsuchetext\"><ahelp hid=\".uno:GoalSeekDialog\">打开一个对话框,用于求解一元方程式。</ahelp></variable>求解成功后,将显示结果对话框,以便在单元格中直接应用结果和目标值。"
@@ -54175,7 +50628,6 @@ msgstr "<variable id=\"zielwertsuchetext\"><ahelp hid=\".uno:GoalSeekDialog\">
msgctxt ""
"06040000.xhp\n"
"hd_id3149656\n"
-"3\n"
"help.text"
msgid "Default"
msgstr "默认"
@@ -54184,7 +50636,6 @@ msgstr "默认"
msgctxt ""
"06040000.xhp\n"
"par_id3151211\n"
-"4\n"
"help.text"
msgid "In this section, you can define the variables in your formula."
msgstr "在此部分定义公式的变量。"
@@ -54193,7 +50644,6 @@ msgstr "在此部分定义公式的变量。"
msgctxt ""
"06040000.xhp\n"
"hd_id3150869\n"
-"5\n"
"help.text"
msgid "Formula cell"
msgstr "公式单元格"
@@ -54202,7 +50652,6 @@ msgstr "公式单元格"
msgctxt ""
"06040000.xhp\n"
"par_id3153194\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/goalseekdlg/formulaedit\">In the formula cell, enter the reference of the cell which contains the formula. It contains the current cell reference.</ahelp> Click another cell in the sheet to apply its reference to the text box."
msgstr "<ahelp hid=\"modules/scalc/ui/goalseekdlg/formulaedit\">在公式单元格中,输入含有公式的单元格的引用。它含有当前单元格引用。</ahelp>在工作表中单击另一个单元格,在文字框中采用其引用。"
@@ -54211,7 +50660,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/goalseekdlg/formulaedit\">在公式单元
msgctxt ""
"06040000.xhp\n"
"hd_id3154685\n"
-"7\n"
"help.text"
msgid "Target value"
msgstr "目标值"
@@ -54220,7 +50668,6 @@ msgstr "目标值"
msgctxt ""
"06040000.xhp\n"
"par_id3146984\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/goalseekdlg/target\">Specifies the value you want to achieve as a new result.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/goalseekdlg/target\">指定希望获得的新结果值。</ahelp>"
@@ -54229,7 +50676,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/goalseekdlg/target\">指定希望获得的
msgctxt ""
"06040000.xhp\n"
"hd_id3150012\n"
-"9\n"
"help.text"
msgid "Variable cell"
msgstr "变量单元格"
@@ -54238,7 +50684,6 @@ msgstr "变量单元格"
msgctxt ""
"06040000.xhp\n"
"par_id3147427\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/goalseekdlg/varedit\">Specifies the reference for the cell that contains the value you want to adjust in order to reach the target.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/goalseekdlg/varedit\">指定含有要调整的数值的单元格引用,以满足目标的需要。</ahelp>"
@@ -54255,7 +50700,6 @@ msgstr "创建方案"
msgctxt ""
"06050000.xhp\n"
"hd_id3156023\n"
-"1\n"
"help.text"
msgid "Create Scenario"
msgstr "创建方案"
@@ -54264,7 +50708,6 @@ msgstr "创建方案"
msgctxt ""
"06050000.xhp\n"
"par_id3150541\n"
-"2\n"
"help.text"
msgid "<variable id=\"szenariotext\"><ahelp hid=\".uno:ScenarioManager\">Defines a scenario for the selected sheet area.</ahelp></variable>"
msgstr "<variable id=\"szenariotext\"><ahelp hid=\".uno:ScenarioManager\">为选定的工作表区域设置方案。</ahelp></variable>"
@@ -54273,7 +50716,6 @@ msgstr "<variable id=\"szenariotext\"><ahelp hid=\".uno:ScenarioManager\">为选
msgctxt ""
"06050000.xhp\n"
"hd_id3156280\n"
-"3\n"
"help.text"
msgid "Name of scenario"
msgstr "方案名称"
@@ -54282,7 +50724,6 @@ msgstr "方案名称"
msgctxt ""
"06050000.xhp\n"
"par_id3151041\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\"HID_SC_SCENWIN_TOP\">Defines the name for the scenario. Use a clear and unique name so you can easily identify the scenario.</ahelp> You can also modify a scenario name in the Navigator through the <emph>Properties </emph>context menu command."
msgstr "<ahelp hid=\"HID_SC_SCENWIN_TOP\">指定方案名称。请使用一个清晰、明确的名称,便于您标识该方案。</ahelp>你也可以在“导航”中通过<emph>属性</emph>上下文菜单命令修改方案名称。"
@@ -54291,7 +50732,6 @@ msgstr "<ahelp hid=\"HID_SC_SCENWIN_TOP\">指定方案名称。请使用一个
msgctxt ""
"06050000.xhp\n"
"hd_id3153954\n"
-"14\n"
"help.text"
msgid "Comment"
msgstr "标注"
@@ -54300,7 +50740,6 @@ msgstr "标注"
msgctxt ""
"06050000.xhp\n"
"par_id3155411\n"
-"15\n"
"help.text"
msgid "<ahelp hid=\"HID_SC_SCENWIN_BOTTOM\">Specifies additional information about the scenario. This information will be displayed in the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link> when you click the <emph>Scenarios</emph> icon and select the desired scenario.</ahelp> You can also modify this information in the Navigator through the <emph>Properties </emph>context menu command."
msgstr "<ahelp hid=\"HID_SC_SCENWIN_BOTTOM\">指定有关方案的附加信息。这些信息将显示在<link href=\"text/scalc/01/02110000.xhp\" name=\"导航\">导航</link>(当您单击<emph>方案</emph>图标并选择所需的方案时)中。</ahelp>您也可以在“导航”中通过<emph>属性</emph>上下文菜单命令修改此信息。"
@@ -54309,7 +50748,6 @@ msgstr "<ahelp hid=\"HID_SC_SCENWIN_BOTTOM\">指定有关方案的附加信息
msgctxt ""
"06050000.xhp\n"
"hd_id3145273\n"
-"16\n"
"help.text"
msgid "Settings"
msgstr "设置"
@@ -54318,7 +50756,6 @@ msgstr "设置"
msgctxt ""
"06050000.xhp\n"
"par_id3153364\n"
-"17\n"
"help.text"
msgid "This section is used to define some of the settings used in the scenario display."
msgstr "请您在此对方案的显示作一些设置。"
@@ -54327,7 +50764,6 @@ msgstr "请您在此对方案的显示作一些设置。"
msgctxt ""
"06050000.xhp\n"
"hd_id3145367\n"
-"18\n"
"help.text"
msgid "Display border"
msgstr "显示边框"
@@ -54336,7 +50772,6 @@ msgstr "显示边框"
msgctxt ""
"06050000.xhp\n"
"par_id3151073\n"
-"19\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/scenariodialog/bordercolor\">Highlights the scenario in your table with a border. The color for the border is specified in the field to the right of this option.</ahelp> The border will have a title bar displaying the name of the last scenario. The button on the right of the scenario border offers you an overview of all the scenarios in this area, if several have been defined. You can choose any of the scenarios from this list without restrictions."
msgstr "<ahelp hid=\"modules/scalc/ui/scenariodialog/bordercolor\">在工作表中用边框突出显示方案。选项右边的字段中指定了边框的颜色。</ahelp>边框含有一个标题栏,其中显示了上一个方案的名称。方案边框右边有一个按钮,如果指定了多个方案,使用该按钮可以显示此区域中所有方案的一览表。从这个列表中,可以任意选择方案。"
@@ -54345,7 +50780,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/scenariodialog/bordercolor\">在工作表
msgctxt ""
"06050000.xhp\n"
"hd_id3149582\n"
-"20\n"
"help.text"
msgid "Copy back"
msgstr "复制回"
@@ -54354,7 +50788,6 @@ msgstr "复制回"
msgctxt ""
"06050000.xhp\n"
"par_id3154942\n"
-"21\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/scenariodialog/copyback\">Copies the values of cells that you change into the active scenario. If you do not select this option, the scenario is not changed when you change cell values. The behavior of the <emph>Copy back</emph> setting depends on the cell protection, the sheet protection, and the <emph>Prevent changes</emph> settings.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/scenariodialog/copyback\">将修改的单元格值复制到活动方案中。如果不选择此选项,当您改变单元格值时,方案不会随之改变。<emph>复制回</emph>的动作设置取决于单元格保护、工作表保护和<emph>防止更改</emph>设置。</ahelp>"
@@ -54363,7 +50796,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/scenariodialog/copyback\">将修改的单
msgctxt ""
"06050000.xhp\n"
"hd_id3149402\n"
-"22\n"
"help.text"
msgid "Copy entire sheet"
msgstr "复制整个工作表"
@@ -54372,7 +50804,6 @@ msgstr "复制整个工作表"
msgctxt ""
"06050000.xhp\n"
"par_id3146969\n"
-"23\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/scenariodialog/copysheet\">Copies the entire sheet into an additional scenario sheet. </ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/scenariodialog/copysheet\">将整个工作表复制到附加方案工作表中。 </ahelp>"
@@ -54429,7 +50860,6 @@ msgstr "保护文档"
msgctxt ""
"06060000.xhp\n"
"hd_id3148946\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/06060000.xhp\" name=\"Protect Document\">Protect Document</link>"
msgstr "<link href=\"text/scalc/01/06060000.xhp\" name=\"保护文档\">保护文档</link>"
@@ -54446,7 +50876,6 @@ msgstr ""
msgctxt ""
"06060000.xhp\n"
"hd_id3147228\n"
-"3\n"
"help.text"
msgid "<link href=\"text/scalc/01/06060100.xhp\" name=\"Sheets\">Sheets</link>"
msgstr "<link href=\"text/scalc/01/06060100.xhp\" name=\"工作表\">工作表</link>"
@@ -54455,7 +50884,6 @@ msgstr "<link href=\"text/scalc/01/06060100.xhp\" name=\"工作表\">工作表</
msgctxt ""
"06060000.xhp\n"
"hd_id3153768\n"
-"4\n"
"help.text"
msgid "<link href=\"text/scalc/01/06060200.xhp\" name=\"Documents\">Documents</link>"
msgstr "<link href=\"text/scalc/01/06060200.xhp\" name=\"文档\">文档</link>"
@@ -54472,7 +50900,6 @@ msgstr "保护工作表"
msgctxt ""
"06060100.xhp\n"
"hd_id3153087\n"
-"1\n"
"help.text"
msgid "Protecting Sheet"
msgstr "保护工作表"
@@ -54489,7 +50916,6 @@ msgstr ""
msgctxt ""
"06060100.xhp\n"
"par_id3149664\n"
-"5\n"
"help.text"
msgid "To protect cells from further editing, the <emph>Protected</emph> check box must be checked on the <link href=\"text/scalc/01/05020600.xhp\" name=\"Format - Cells - Cell Protection\"><emph>Format - Cells - Cell Protection</emph></link> tab page or on the <emph>Format Cells</emph> context menu."
msgstr "要防止单元格被编辑,则必须选中 <link href=\"text/scalc/01/05020600.xhp\" name=\"Format - Cells - Cell Protection\"><emph>格式 - 单元格 - 单元格保护</emph></link>选项卡页面上的<emph>已保护</emph>复选框,“单元格保护”选项卡页面也可以通过上下文菜单中的 <emph>单元格格式</emph> 打开。"
@@ -54506,7 +50932,6 @@ msgstr ""
msgctxt ""
"06060100.xhp\n"
"par_id3149123\n"
-"16\n"
"help.text"
msgid "Select the cells that will be unprotected"
msgstr "选择要取消保护的单元格"
@@ -54515,7 +50940,6 @@ msgstr "选择要取消保护的单元格"
msgctxt ""
"06060100.xhp\n"
"par_id3150329\n"
-"17\n"
"help.text"
msgid "Select <emph>Format - Cells - Cell Protection</emph>. Unmark the <emph>Protected</emph> box and click <emph>OK</emph>."
msgstr "选择 <emph>格式 - 单元格 - 单元格保护</emph>。取消选中<emph>已保护</emph>复选框,然后单击<emph>确定</emph>。"
@@ -54540,7 +50964,6 @@ msgstr ""
msgctxt ""
"06060100.xhp\n"
"par_id3153964\n"
-"10\n"
"help.text"
msgid "Sheet protection also affects the context menu of the sheet tabs at the bottom of the screen. The <emph>Delete</emph> and <emph>Rename</emph> commands cannot be selected."
msgstr "工作表保护还影响屏幕下方工作表选项卡的上下文菜单。不能选择<emph>删除</emph>和<emph>重命名</emph>命令。"
@@ -54549,7 +50972,6 @@ msgstr "工作表保护还影响屏幕下方工作表选项卡的上下文菜单
msgctxt ""
"06060100.xhp\n"
"par_id3150301\n"
-"19\n"
"help.text"
msgid "If a sheet is protected, you will not be able to modify or delete any Cell Styles."
msgstr "如果工作表受到保护,则无法修改或删除任何单元格样式。"
@@ -54566,7 +50988,6 @@ msgstr ""
msgctxt ""
"06060100.xhp\n"
"par_id3149815\n"
-"11\n"
"help.text"
msgid "Once saved, protected sheets can only be saved again by using the <emph>File - Save As</emph> command."
msgstr "受保护的工作表经过保存后,只能使用 <emph>文件 - 另存为</emph> 命令来重新保存。"
@@ -54575,19 +50996,17 @@ msgstr "受保护的工作表经过保存后,只能使用 <emph>文件 - 另
msgctxt ""
"06060100.xhp\n"
"hd_id3150206\n"
-"4\n"
"help.text"
-msgid "Password (optional)"
-msgstr "密码(可选择的)"
+msgid "<link href=\"text/shared/01/password_dlg.xhp\" name=\"Password\">Password (optional)</link>"
+msgstr ""
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
"par_id3152990\n"
-"7\n"
"help.text"
-msgid "<ahelp hid=\".uno:Protect\">Allows you to enter a password to protect the sheet from unauthorized changes.</ahelp>"
-msgstr "<ahelp hid=\".uno:Protect\">允许您输入密码来防止工作表被擅自修改。</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/protectsheetdlg/password1\">Allows you to enter a password to protect the sheet from unauthorized changes.</ahelp>"
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -54609,7 +51028,6 @@ msgstr "保护文档"
msgctxt ""
"06060200.xhp\n"
"hd_id3150541\n"
-"1\n"
"help.text"
msgid "Protecting document"
msgstr "保护文档"
@@ -54634,7 +51052,6 @@ msgstr ""
msgctxt ""
"06060200.xhp\n"
"par_id3145750\n"
-"7\n"
"help.text"
msgid "A protected document, once saved, can only be saved again with the <emph>File - Save As</emph> menu command."
msgstr "受保护的文档经过保存后,只能通过<emph>文件 - 另存为</emph>菜单命令重新保存。"
@@ -54643,7 +51060,6 @@ msgstr "受保护的文档经过保存后,只能通过<emph>文件 - 另存为
msgctxt ""
"06060200.xhp\n"
"hd_id3152596\n"
-"4\n"
"help.text"
msgid "Password (optional)"
msgstr "密码(可选择的)"
@@ -54652,10 +51068,17 @@ msgstr "密码(可选择的)"
msgctxt ""
"06060200.xhp\n"
"par_id3155412\n"
-"5\n"
"help.text"
-msgid "You can create a password to protect your document against unauthorized or accidental modifications."
-msgstr "您可以创建密码以保护自己的文档,防止文档被擅自的或者无意的修改。"
+msgid "<ahelp hid=\"SC_HID_PASSWD_DOC\">You can create a password to protect your document against unauthorized or accidental modifications.</ahelp>"
+msgstr ""
+
+#: 06060200.xhp
+msgctxt ""
+"06060200.xhp\n"
+"par_id3155413\n"
+"help.text"
+msgid "<ahelp hid=\"SC_HID_PASSWD_DOC_CONFIRM\" visibility=\"hidden\">Re-enter the password.</ahelp>"
+msgstr ""
#: 06060200.xhp
msgctxt ""
@@ -54685,7 +51108,6 @@ msgstr "<bookmark_value>计算; 自动计算工作表</bookmark_value><bookmark_
msgctxt ""
"06070000.xhp\n"
"hd_id3145673\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/06070000.xhp\" name=\"AutoCalculate\">AutoCalculate</link>"
msgstr "<link href=\"text/scalc/01/06070000.xhp\" name=\"自动计算\">自动计算</link>"
@@ -54694,7 +51116,6 @@ msgstr "<link href=\"text/scalc/01/06070000.xhp\" name=\"自动计算\">自动
msgctxt ""
"06070000.xhp\n"
"par_id3148798\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:AutomaticCalculation\">Automatically recalculates all formulas in the document.</ahelp>"
msgstr "<ahelp hid=\".uno:AutomaticCalculation\">自动重新计算文档中的所有公式。</ahelp>"
@@ -54703,7 +51124,6 @@ msgstr "<ahelp hid=\".uno:AutomaticCalculation\">自动重新计算文档中的
msgctxt ""
"06070000.xhp\n"
"par_id3145173\n"
-"3\n"
"help.text"
msgid "All cells are recalculated after a sheet cell has been modified. Any charts in the sheet will also be refreshed."
msgstr "工作表中的一个单元格被修改,将重新计算所有的单元格。工作表中的图表也被刷新。"
@@ -54728,7 +51148,6 @@ msgstr "<bookmark_value>重新计算; 工作表中的所有公式</bookmark_valu
msgctxt ""
"06080000.xhp\n"
"hd_id3157909\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/06080000.xhp\" name=\"Recalculate\">Recalculate</link>"
msgstr "<link href=\"text/scalc/01/06080000.xhp\" name=\"重新计算\">重新计算</link>"
@@ -54737,7 +51156,6 @@ msgstr "<link href=\"text/scalc/01/06080000.xhp\" name=\"重新计算\">重新
msgctxt ""
"06080000.xhp\n"
"par_id3154758\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:Calculate\">Recalculates all changed formulas. If AutoCalculate is enabled, the Recalculate command applies only to formulas like RAND or NOW.</ahelp>"
msgstr "<ahelp hid=\".uno:Calculate\">重新计算所有已更改的公式。如果自动计算已启用,“重新计算”命令仅应用在类似 或 之类的公式上。</ahelp>"
@@ -54754,7 +51172,6 @@ msgstr "按 F9 键以重新计算。按 Shift+<switchinline select=\"sys\"><case
msgctxt ""
"06080000.xhp\n"
"par_id3150793\n"
-"5\n"
"help.text"
msgid "After the document has been recalculated, the display is refreshed. All charts are also refreshed."
msgstr "文档重新计算后,显示也被刷新。所有图表也同时得到刷新。"
@@ -54787,7 +51204,6 @@ msgstr "<bookmark_value>使用自动输入功能输入条目</bookmark_value><bo
msgctxt ""
"06130000.xhp\n"
"hd_id3148492\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/06130000.xhp\" name=\"AutoInput\">AutoInput</link>"
msgstr "<link href=\"text/scalc/01/06130000.xhp\" name=\"自动输入\">自动输入</link>"
@@ -54796,7 +51212,6 @@ msgstr "<link href=\"text/scalc/01/06130000.xhp\" name=\"自动输入\">自动
msgctxt ""
"06130000.xhp\n"
"par_id3150793\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:AutoComplete\">Switches the AutoInput function on and off, which automatically completes entries, based on other entries in the same column.</ahelp> The column is scanned up to a maximum of 2000 cells or 200 different strings."
msgstr "<ahelp hid=\".uno:AutoComplete\">切换自动输入功能,该功能根据同一列中的其他条目来自动完成单元格内容的输入。</ahelp>列内最多可以包含 2000 个单元格或 200 个不同的字符串。"
@@ -54805,7 +51220,6 @@ msgstr "<ahelp hid=\".uno:AutoComplete\">切换自动输入功能,该功能根
msgctxt ""
"06130000.xhp\n"
"par_id3156422\n"
-"8\n"
"help.text"
msgid "The completion text is highlighted."
msgstr "完成的文字将被突出显示。"
@@ -54846,7 +51260,6 @@ msgstr ""
msgctxt ""
"06130000.xhp\n"
"par_id3150439\n"
-"3\n"
"help.text"
msgid "When typing formulas using characters that match previous entries, a Help tip will appear listing the last ten functions used from <emph>Function Wizard</emph>, from all defined range names, from all database range names, and from the content of all label ranges."
msgstr "当键入与前面输入内容匹配的公式时,将显示一个\"帮助\"提示,列出<emph>函数向导</emph>、所有定义的区域名称、所有数据库区域名称以及所有标签区域内容中最后使用的十个函数。"
@@ -54855,37 +51268,10 @@ msgstr "当键入与前面输入内容匹配的公式时,将显示一个\"帮
msgctxt ""
"06130000.xhp\n"
"par_id3153363\n"
-"5\n"
"help.text"
msgid "AutoInput is case-sensitive. If, for example, you have written \"Total\" in a cell, you cannot enter \"total\" in another cell of the same column without first deactivating AutoInput."
msgstr "自动输入功能区分大小写。例如,在一个单元格中输入“Total”后,如果不关闭自动输入,则无法在该单元格所在列的其他单元格中输入“total”。"
-#: 06990000.xhp
-msgctxt ""
-"06990000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Cell Contents"
-msgstr "单元格内容"
-
-#: 06990000.xhp
-msgctxt ""
-"06990000.xhp\n"
-"hd_id3153087\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06990000.xhp\" name=\"Cell Contents\">Cell Contents</link>"
-msgstr "<link href=\"text/scalc/01/06990000.xhp\" name=\"单元格内容\">单元格内容</link>"
-
-#: 06990000.xhp
-msgctxt ""
-"06990000.xhp\n"
-"par_id3145674\n"
-"2\n"
-"help.text"
-msgid "Opens a submenu with commands to calculate tables and activate AutoInput."
-msgstr "打开一个带有命令的子菜单,用于计算工作表和启动自动输入。"
-
#: 07080000.xhp
msgctxt ""
"07080000.xhp\n"
@@ -54895,7 +51281,6 @@ msgid "Split Window"
msgstr ""
#: 07080000.xhp
-#, fuzzy
msgctxt ""
"07080000.xhp\n"
"hd_id3163800\n"
@@ -54912,7 +51297,6 @@ msgid "<ahelp hid=\".\">Divides the current window at the top left corner of the
msgstr ""
#: 07080000.xhp
-#, fuzzy
msgctxt ""
"07080000.xhp\n"
"par_id3154910\n"
@@ -54921,7 +51305,6 @@ msgid "You can also use the mouse to split the window horizontally or vertically
msgstr "也可以使用鼠标水平或垂直拆分窗口。为此,可将位于垂直滚动条顶端或水平滚动条右端的黑色粗线拖动到窗口中。黑色粗线表示拆分窗口的位置。"
#: 07080000.xhp
-#, fuzzy
msgctxt ""
"07080000.xhp\n"
"par_id3149263\n"
@@ -54938,7 +51321,6 @@ msgid "Freeze Rows and Columns"
msgstr ""
#: 07090000.xhp
-#, fuzzy
msgctxt ""
"07090000.xhp\n"
"hd_id3150517\n"
@@ -54947,7 +51329,6 @@ msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"Freeze\">Freeze Rows and
msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"固定\">固定</link>"
#: 07090000.xhp
-#, fuzzy
msgctxt ""
"07090000.xhp\n"
"par_id3156289\n"
@@ -54967,7 +51348,6 @@ msgstr "定义数据库范围"
msgctxt ""
"12010000.xhp\n"
"hd_id3157909\n"
-"1\n"
"help.text"
msgid "Define Database Range"
msgstr "定义数据库范围"
@@ -54976,7 +51356,6 @@ msgstr "定义数据库范围"
msgctxt ""
"12010000.xhp\n"
"par_id3155922\n"
-"2\n"
"help.text"
msgid "<variable id=\"bereichtext\"><ahelp hid=\".uno:DefineDBName\">Defines a database range based on the selected cells in your sheet.</ahelp></variable>"
msgstr "<variable id=\"bereichtext\"><ahelp hid=\".uno:DefineDBName\">借助工作表中选定的单元格来定义数据库范围。</ahelp></variable>"
@@ -54985,7 +51364,6 @@ msgstr "<variable id=\"bereichtext\"><ahelp hid=\".uno:DefineDBName\">借助工
msgctxt ""
"12010000.xhp\n"
"par_id3149456\n"
-"5\n"
"help.text"
msgid "You can only select a rectangular cell range."
msgstr "只能选择矩形的数据库区域。"
@@ -54994,7 +51372,6 @@ msgstr "只能选择矩形的数据库区域。"
msgctxt ""
"12010000.xhp\n"
"hd_id3156422\n"
-"3\n"
"help.text"
msgid "Name"
msgstr "名称"
@@ -55003,7 +51380,6 @@ msgstr "名称"
msgctxt ""
"12010000.xhp\n"
"par_id3150770\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/entry\">Enter a name for the database range that you want to define, or select an existing name from the list.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/entry\">输入要定义的数据库区域的名称,或者从列表中选择一个现有名称。</ahelp>"
@@ -55012,7 +51388,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/entry\">输入
msgctxt ""
"12010000.xhp\n"
"hd_id3147228\n"
-"6\n"
"help.text"
msgid "Range"
msgstr "区域"
@@ -55021,7 +51396,6 @@ msgstr "区域"
msgctxt ""
"12010000.xhp\n"
"par_id3150441\n"
-"7\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/assign\">Displays the selected cell range.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/assign\">显示选定的单元格区域。</ahelp>"
@@ -55030,7 +51404,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/assign\">显示
msgctxt ""
"12010000.xhp\n"
"hd_id3153188\n"
-"10\n"
"help.text"
msgid "Add/Modify"
msgstr "添加/修改"
@@ -55039,7 +51412,6 @@ msgstr "添加/修改"
msgctxt ""
"12010000.xhp\n"
"par_id3153726\n"
-"11\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/add\">Adds the selected cell range to the database range list, or modifies an existing database range.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/add\">将选定的单元格区域加入数据库范围列表,或者修改现有的数据库范围。</ahelp>"
@@ -55048,7 +51420,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/add\">将选定
msgctxt ""
"12010000.xhp\n"
"hd_id3150010\n"
-"12\n"
"help.text"
msgid "More >>"
msgstr "更多>>"
@@ -55057,7 +51428,6 @@ msgstr "更多>>"
msgctxt ""
"12010000.xhp\n"
"par_id3153144\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/more\">Shows additional <link href=\"text/scalc/01/12010100.xhp\" name=\"options\">options</link>.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/more\">显示其他<link href=\"text/scalc/01/12010100.xhp\" name=\"选项\">选项</link>。</ahelp>"
@@ -55074,7 +51444,6 @@ msgstr "选项"
msgctxt ""
"12010100.xhp\n"
"hd_id3154760\n"
-"1\n"
"help.text"
msgid "Options"
msgstr "选项"
@@ -55083,7 +51452,6 @@ msgstr "选项"
msgctxt ""
"12010100.xhp\n"
"hd_id3153379\n"
-"3\n"
"help.text"
msgid "Contains column labels"
msgstr "含有列标签"
@@ -55092,7 +51460,6 @@ msgstr "含有列标签"
msgctxt ""
"12010100.xhp\n"
"par_id3148798\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/ContainsColumnLabels\" visibility=\"visible\">Selected cell ranges contains labels.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/ContainsColumnLabels\" visibility=\"visible\">选定的单元格区域含有标签。</ahelp>"
@@ -55101,7 +51468,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/ContainsColumnLa
msgctxt ""
"12010100.xhp\n"
"hd_id3153970\n"
-"5\n"
"help.text"
msgid "Insert or delete cells"
msgstr "插入/删除单元格"
@@ -55110,7 +51476,6 @@ msgstr "插入/删除单元格"
msgctxt ""
"12010100.xhp\n"
"par_id3154684\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/InsertOrDeleteCells\" visibility=\"visible\">Automatically inserts new rows and columns into the database range in your document when new records are added to the database.</ahelp> To manually update the database range, choose <emph>Data - Refresh</emph> <emph>Range</emph>."
msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/InsertOrDeleteCells\" visibility=\"visible\">向数据库中加入新记录时,在文档的数据库区域中自动插入新的行或列。</ahelp>要手动更新数据库区域,请选择<emph>数据 - 刷新</emph><emph>区域</emph>。"
@@ -55119,7 +51484,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/InsertOrDeleteCe
msgctxt ""
"12010100.xhp\n"
"hd_id3153768\n"
-"7\n"
"help.text"
msgid "Keep formatting"
msgstr "保留格式"
@@ -55128,7 +51492,6 @@ msgstr "保留格式"
msgctxt ""
"12010100.xhp\n"
"par_id3147435\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/KeepFormatting\" visibility=\"visible\">Applies the existing cell format of headers and first data row to the whole database range.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/KeepFormatting\" visibility=\"visible\">对整个数据库区域应用标题和第一个数据行的现有单元格格式。</ahelp>"
@@ -55137,7 +51500,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/KeepFormatting\"
msgctxt ""
"12010100.xhp\n"
"hd_id3155856\n"
-"9\n"
"help.text"
msgid "Don't save imported data"
msgstr "不保存已导入数据"
@@ -55146,7 +51508,6 @@ msgstr "不保存已导入数据"
msgctxt ""
"12010100.xhp\n"
"par_id3153363\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/DontSaveImportedData\" visibility=\"visible\">Only saves a reference to the database, and not the contents of the cells.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/DontSaveImportedData\" visibility=\"visible\">只保存数据库引用,而不保存单元格内容。</ahelp>"
@@ -55155,7 +51516,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/DontSaveImported
msgctxt ""
"12010100.xhp\n"
"hd_id3147428\n"
-"11\n"
"help.text"
msgid "Source:"
msgstr "来源:"
@@ -55164,7 +51524,6 @@ msgstr "来源:"
msgctxt ""
"12010100.xhp\n"
"par_id3148576\n"
-"12\n"
"help.text"
msgid "Displays information about the current database source and any existing operators."
msgstr "显示有关当前数据库来源以及现有运算符的信息。"
@@ -55173,7 +51532,6 @@ msgstr "显示有关当前数据库来源以及现有运算符的信息。"
msgctxt ""
"12010100.xhp\n"
"hd_id3146976\n"
-"13\n"
"help.text"
msgid "More <<"
msgstr "更多 <<"
@@ -55182,7 +51540,6 @@ msgstr "更多 <<"
msgctxt ""
"12010100.xhp\n"
"par_id3149664\n"
-"14\n"
"help.text"
msgid "Hides the additional options."
msgstr "隐藏附加选项。"
@@ -55207,7 +51564,6 @@ msgstr "<bookmark_value>数据库; 选择 (Calc)</bookmark_value>"
msgctxt ""
"12020000.xhp\n"
"hd_id3145068\n"
-"1\n"
"help.text"
msgid "Select Database Range"
msgstr "选择数据库范围"
@@ -55216,7 +51572,6 @@ msgstr "选择数据库范围"
msgctxt ""
"12020000.xhp\n"
"par_id3149655\n"
-"2\n"
"help.text"
msgid "<variable id=\"bereichwaehlen\"><ahelp hid=\".uno:SelectDB\">Selects a database range that you defined under <link href=\"text/scalc/01/12010000.xhp\" name=\"Data - Define Range\">Data - Define Range</link>.</ahelp></variable>"
msgstr "<variable id=\"bereichwaehlen\"><ahelp hid=\".uno:SelectDB\">选择在<link href=\"text/scalc/01/12010000.xhp\" name=\"数据 - 定义范围\">数据 - 定义范围</link>下定义的数据库范围。</ahelp></variable>"
@@ -55225,7 +51580,6 @@ msgstr "<variable id=\"bereichwaehlen\"><ahelp hid=\".uno:SelectDB\">选择在<l
msgctxt ""
"12020000.xhp\n"
"hd_id3153192\n"
-"3\n"
"help.text"
msgid "Ranges"
msgstr "范围"
@@ -55234,7 +51588,6 @@ msgstr "范围"
msgctxt ""
"12020000.xhp\n"
"par_id3154684\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/selectrange/treeview\">Lists the available database ranges. To select a database range, click its name, and then click <emph>OK</emph>.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/selectrange/treeview\">列出可用的数据库范围。要选择数据库范围,请单击其名称,然后单击<emph>确定</emph>。</ahelp>"
@@ -55251,7 +51604,6 @@ msgstr "排序"
msgctxt ""
"12030000.xhp\n"
"hd_id3150275\n"
-"1\n"
"help.text"
msgid "Sort"
msgstr "排序"
@@ -55260,7 +51612,6 @@ msgstr "排序"
msgctxt ""
"12030000.xhp\n"
"par_id3155922\n"
-"2\n"
"help.text"
msgid "<variable id=\"sorttext\"><ahelp hid=\".uno:DataSort\">Sorts the selected rows according to the conditions that you specify.</ahelp></variable> $[officename] automatically recognizes and selects database ranges."
msgstr "<variable id=\"sorttext\"><ahelp hid=\".uno:DataSort\">按照指定的条件对选定行进行排序。</ahelp></variable>$[officename] 可以自动识别并选择数据库范围。"
@@ -55269,7 +51620,6 @@ msgstr "<variable id=\"sorttext\"><ahelp hid=\".uno:DataSort\">按照指定的
msgctxt ""
"12030000.xhp\n"
"par_id3147428\n"
-"4\n"
"help.text"
msgid "You cannot sort data if the <link href=\"text/shared/01/02230000.xhp\" name=\"Record changes\">Record changes</link> options is enabled."
msgstr "如果启动<link href=\"text/shared/01/02230000.xhp\" name=\"修改记录\">修改记录</link>选项,则无法对数据进行排序。"
@@ -55294,7 +51644,6 @@ msgstr "<bookmark_value>排序;数据库范围的排序条件</bookmark_value>"
msgctxt ""
"12030100.xhp\n"
"hd_id3152350\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12030100.xhp\" name=\"Sort Criteria\">Sort Criteria</link>"
msgstr "<link href=\"text/scalc/01/12030100.xhp\" name=\"排序条件\">排序条件</link>"
@@ -55303,7 +51652,6 @@ msgstr "<link href=\"text/scalc/01/12030100.xhp\" name=\"排序条件\">排序
msgctxt ""
"12030100.xhp\n"
"par_id3151385\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortcriteriapage/SortCriteriaPage\">Specify the sorting options for the selected range.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sortcriteriapage/SortCriteriaPage\">指定选定区域的排序选项。</ahelp>"
@@ -55312,7 +51660,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sortcriteriapage/SortCriteriaPage\">指定
msgctxt ""
"12030100.xhp\n"
"par_id3152462\n"
-"24\n"
"help.text"
msgid "Ensure that you include any row and column titles in the selection."
msgstr "确保选定了行或列的标题。"
@@ -55321,7 +51668,6 @@ msgstr "确保选定了行或列的标题。"
msgctxt ""
"12030100.xhp\n"
"hd_id3147428\n"
-"3\n"
"help.text"
msgid "Sort by"
msgstr "排序依据"
@@ -55330,7 +51676,6 @@ msgstr "排序依据"
msgctxt ""
"12030100.xhp\n"
"par_id3155854\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortkey/sortlb\">Select the column that you want to use as the primary sort key.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sortkey/sortlb\">请选择希望作为主要排序条件的列。</ahelp>"
@@ -55339,7 +51684,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sortkey/sortlb\">请选择希望作为主
msgctxt ""
"12030100.xhp\n"
"hd_id3146121\n"
-"5\n"
"help.text"
msgid "Ascending"
msgstr "升序"
@@ -55348,7 +51692,6 @@ msgstr "升序"
msgctxt ""
"12030100.xhp\n"
"par_id3148645\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortkey/up\">Sorts the selection from the lowest value to the highest value. The sorting rules are given by the locale. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages."
msgstr "<ahelp hid=\"modules/scalc/ui/sortkey/up\">将选择部分按由低到高的顺序排列。排序规则由区域设置决定。您可以在“数据”-“排序”-“选项”处定义排序规则。</ahelp>或在 <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - 偏好设置</caseinline><defaultinline>工具 - 选项</defaultinline></switchinline> - 语言设置 - 语言 处定义默认值。"
@@ -55357,7 +51700,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sortkey/up\">将选择部分按由低到
msgctxt ""
"12030100.xhp\n"
"hd_id3155411\n"
-"7\n"
"help.text"
msgid "Descending"
msgstr "降序"
@@ -55366,7 +51708,6 @@ msgstr "降序"
msgctxt ""
"12030100.xhp\n"
"par_id3151075\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortkey/down\">Sorts the selection from the highest value to the lowest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages."
msgstr "<ahelp hid=\"modules/scalc/ui/sortkey/down\">将选择部分按由高到低的顺序排列。排序规则由区域设置决定。您可以在“数据”-“排序”-“选项”处定义排序规则。</ahelp>或在 <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - 偏好设置</caseinline><defaultinline>工具 - 选项</defaultinline></switchinline> - 语言设置 - 语言 处定义默认值。"
@@ -55375,7 +51716,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sortkey/down\">将选择部分按由高到
msgctxt ""
"12030100.xhp\n"
"hd_id3154492\n"
-"9\n"
"help.text"
msgid "Then by"
msgstr "然后依据"
@@ -55384,7 +51724,6 @@ msgstr "然后依据"
msgctxt ""
"12030100.xhp\n"
"par_id3156283\n"
-"10\n"
"help.text"
msgid "Select the column that you want to use as the secondary sort key."
msgstr "请选择希望作为次要排序条件的列。"
@@ -55393,7 +51732,6 @@ msgstr "请选择希望作为次要排序条件的列。"
msgctxt ""
"12030100.xhp\n"
"hd_id3149413\n"
-"11\n"
"help.text"
msgid "Ascending"
msgstr "升序"
@@ -55402,7 +51740,6 @@ msgstr "升序"
msgctxt ""
"12030100.xhp\n"
"par_id3154018\n"
-"12\n"
"help.text"
msgid "Sorts the selection from the lowest value to the highest value. You can define the sort rules on Data - Sort - Options. You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
msgstr "将选择部分按由低到高的顺序排列。您可以在“数据”-“排序”-“选项”处定义排序规则。或在 <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - 偏好设置</caseinline><defaultinline>工具 - 选项</defaultinline></switchinline> - 语言设置 - 语言 处定义默认值。"
@@ -55411,7 +51748,6 @@ msgstr "将选择部分按由低到高的顺序排列。您可以在“数据”
msgctxt ""
"12030100.xhp\n"
"hd_id3146972\n"
-"13\n"
"help.text"
msgid "Descending"
msgstr "降序"
@@ -55420,7 +51756,6 @@ msgstr "降序"
msgctxt ""
"12030100.xhp\n"
"par_id3145640\n"
-"14\n"
"help.text"
msgid "Sorts the selection from the highest value to the lowest value. You can define the sort rules on Data - Sort - Options. You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
msgstr "将选择部分按由高到低的顺序排列。您可以在“数据”-“排序”-“选项”处定义排序规则。或在 <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - 偏好设置</caseinline><defaultinline>工具 - 选项</defaultinline></switchinline> - 语言设置 - 语言 处定义默认值。"
@@ -55429,7 +51764,6 @@ msgstr "将选择部分按由高到低的顺序排列。您可以在“数据”
msgctxt ""
"12030100.xhp\n"
"hd_id3150300\n"
-"21\n"
"help.text"
msgid "Sort Ascending/Descending"
msgstr "升序/降序排序"
@@ -55438,7 +51772,6 @@ msgstr "升序/降序排序"
msgctxt ""
"12030100.xhp\n"
"par_id3158212\n"
-"22\n"
"help.text"
msgid "<ahelp hid=\".uno:SortDescending\"><variable id=\"sytext\">Sorts the selection from the highest to the lowest value, or from the lowest to the highest value. Number fields are sorted by size and text fields by the order of the characters. You can define the sort rules on Data - Sort - Options.</variable></ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
msgstr "<ahelp hid=\".uno:SortDescending\"><variable id=\"sytext\">将选定内容从最高值到最低值,或者从最低值到最高值进行排序。数值字段按大小排序,文本字段按字符顺序排序。您可以在“数据 - 排序 - 选项”中定义排序规则。</variable></ahelp> 您可以在<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - 首选项</caseinline><defaultinline>工具 - 选项</defaultinline></switchinline> - “语言设置” - “语言”中定义默认值。"
@@ -55447,7 +51780,6 @@ msgstr "<ahelp hid=\".uno:SortDescending\"><variable id=\"sytext\">将选定内
msgctxt ""
"12030100.xhp\n"
"par_id3159236\n"
-"25\n"
"help.text"
msgid "Icons on the <emph>Standard</emph> toolbar"
msgstr "<emph>标准</emph>工具栏上的图标:"
@@ -55472,7 +51804,6 @@ msgstr "<bookmark_value>排序; 数据库范围选项</bookmark_value><bookmark_
msgctxt ""
"12030200.xhp\n"
"hd_id3147228\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12030200.xhp\" name=\"Options\"> Options</link>"
msgstr "<link href=\"text/scalc/01/12030200.xhp\" name=\"选项\"> 选项</link>"
@@ -55481,7 +51812,6 @@ msgstr "<link href=\"text/scalc/01/12030200.xhp\" name=\"选项\"> 选项</link>
msgctxt ""
"12030200.xhp\n"
"par_id3153770\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/SortOptionsPage\"> Sets additional sorting options.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/SortOptionsPage\"> 设置其他排序选项。</ahelp>"
@@ -55490,7 +51820,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/SortOptionsPage\"> 设置
msgctxt ""
"12030200.xhp\n"
"hd_id3146976\n"
-"3\n"
"help.text"
msgid "Case Sensitivity"
msgstr "区分大小写"
@@ -55499,7 +51828,6 @@ msgstr "区分大小写"
msgctxt ""
"12030200.xhp\n"
"par_id3153091\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/case\"> Sorts first by uppercase letters and then by lowercase letters. For Asian languages, special handling applies.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/case\">先按大写字母排序,然后按小写字母排序。对于亚洲语言,将应用特殊的处理方法。</ahelp>"
@@ -55516,7 +51844,6 @@ msgstr "亚洲语言批注:选中<emph>区分大小写</emph>可应用多级
msgctxt ""
"12030200.xhp\n"
"hd_id3155856\n"
-"5\n"
"help.text"
msgid "Range contains column/row labels"
msgstr "范围包含列/行标签"
@@ -55525,7 +51852,6 @@ msgstr "范围包含列/行标签"
msgctxt ""
"12030200.xhp\n"
"par_id3154014\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/header\"> Omits the first row or the first column in the selection from the sort.</ahelp> The <emph>Direction</emph> setting at the bottom of the dialog defines the name and function of this check box."
msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/header\"> 排序时忽略所选内容中的第一行或第一列。</ahelp>对话框底部的<emph>方向</emph>设置定义了此复选框的名称和功能。"
@@ -55534,7 +51860,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/header\"> 排序时忽略
msgctxt ""
"12030200.xhp\n"
"hd_id3147436\n"
-"7\n"
"help.text"
msgid "Include formats"
msgstr "包含格式"
@@ -55543,7 +51868,6 @@ msgstr "包含格式"
msgctxt ""
"12030200.xhp\n"
"par_id3149377\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/formats\"> Preserves the current cell formatting.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/formats\"> 保留当前的单元格格式。</ahelp>"
@@ -55568,7 +51892,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/naturalsort\">自然排序
msgctxt ""
"12030200.xhp\n"
"hd_id3153878\n"
-"10\n"
"help.text"
msgid "Copy sort results to:"
msgstr "将排序结果复制到:"
@@ -55577,7 +51900,6 @@ msgstr "将排序结果复制到:"
msgctxt ""
"12030200.xhp\n"
"par_id3156286\n"
-"11\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/copyresult\"> Copies the sorted list to the cell range that you specify.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/copyresult\"> 将排序的列表复制到指定的单元格范围。</ahelp>"
@@ -55586,7 +51908,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/copyresult\"> 将排序的
msgctxt ""
"12030200.xhp\n"
"hd_id3153418\n"
-"12\n"
"help.text"
msgid "Sort results"
msgstr "排序结果"
@@ -55595,7 +51916,6 @@ msgstr "排序结果"
msgctxt ""
"12030200.xhp\n"
"par_id3155602\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outarealb\"> Select a named <link href=\"text/scalc/01/12010000.xhp\" name=\"cell range\"> cell range</link> where you want to display the sorted list, or enter a cell range in the input box.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outarealb\">选择要显示排序列表的已命名的<link href=\"text/scalc/01/12010000.xhp\" name=\"单元格范围\">单元格范围</link>,或者在输入框中输入单元格范围。</ahelp>"
@@ -55604,7 +51924,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outarealb\">选择要显
msgctxt ""
"12030200.xhp\n"
"hd_id3153707\n"
-"14\n"
"help.text"
msgid "Sort results"
msgstr "排序结果"
@@ -55613,7 +51932,6 @@ msgstr "排序结果"
msgctxt ""
"12030200.xhp\n"
"par_id3145642\n"
-"15\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outareaed\"> Enter the cell range where you want to display the sorted list, or select a named range from the list.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outareaed\"> 输入要显示排序列表的单元格范围,或者从列表中选择一个已命名的范围。</ahelp>"
@@ -55622,7 +51940,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outareaed\"> 输入要显
msgctxt ""
"12030200.xhp\n"
"hd_id3155445\n"
-"16\n"
"help.text"
msgid "Custom sort order"
msgstr "自定义的排序顺序"
@@ -55631,7 +51948,6 @@ msgstr "自定义的排序顺序"
msgctxt ""
"12030200.xhp\n"
"par_id3156385\n"
-"17\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/sortuser\"> Click here and then select the custom sort order that you want.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/sortuser\"> 单击此处,然后选择所需的自定义排序顺序。</ahelp>"
@@ -55640,7 +51956,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/sortuser\"> 单击此处
msgctxt ""
"12030200.xhp\n"
"hd_id3154704\n"
-"18\n"
"help.text"
msgid "Custom sort order"
msgstr "自定义的排序顺序"
@@ -55649,7 +51964,6 @@ msgstr "自定义的排序顺序"
msgctxt ""
"12030200.xhp\n"
"par_id3155962\n"
-"19\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/sortuserlb\"> Select the custom sort order that you want to apply. To define a custom sort order, choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060400.xhp\" name=\"%PRODUCTNAME Calc - Sort Lists\">%PRODUCTNAME Calc - Sort Lists</link> .</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/sortuserlb\">选择要应用的自定义排序顺序。要自定义一个排序顺序,请选择<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - 首选项</caseinline><defaultinline>工具 - 选项</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060400.xhp\" name=\"%PRODUCTNAME Calc - Sort Lists\">%PRODUCTNAME Calc - 排序列表</link>。</ahelp>"
@@ -55658,7 +51972,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/sortuserlb\">选择要应
msgctxt ""
"12030200.xhp\n"
"hd_id3149257\n"
-"28\n"
"help.text"
msgid "Language"
msgstr "语言"
@@ -55667,7 +51980,6 @@ msgstr "语言"
msgctxt ""
"12030200.xhp\n"
"hd_id3147004\n"
-"29\n"
"help.text"
msgid "Language"
msgstr "语言"
@@ -55676,7 +51988,6 @@ msgstr "语言"
msgctxt ""
"12030200.xhp\n"
"par_id3150787\n"
-"32\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/language\"> Select the language for the sorting rules.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/language\"> 选择排序规则的语言。</ahelp>"
@@ -55685,7 +51996,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/language\"> 选择排序
msgctxt ""
"12030200.xhp\n"
"hd_id3150344\n"
-"30\n"
"help.text"
msgid "Options"
msgstr "选项"
@@ -55694,7 +52004,6 @@ msgstr "选项"
msgctxt ""
"12030200.xhp\n"
"par_id3155113\n"
-"33\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/algorithmlb\"> Select a sorting option for the language.</ahelp> For example, select the \"phonebook\" option for German to include the umlaut special character in the sorting."
msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/algorithmlb\"> 选择语言的排序选项。</ahelp> 例如,对德语选择“电话簿”选项,以便在排序时包括特殊的变音字符。"
@@ -55703,7 +52012,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/algorithmlb\"> 选择语
msgctxt ""
"12030200.xhp\n"
"hd_id3152580\n"
-"20\n"
"help.text"
msgid "Direction"
msgstr "方向"
@@ -55712,7 +52020,6 @@ msgstr "方向"
msgctxt ""
"12030200.xhp\n"
"hd_id3154201\n"
-"22\n"
"help.text"
msgid "Top to Bottom (Sort Rows)"
msgstr "从上向下(对行进行排序)"
@@ -55721,7 +52028,6 @@ msgstr "从上向下(对行进行排序)"
msgctxt ""
"12030200.xhp\n"
"par_id3166430\n"
-"23\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/topdown\"> Sorts rows by the values in the active columns of the selected range.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/topdown\"> 在选定范围内,按照活动列中的值对行进行排序。</ahelp>"
@@ -55730,7 +52036,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/topdown\"> 在选定范围
msgctxt ""
"12030200.xhp\n"
"hd_id3145588\n"
-"24\n"
"help.text"
msgid "Left to Right (Sort Columns)"
msgstr "从左向右(对列进行排序)"
@@ -55739,7 +52044,6 @@ msgstr "从左向右(对列进行排序)"
msgctxt ""
"12030200.xhp\n"
"par_id3154370\n"
-"25\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/leftright\"> Sorts columns by the values in the active rows of the selected range.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/leftright\"> 在选定范围内,按照活动行中的值对列进行排序。</ahelp>"
@@ -55748,7 +52052,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/leftright\"> 在选定范
msgctxt ""
"12030200.xhp\n"
"hd_id3156290\n"
-"26\n"
"help.text"
msgid "Data area"
msgstr "数据区域"
@@ -55757,7 +52060,6 @@ msgstr "数据区域"
msgctxt ""
"12030200.xhp\n"
"par_id3156446\n"
-"27\n"
"help.text"
msgid "Displays the cell range that you want to sort."
msgstr "显示要进行排序的单元格范围。"
@@ -55774,7 +52076,6 @@ msgstr "筛选器"
msgctxt ""
"12040000.xhp\n"
"hd_id3150767\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12040000.xhp\" name=\"Filter\">Filter</link>"
msgstr "<link href=\"text/scalc/01/12040000.xhp\" name=\"筛选\">筛选</link>"
@@ -55783,7 +52084,6 @@ msgstr "<link href=\"text/scalc/01/12040000.xhp\" name=\"筛选\">筛选</link>"
msgctxt ""
"12040000.xhp\n"
"par_id3155131\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">Shows commands to filter your data.</ahelp>"
msgstr "<ahelp hid=\".\">显示可以用于筛选数据的命令。</ahelp>"
@@ -55792,7 +52092,6 @@ msgstr "<ahelp hid=\".\">显示可以用于筛选数据的命令。</ahelp>"
msgctxt ""
"12040000.xhp\n"
"par_id3146119\n"
-"7\n"
"help.text"
msgid "$[officename] automatically recognizes predefined database ranges."
msgstr "$[officename] 可以自动识别预设的数据库区域。"
@@ -55801,7 +52100,6 @@ msgstr "$[officename] 可以自动识别预设的数据库区域。"
msgctxt ""
"12040000.xhp\n"
"par_id3153363\n"
-"3\n"
"help.text"
msgid "The following filtering options are available:"
msgstr "可以使用以下筛选选项:"
@@ -55810,7 +52108,6 @@ msgstr "可以使用以下筛选选项:"
msgctxt ""
"12040000.xhp\n"
"hd_id3153728\n"
-"4\n"
"help.text"
msgid "<link href=\"text/shared/02/12090000.xhp\" name=\"Standard filter\">Standard filter</link>"
msgstr "<link href=\"text/shared/02/12090000.xhp\" name=\"标准筛选\">标准筛选</link>"
@@ -55819,7 +52116,6 @@ msgstr "<link href=\"text/shared/02/12090000.xhp\" name=\"标准筛选\">标准
msgctxt ""
"12040000.xhp\n"
"hd_id3159153\n"
-"5\n"
"help.text"
msgid "<link href=\"text/scalc/01/12040300.xhp\" name=\"Advanced filter\">Advanced filter</link>"
msgstr "<link href=\"text/scalc/01/12040300.xhp\" name=\"高级筛选\">高级筛选</link>"
@@ -55836,7 +52132,6 @@ msgstr "自动筛选"
msgctxt ""
"12040100.xhp\n"
"hd_id3153541\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">AutoFilter</link>"
msgstr "<link href=\"text/scalc/01/12040100.xhp\" name=\"自动筛选\">自动筛选</link>"
@@ -55845,7 +52140,6 @@ msgstr "<link href=\"text/scalc/01/12040100.xhp\" name=\"自动筛选\">自动
msgctxt ""
"12040100.xhp\n"
"par_id3148550\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:DataFilterAutoFilter\">Automatically filters the selected cell range, and creates one-row list boxes where you can choose the items that you want to display.</ahelp>"
msgstr "<ahelp hid=\".uno:DataFilterAutoFilter\">自动筛选选定的单元格区域,并创建单行列表框,从中可以选择要显示的项。</ahelp>"
@@ -55854,13 +52148,11 @@ msgstr "<ahelp hid=\".uno:DataFilterAutoFilter\">自动筛选选定的单元格
msgctxt ""
"12040100.xhp\n"
"par_id3145171\n"
-"3\n"
"help.text"
msgid "<link href=\"text/shared/02/12090000.xhp\" name=\"Default filter\">Default filter</link>"
msgstr "<link href=\"text/shared/02/12090000.xhp\" name=\"默认筛选\">默认筛选</link>"
#: 12040201.xhp
-#, fuzzy
msgctxt ""
"12040201.xhp\n"
"tit\n"
@@ -55872,7 +52164,6 @@ msgstr "选项"
msgctxt ""
"12040201.xhp\n"
"hd_id3148492\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">More</link>"
msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"更多\">更多</link>"
@@ -55881,7 +52172,6 @@ msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"更多\">更多</link>"
msgctxt ""
"12040201.xhp\n"
"par_id3159400\n"
-"2\n"
"help.text"
msgid "<variable id=\"zusaetzetext\"><ahelp hid=\"modules/scalc/ui/advancedfilterdialog/more\">Shows additional filter options.</ahelp></variable>"
msgstr "<variable id=\"zusaetzetext\"><ahelp hid=\"modules/scalc/ui/advancedfilterdialog/more\">显示其他过滤选项。</ahelp></variable>"
@@ -55890,7 +52180,6 @@ msgstr "<variable id=\"zusaetzetext\"><ahelp hid=\"modules/scalc/ui/advancedfilt
msgctxt ""
"12040201.xhp\n"
"hd_id3150791\n"
-"3\n"
"help.text"
msgid "Options"
msgstr "选项"
@@ -55899,7 +52188,6 @@ msgstr "选项"
msgctxt ""
"12040201.xhp\n"
"hd_id3154138\n"
-"5\n"
"help.text"
msgid "Case sensitive"
msgstr "区分大小写"
@@ -55908,7 +52196,6 @@ msgstr "区分大小写"
msgctxt ""
"12040201.xhp\n"
"par_id3147228\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/case\">Distinguishes between uppercase and lowercase letters when filtering the data.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/case\">过滤数据时区分字母的大小写。</ahelp>"
@@ -55917,7 +52204,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/case\">过滤数据
msgctxt ""
"12040201.xhp\n"
"hd_id3154908\n"
-"7\n"
"help.text"
msgid "Range contains column labels"
msgstr "区域含有列标签"
@@ -55926,7 +52212,6 @@ msgstr "区域含有列标签"
msgctxt ""
"12040201.xhp\n"
"par_id3153768\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/header\">Includes the column labels in the first row of a cell range.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/header\">单元格范围的第一行中包含列标签。</ahelp>"
@@ -55935,7 +52220,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/header\">单元格范
msgctxt ""
"12040201.xhp\n"
"hd_id3155306\n"
-"9\n"
"help.text"
msgid "Copy results to"
msgstr "复制结果到"
@@ -55944,7 +52228,6 @@ msgstr "复制结果到"
msgctxt ""
"12040201.xhp\n"
"par_id3154319\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/edcopyarea\">Select the check box, and then select the cell range where you want to display the filter results.</ahelp> You can also select a named range from the list."
msgstr "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/edcopyarea\">选中复选框,然后再选择用于显示过滤结果的单元格范围。</ahelp>也可以从列表中选择命名的范围。"
@@ -55953,17 +52236,14 @@ msgstr "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/edcopyarea\">选中
msgctxt ""
"12040201.xhp\n"
"hd_id3145272\n"
-"11\n"
"help.text"
msgid "Regular expression"
msgstr "正则表达式"
#: 12040201.xhp
-#, fuzzy
msgctxt ""
"12040201.xhp\n"
"par_id3152576\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/regexp\">Allows you to use regular expressions in the filter definition.</ahelp> For a list of the regular expressions that $[officename] supports, click <link href=\"text/shared/01/02100001.xhp\" name=\"here\">here</link>."
msgstr "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/regexp\">允许您在过滤器定义中使用通配符。</ahelp>如果需要 $[officename] 所支持的正则表达式列表,请单击<link href=\"text/shared/01/02100001.xhp\" name=\"此处\">此处</link>。"
@@ -55972,7 +52252,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/regexp\">允许您在
msgctxt ""
"12040201.xhp\n"
"par_id3149377\n"
-"33\n"
"help.text"
msgid "If the <emph>Regular Expressions</emph> check box is selected, you can use regular expressions in the Value field if the Condition list box is set to '=' EQUAL or '<>' UNEQUAL. This also applies to the respective cells that you reference for an advanced filter."
msgstr "如果选中了<emph>正则表达式</emph>复选框,则可以在“值”字段中使用正则表达式(如果将“条件”列表框设置为 '=' EQUAL 或者 '<>' UNEQUAL)。这也适用于分别为高级过滤器引用的单元格。"
@@ -55981,7 +52260,6 @@ msgstr "如果选中了<emph>正则表达式</emph>复选框,则可以在“
msgctxt ""
"12040201.xhp\n"
"hd_id3149958\n"
-"34\n"
"help.text"
msgid "No duplication"
msgstr "不生成复件"
@@ -55990,7 +52268,6 @@ msgstr "不生成复件"
msgctxt ""
"12040201.xhp\n"
"par_id3153876\n"
-"35\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/unique\">Excludes duplicate rows in the list of filtered data.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/unique\">排除过滤数据列表中的重复行。</ahelp>"
@@ -55999,7 +52276,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/unique\">排除过滤
msgctxt ""
"12040201.xhp\n"
"hd_id3154018\n"
-"40\n"
"help.text"
msgid "Keep filter criteria"
msgstr "保留筛选条件"
@@ -56008,7 +52284,6 @@ msgstr "保留筛选条件"
msgctxt ""
"12040201.xhp\n"
"par_id3149123\n"
-"41\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/standardfilterdialog/destpers\">Select the <emph>Copy results to</emph> check box, and then specify the destination range where you want to display the filtered data. If this box is checked, the destination range remains linked to the source range. You must have defined the source range under <emph>Data - Define range</emph> as a database range.</ahelp> Following this, you can reapply the defined filter at any time as follows: click into the source range, then choose <emph>Data - Refresh Range</emph>."
msgstr "<ahelp hid=\"modules/scalc/ui/standardfilterdialog/destpers\">选择<emph>将结果复制到</emph>复选框,然后指定用于显示过滤数据的目标区域。如果选中了此复选框,目标区域将保持与源区域的链接。必须已经在<emph>数据 - 定义区域</emph>下将源区域定义为数据库区域。</ahelp>这样,就可以按照以下方法随时重复应用已定义的过滤器:在源区域中单击,然后选择<emph>数据 - 刷新区域</emph>。"
@@ -56017,7 +52292,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/standardfilterdialog/destpers\">选择<emp
msgctxt ""
"12040201.xhp\n"
"hd_id3149018\n"
-"36\n"
"help.text"
msgid "Data range"
msgstr "数据区域"
@@ -56026,7 +52300,6 @@ msgstr "数据区域"
msgctxt ""
"12040201.xhp\n"
"par_id3150042\n"
-"37\n"
"help.text"
msgid "Displays the cell range or the name of the cell range that you want to filter."
msgstr "显示要筛选的单元格区域或其名称。"
@@ -56043,7 +52316,6 @@ msgstr "高级筛选"
msgctxt ""
"12040300.xhp\n"
"hd_id3158394\n"
-"1\n"
"help.text"
msgid "Advanced Filter"
msgstr "高级筛选"
@@ -56052,7 +52324,6 @@ msgstr "高级筛选"
msgctxt ""
"12040300.xhp\n"
"par_id3156281\n"
-"2\n"
"help.text"
msgid "<variable id=\"spezialfilter\"><ahelp hid=\".uno:DataFilterSpecialFilter\">Defines an advanced filter.</ahelp></variable>"
msgstr "<variable id=\"spezialfilter\"><ahelp hid=\".uno:DataFilterSpecialFilter\">定义高级筛选。</ahelp></variable>"
@@ -56061,7 +52332,6 @@ msgstr "<variable id=\"spezialfilter\"><ahelp hid=\".uno:DataFilterSpecialFilter
msgctxt ""
"12040300.xhp\n"
"hd_id3153771\n"
-"25\n"
"help.text"
msgid "Read filter criteria from"
msgstr "筛选条件来自(F)"
@@ -56070,7 +52340,6 @@ msgstr "筛选条件来自(F)"
msgctxt ""
"12040300.xhp\n"
"par_id3147426\n"
-"26\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/edfilterarea\">Select the named range, or enter the cell range that contains the filter criteria that you want to use.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/edfilterarea\">选择命名的区域,或者输入含有要使用的筛选条件的单元格区域。</ahelp>"
@@ -56079,7 +52348,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/edfilterarea\">选择
msgctxt ""
"12040300.xhp\n"
"hd_id3153188\n"
-"27\n"
"help.text"
msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">More</link>"
msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"更多\">更多</link>"
@@ -56096,7 +52364,6 @@ msgstr "重置筛选"
msgctxt ""
"12040400.xhp\n"
"hd_id3153087\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12040400.xhp\" name=\"Remove Filter\">Reset Filter</link>"
msgstr "<link href=\"text/scalc/01/12040400.xhp\" name=\"重置筛选\">重置筛选</link>"
@@ -56105,7 +52372,6 @@ msgstr "<link href=\"text/scalc/01/12040400.xhp\" name=\"重置筛选\">重置
msgctxt ""
"12040400.xhp\n"
"par_id3154760\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:DataFilterRemoveFilter\">Removes the filter from the selected cell range. To enable this command, click inside the cell area where the filter was applied.</ahelp>"
msgstr "<ahelp hid=\".uno:DataFilterRemoveFilter\">从选定的单元格区域中删除筛选。要启用此命令,请在已应用筛选的单元格区域中单击。</ahelp>"
@@ -56130,7 +52396,6 @@ msgstr "<bookmark_value>数据库范围; 隐藏自动筛选</bookmark_value>"
msgctxt ""
"12040500.xhp\n"
"hd_id3150276\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12040500.xhp\" name=\"Hide AutoFilter\">Hide AutoFilter</link>"
msgstr "<link href=\"text/scalc/01/12040500.xhp\" name=\"隐藏自动筛选\">隐藏自动筛选</link>"
@@ -56139,7 +52404,6 @@ msgstr "<link href=\"text/scalc/01/12040500.xhp\" name=\"隐藏自动筛选\">
msgctxt ""
"12040500.xhp\n"
"par_id3156326\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:DataFilterHideAutoFilter\" visibility=\"visible\">Hides the AutoFilter buttons in the selected cell range.</ahelp>"
msgstr "<ahelp hid=\".uno:DataFilterHideAutoFilter\" visibility=\"visible\">隐藏选定单元格区域中的“自动筛选”按钮。</ahelp>"
@@ -56156,7 +52420,6 @@ msgstr "分类汇总"
msgctxt ""
"12050000.xhp\n"
"hd_id3153822\n"
-"1\n"
"help.text"
msgid "Subtotals"
msgstr "分类汇总"
@@ -56165,7 +52428,6 @@ msgstr "分类汇总"
msgctxt ""
"12050000.xhp\n"
"par_id3145119\n"
-"2\n"
"help.text"
msgid "<variable id=\"teilergebnisse\"><ahelp hid=\".uno:DataSubTotals\" visibility=\"visible\">Calculates subtotals for the columns that you select.</ahelp></variable> $[officename] uses the SUM function to automatically calculate the subtotal and grand total values in a labeled range. You can also use other functions to perform the calculation. $[officename] automatically recognizes a defined database area when you place the cursor in it."
msgstr "<variable id=\"teilergebnisse\"><ahelp hid=\".uno:DataSubTotals\" visibility=\"visible\">计算选定列的分类汇总。</ahelp></variable>$[officename] 使用 SUM 函数自动计算标记区域的分类汇总值和汇总值,您也可以使用其他函数来执行此运算。当把光标放在指定的数据库区域中时,$[officename] 将自动对该区域进行识别。"
@@ -56174,7 +52436,6 @@ msgstr "<variable id=\"teilergebnisse\"><ahelp hid=\".uno:DataSubTotals\" visibi
msgctxt ""
"12050000.xhp\n"
"par_id3153896\n"
-"3\n"
"help.text"
msgid "For example, you can generate a sales summary for a certain postal code based on data from a client database."
msgstr "例如,基于客户数据库中的数据,您可以根据某个邮政编码生成销售摘要。"
@@ -56183,7 +52444,6 @@ msgstr "例如,基于客户数据库中的数据,您可以根据某个邮政
msgctxt ""
"12050000.xhp\n"
"hd_id3163708\n"
-"4\n"
"help.text"
msgid "Delete"
msgstr "删除"
@@ -56192,7 +52452,6 @@ msgstr "删除"
msgctxt ""
"12050000.xhp\n"
"par_id3154125\n"
-"5\n"
"help.text"
msgid "Deletes the subtotal rows in the selected area."
msgstr "删除选定区域中的分类汇总行。"
@@ -56209,7 +52468,6 @@ msgstr "第 1 组、第 2 组和第 3 组"
msgctxt ""
"12050100.xhp\n"
"hd_id3149784\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12050100.xhp\" name=\"1st, 2nd, 3rd Group\">1st, 2nd, 3rd Group</link>"
msgstr "<link href=\"text/scalc/01/12050100.xhp\" name=\"第 1 组、第 2 组和第 3 组\">第 1 组、第 2 组和第 3 组</link>"
@@ -56218,7 +52476,6 @@ msgstr "<link href=\"text/scalc/01/12050100.xhp\" name=\"第 1 组、第 2 组
msgctxt ""
"12050100.xhp\n"
"par_id3145068\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/subtotalgrppage/SubTotalGrpPage\">Specify the settings for up to three subtotal groups. Each tab has the same layout.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/subtotalgrppage/SubTotalGrpPage\">指定三个分类汇总组的设置。每个选项卡具有相同的布局。</ahelp>"
@@ -56227,7 +52484,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/subtotalgrppage/SubTotalGrpPage\">指定
msgctxt ""
"12050100.xhp\n"
"par_id3148797\n"
-"3\n"
"help.text"
msgid "To insert subtotal values into a table:"
msgstr "要在工作表中插入分类汇总值:"
@@ -56236,7 +52492,6 @@ msgstr "要在工作表中插入分类汇总值:"
msgctxt ""
"12050100.xhp\n"
"par_id3154908\n"
-"13\n"
"help.text"
msgid "Ensure that the columns of the table have labels."
msgstr "确保表格中的列具有标签。"
@@ -56245,7 +52500,6 @@ msgstr "确保表格中的列具有标签。"
msgctxt ""
"12050100.xhp\n"
"par_id3153968\n"
-"4\n"
"help.text"
msgid "Select the table or the area in the table that you want to calculate subtotals for, and then choose <emph>Data – Subtotals</emph>."
msgstr "选择要计算分类汇总的表格或表格中的区域,然后选择<emph>数据 - 分类汇总</emph>。"
@@ -56254,7 +52508,6 @@ msgstr "选择要计算分类汇总的表格或表格中的区域,然后选择
msgctxt ""
"12050100.xhp\n"
"par_id3161831\n"
-"5\n"
"help.text"
msgid "In the <emph>Group By</emph> box, select the column that you want to add the subtotals to."
msgstr "在<emph>组合依据</emph>框中,选择要向其中添加分类汇总的列。"
@@ -56263,7 +52516,6 @@ msgstr "在<emph>组合依据</emph>框中,选择要向其中添加分类汇
msgctxt ""
"12050100.xhp\n"
"par_id3153188\n"
-"6\n"
"help.text"
msgid "In the <emph>Calculate subtotals for</emph> box, select the check boxes for the columns containing the values that you want to subtotal."
msgstr "在<emph>分类汇总计算</emph>框中,如果您希望对某些列中的值进行分类汇总,请选中这些列对应的复选框。"
@@ -56272,7 +52524,6 @@ msgstr "在<emph>分类汇总计算</emph>框中,如果您希望对某些列
msgctxt ""
"12050100.xhp\n"
"par_id3152460\n"
-"14\n"
"help.text"
msgid "In the <emph>Use function</emph> box, select the function that you want to use to calculate the subtotals."
msgstr "在<emph>计算规则</emph>框中,选择用于计算分类汇总的函数。"
@@ -56281,7 +52532,6 @@ msgstr "在<emph>计算规则</emph>框中,选择用于计算分类汇总的
msgctxt ""
"12050100.xhp\n"
"par_id3154321\n"
-"15\n"
"help.text"
msgid "Click <emph>OK</emph>."
msgstr "单击<emph>确定</emph>。"
@@ -56290,7 +52540,6 @@ msgstr "单击<emph>确定</emph>。"
msgctxt ""
"12050100.xhp\n"
"hd_id3156441\n"
-"7\n"
"help.text"
msgid "Group by"
msgstr "组合依据"
@@ -56299,7 +52548,6 @@ msgstr "组合依据"
msgctxt ""
"12050100.xhp\n"
"par_id3154013\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/subtotalgrppage/group_by\">Select the column that you want to control the subtotal calculation process. If the contents of the selected column change, the subtotals are automatically recalculated.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/subtotalgrppage/group_by\">选择需要控制分类汇总计算过程的列。如果选定列的内容发生变化,将自动重新计算分类汇总。</ahelp>"
@@ -56308,7 +52556,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/subtotalgrppage/group_by\">选择需要控
msgctxt ""
"12050100.xhp\n"
"hd_id3154943\n"
-"9\n"
"help.text"
msgid "Calculate subtotals for"
msgstr "分类汇总计算"
@@ -56317,7 +52564,6 @@ msgstr "分类汇总计算"
msgctxt ""
"12050100.xhp\n"
"par_id3147125\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/subtotalgrppage/columns\">Select the column(s) containing the values that you want to subtotal.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/subtotalgrppage/columns\">选择要对其中的数值进行分类汇总的列。</ahelp>"
@@ -56326,7 +52572,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/subtotalgrppage/columns\">选择要对其
msgctxt ""
"12050100.xhp\n"
"hd_id3156283\n"
-"11\n"
"help.text"
msgid "Use function"
msgstr "计算规则"
@@ -56335,7 +52580,6 @@ msgstr "计算规则"
msgctxt ""
"12050100.xhp\n"
"par_id3145647\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/subtotalgrppage/functions\">Select the mathematical function that you want to use to calculate the subtotals.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/subtotalgrppage/functions\">选择计算分类汇总时要使用的数学函数。</ahelp>"
@@ -56360,7 +52604,6 @@ msgstr "<bookmark_value>计算; 分类汇总</bookmark_value>"
msgctxt ""
"12050200.xhp\n"
"hd_id3154758\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12050200.xhp\" name=\"Options\">Options</link>"
msgstr "<link href=\"text/scalc/01/12050200.xhp\" name=\"选项\">选项</link>"
@@ -56369,7 +52612,6 @@ msgstr "<link href=\"text/scalc/01/12050200.xhp\" name=\"选项\">选项</link>"
msgctxt ""
"12050200.xhp\n"
"par_id3154124\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"HID_SCPAGE_SUBT_OPTIONS\">Specify the settings for calculating and presenting subtotals.</ahelp>"
msgstr "<ahelp hid=\"HID_SCPAGE_SUBT_OPTIONS\">指定有关计算和显示分类汇总的设置。</ahelp>"
@@ -56378,7 +52620,6 @@ msgstr "<ahelp hid=\"HID_SCPAGE_SUBT_OPTIONS\">指定有关计算和显示分类
msgctxt ""
"12050200.xhp\n"
"hd_id3156422\n"
-"3\n"
"help.text"
msgid "Page break between groups"
msgstr "组合之间分页"
@@ -56387,7 +52628,6 @@ msgstr "组合之间分页"
msgctxt ""
"12050200.xhp\n"
"par_id3147317\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/pagebreak\">Inserts a new page after each group of subtotaled data.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/pagebreak\">在每个分类汇总数据组后插入一个新页。</ahelp>"
@@ -56396,7 +52636,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/pagebreak\">在每个
msgctxt ""
"12050200.xhp\n"
"hd_id3146985\n"
-"5\n"
"help.text"
msgid "Case sensitive"
msgstr "区分大小写"
@@ -56405,7 +52644,6 @@ msgstr "区分大小写"
msgctxt ""
"12050200.xhp\n"
"par_id3153190\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/case\">Recalculates subtotals when you change the case of a data label.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/case\">当修改数据标志的大小写后,重新计算分类汇总。</ahelp>"
@@ -56414,7 +52652,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/case\">当修改数据
msgctxt ""
"12050200.xhp\n"
"hd_id3151119\n"
-"7\n"
"help.text"
msgid "Pre-sort area according to groups"
msgstr "根据组合对区域预排序"
@@ -56423,7 +52660,6 @@ msgstr "根据组合对区域预排序"
msgctxt ""
"12050200.xhp\n"
"par_id3149664\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/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=\"modules/scalc/ui/subtotaloptionspage/sort\">将各个分组选项卡上<emph>分组依据</emph>框中指定的区域按照选定的列进行排序。</ahelp>"
@@ -56432,7 +52668,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/sort\">将各个分组
msgctxt ""
"12050200.xhp\n"
"hd_id3153951\n"
-"9\n"
"help.text"
msgid "Sort"
msgstr "排序"
@@ -56441,7 +52676,6 @@ msgstr "排序"
msgctxt ""
"12050200.xhp\n"
"hd_id3145252\n"
-"11\n"
"help.text"
msgid "Include formats"
msgstr "包含格式"
@@ -56450,7 +52684,6 @@ msgstr "包含格式"
msgctxt ""
"12050200.xhp\n"
"par_id3147125\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/formats\">Considers formatting attributes when sorting.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/formats\">排序时考虑格式化属性。</ahelp>"
@@ -56459,7 +52692,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/formats\">排序时考
msgctxt ""
"12050200.xhp\n"
"hd_id3155418\n"
-"13\n"
"help.text"
msgid "Custom sort order"
msgstr "自定义的排序顺序"
@@ -56468,7 +52700,6 @@ msgstr "自定义的排序顺序"
msgctxt ""
"12050200.xhp\n"
"par_id3149400\n"
-"14\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/lbuserdef\">Uses a custom sorting order that you defined in the Options dialog box at <emph>%PRODUCTNAME Calc - Sort Lists</emph>.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/lbuserdef\">使用您在“选项”对话框的 <emph> %PRODUCTNAME Calc - 排序列表</emph>中自定义的排序顺序。</ahelp>"
@@ -56477,7 +52708,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/lbuserdef\">使用您
msgctxt ""
"12050200.xhp\n"
"hd_id3149121\n"
-"15\n"
"help.text"
msgid "Ascending"
msgstr "升序"
@@ -56486,7 +52716,6 @@ msgstr "升序"
msgctxt ""
"12050200.xhp\n"
"par_id3155068\n"
-"16\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/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=\"modules/scalc/ui/subtotaloptionspage/ascending\">以最低值为开头排序。您可以在“数据 - 排序 - 选项”中定义排序规则。</ahelp> 您可以在“工具 - 选项 - 语言设置 - 语言”中定义默认值。"
@@ -56495,7 +52724,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/ascending\">以最低
msgctxt ""
"12050200.xhp\n"
"hd_id3155443\n"
-"17\n"
"help.text"
msgid "Descending"
msgstr "降序"
@@ -56504,7 +52732,6 @@ msgstr "降序"
msgctxt ""
"12050200.xhp\n"
"par_id3153766\n"
-"18\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/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=\"modules/scalc/ui/subtotaloptionspage/descending\">以最高值为开头排序。您可以在“数据 - 排序 - 选项”中定义排序规则。</ahelp> 您可以在“工具 - 选项 - 语言设置 - 语言”中定义默认值。"
@@ -56521,7 +52748,6 @@ msgstr "多重运算"
msgctxt ""
"12060000.xhp\n"
"hd_id3153381\n"
-"1\n"
"help.text"
msgid "Multiple Operations"
msgstr "多重运算"
@@ -56530,7 +52756,6 @@ msgstr "多重运算"
msgctxt ""
"12060000.xhp\n"
"par_id3154140\n"
-"2\n"
"help.text"
msgid "<variable id=\"mehrfachoperationen\"><ahelp hid=\".uno:TableOperationDialog\">Applies the same formula to different cells, but with different parameter values.</ahelp></variable>"
msgstr "<variable id=\"mehrfachoperationen\"><ahelp hid=\".uno:TableOperationDialog\">可以对不同的单元格应用相同的公式,但需要使用不同的参数值。</ahelp></variable>"
@@ -56539,7 +52764,6 @@ msgstr "<variable id=\"mehrfachoperationen\"><ahelp hid=\".uno:TableOperationDia
msgctxt ""
"12060000.xhp\n"
"par_id3152598\n"
-"5\n"
"help.text"
msgid "The <emph>Row</emph> or <emph>Column</emph> box must contain a reference to the first cell of the selected range."
msgstr "<emph>行</emph>或<emph>列</emph>框必须包含选定区域中第一个单元格的引用。"
@@ -56548,7 +52772,6 @@ msgstr "<emph>行</emph>或<emph>列</emph>框必须包含选定区域中第一
msgctxt ""
"12060000.xhp\n"
"par_id3154011\n"
-"16\n"
"help.text"
msgid "If you export a spreadsheet containing multiple operations to Microsoft Excel, the location of the cells containing the formula must be fully defined relative to the data range."
msgstr "如果将含有多重计算的电子表格导出到 Microsoft Excel,则含有公式的单元格的位置必须完全相对于数据区域进行定义。"
@@ -56557,7 +52780,6 @@ msgstr "如果将含有多重计算的电子表格导出到 Microsoft Excel,
msgctxt ""
"12060000.xhp\n"
"hd_id3156441\n"
-"3\n"
"help.text"
msgid "Defaults"
msgstr "默认"
@@ -56566,7 +52788,6 @@ msgstr "默认"
msgctxt ""
"12060000.xhp\n"
"hd_id3154492\n"
-"6\n"
"help.text"
msgid "Formulas"
msgstr "公式"
@@ -56575,7 +52796,6 @@ msgstr "公式"
msgctxt ""
"12060000.xhp\n"
"par_id3151073\n"
-"7\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/multipleoperationsdialog/formulas\">Enter the cell references for the cells containing the formulas that you want to use in the multiple operation.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/multipleoperationsdialog/formulas\">输入多重计算中要使用的公式所在单元格的单元格引用。</ahelp>"
@@ -56584,7 +52804,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/multipleoperationsdialog/formulas\">输入
msgctxt ""
"12060000.xhp\n"
"hd_id3154729\n"
-"8\n"
"help.text"
msgid "Row"
msgstr "行"
@@ -56593,7 +52812,6 @@ msgstr "行"
msgctxt ""
"12060000.xhp\n"
"par_id3148456\n"
-"9\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/multipleoperationsdialog/row\">Enter the input cell reference that you want to use as a variable for the rows in the data table.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/multipleoperationsdialog/row\">输入在数据表格中用作行变量的输入单元格引用。</ahelp>"
@@ -56602,7 +52820,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/multipleoperationsdialog/row\">输入在
msgctxt ""
"12060000.xhp\n"
"hd_id3150718\n"
-"14\n"
"help.text"
msgid "Column"
msgstr "列"
@@ -56611,7 +52828,6 @@ msgstr "列"
msgctxt ""
"12060000.xhp\n"
"par_id3150327\n"
-"15\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/multipleoperationsdialog/col\">Enter the input cell reference that you want to use as a variable for the columns in the data table.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/multipleoperationsdialog/col\">输入在数据表格中用作列变量的输入单元格引用。</ahelp>"
@@ -56628,7 +52844,6 @@ msgstr "合并计算"
msgctxt ""
"12070000.xhp\n"
"hd_id3148946\n"
-"1\n"
"help.text"
msgid "Consolidate"
msgstr "合并计算"
@@ -56637,7 +52852,6 @@ msgstr "合并计算"
msgctxt ""
"12070000.xhp\n"
"par_id3148798\n"
-"2\n"
"help.text"
msgid "<variable id=\"konsolidieren\"><ahelp hid=\".uno:DataConsolidate\">Combines data from one or more independent cell ranges and calculates a new range using the function that you specify.</ahelp></variable>"
msgstr "<variable id=\"konsolidieren\"><ahelp hid=\".uno:DataConsolidate\">用指定的函数将一个或多个独立单元格范围中的数据合并起来,并将结果显示在新的单元格范围中。</ahelp></variable>"
@@ -56646,7 +52860,6 @@ msgstr "<variable id=\"konsolidieren\"><ahelp hid=\".uno:DataConsolidate\">用
msgctxt ""
"12070000.xhp\n"
"hd_id3150010\n"
-"8\n"
"help.text"
msgid "Function"
msgstr "函数"
@@ -56655,7 +52868,6 @@ msgstr "函数"
msgctxt ""
"12070000.xhp\n"
"par_id3149377\n"
-"9\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/func\">Select the function that you want to use to consolidate the data.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/func\">选择合并计算要使用的函数。</ahelp>"
@@ -56664,7 +52876,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/func\">选择合并计
msgctxt ""
"12070000.xhp\n"
"hd_id3147127\n"
-"10\n"
"help.text"
msgid "Consolidation ranges"
msgstr "合并计算数据区域"
@@ -56673,7 +52884,6 @@ msgstr "合并计算数据区域"
msgctxt ""
"12070000.xhp\n"
"par_id3151075\n"
-"11\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/consareas\">Displays the cell ranges that you want to consolidate.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/consareas\">显示要进行合并计算的单元格范围。</ahelp>"
@@ -56682,7 +52892,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/consareas\">显示要进
msgctxt ""
"12070000.xhp\n"
"hd_id3147397\n"
-"12\n"
"help.text"
msgid "Source data range"
msgstr "源数据区域"
@@ -56691,7 +52900,6 @@ msgstr "源数据区域"
msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">指定要与<emph>合并计算范围</emph>框中所列表元格范围进行合并计算的单元格范围。在工作表中选择单元格范围,然后单击<emph>添加</emph>。您也可以从<emph>源数据区域</emph>列表中选择预定义的单元格名称。</ahelp>"
@@ -56700,7 +52908,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">指定要
msgctxt ""
"12070000.xhp\n"
"hd_id3155768\n"
-"15\n"
"help.text"
msgid "Copy results to"
msgstr "复制结果到"
@@ -56709,7 +52916,6 @@ msgstr "复制结果到"
msgctxt ""
"12070000.xhp\n"
"par_id3147341\n"
-"16\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddestarea\">Displays the first cell in the range where the consolidation results will be displayed.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddestarea\">显示范围中的第一个单元格,合并计算结果将显示在该单元格中。</ahelp>"
@@ -56718,7 +52924,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddestarea\">显示范
msgctxt ""
"12070000.xhp\n"
"hd_id3147345\n"
-"17\n"
"help.text"
msgid "Add"
msgstr "添加"
@@ -56727,13 +52932,11 @@ msgstr "添加"
msgctxt ""
"12070000.xhp\n"
"par_id3155335\n"
-"18\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/add\">Adds the cell range specified in the <emph>Source data range</emph> box to the <emph>Consolidation ranges </emph>box.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/add\">将<emph>源数据区域</emph>框中指定的单元格范围添加到<emph>合并计算范围</emph>框中。</ahelp>"
#: 12070000.xhp
-#, fuzzy
msgctxt ""
"12070000.xhp\n"
"hd_id3148630\n"
@@ -56745,7 +52948,6 @@ msgstr "选项"
msgctxt ""
"12070000.xhp\n"
"par_id3159239\n"
-"20\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/more\">Shows additional <link href=\"text/scalc/01/12070100.xhp\" name=\"options\">options</link>.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/more\">显示其他<link href=\"text/scalc/01/12070100.xhp\" name=\"选项\">选项</link>。</ahelp>"
@@ -56762,7 +52964,6 @@ msgstr "合并方式"
msgctxt ""
"12070100.xhp\n"
"hd_id3151210\n"
-"1\n"
"help.text"
msgid "Consolidate by"
msgstr "合并方式"
@@ -56771,7 +52972,6 @@ msgstr "合并方式"
msgctxt ""
"12070100.xhp\n"
"hd_id3125864\n"
-"2\n"
"help.text"
msgid "Consolidate by"
msgstr "合并方式"
@@ -56780,7 +52980,6 @@ msgstr "合并方式"
msgctxt ""
"12070100.xhp\n"
"par_id3154909\n"
-"3\n"
"help.text"
msgid "Use this section if the cell ranges that you want to consolidate contain labels. You only need to select these options if the consolidation ranges contain similar labels and the data arranged is arranged differently."
msgstr "如果要合并的单元格区域包含标签,请使用此区域。只有当合并区域含有相似的标签并且数据未按相同的顺序排列时,才需要选择这些选项。"
@@ -56789,7 +52988,6 @@ msgstr "如果要合并的单元格区域包含标签,请使用此区域。只
msgctxt ""
"12070100.xhp\n"
"hd_id3153968\n"
-"4\n"
"help.text"
msgid "Row labels"
msgstr "行标签"
@@ -56798,7 +52996,6 @@ msgstr "行标签"
msgctxt ""
"12070100.xhp\n"
"par_id3150441\n"
-"5\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/byrow\" visibility=\"visible\">Uses the row labels to arrange the consolidated data.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/byrow\" visibility=\"visible\">使用行标签排列合并的数据。</ahelp>"
@@ -56807,7 +53004,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/byrow\" visibility=\"vis
msgctxt ""
"12070100.xhp\n"
"hd_id3146976\n"
-"6\n"
"help.text"
msgid "Column labels"
msgstr "列标签"
@@ -56816,7 +53012,6 @@ msgstr "列标签"
msgctxt ""
"12070100.xhp\n"
"par_id3155411\n"
-"7\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/bycol\" visibility=\"visible\">Uses the column labels to arrange the consolidated data.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/bycol\" visibility=\"visible\">使用列标签排列合并的数据。</ahelp>"
@@ -56825,7 +53020,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/bycol\" visibility=\"vis
msgctxt ""
"12070100.xhp\n"
"hd_id3153191\n"
-"12\n"
"help.text"
msgid "Options"
msgstr "选项"
@@ -56834,7 +53028,6 @@ msgstr "选项"
msgctxt ""
"12070100.xhp\n"
"hd_id3159154\n"
-"8\n"
"help.text"
msgid "Link to source data"
msgstr "链接到源数据"
@@ -56843,13 +53036,11 @@ msgstr "链接到源数据"
msgctxt ""
"12070100.xhp\n"
"par_id3146986\n"
-"9\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/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=\"modules/scalc/ui/consolidatedialog/refs\" visibility=\"visible\">将合并区域中的数据链接到源数据,源数据修改时自动更新合并结果。</ahelp>"
#: 12070100.xhp
-#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3163708\n"
@@ -56861,7 +53052,6 @@ msgstr "选项"
msgctxt ""
"12070100.xhp\n"
"par_id3151118\n"
-"11\n"
"help.text"
msgid "Hides the additional options."
msgstr "隐藏附加选项。"
@@ -56886,7 +53076,6 @@ msgstr "<bookmark_value>工作表;分级显示</bookmark_value><bookmark_value>
msgctxt ""
"12080000.xhp\n"
"hd_id3152350\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12080000.xhp\" name=\"Group and Outline\">Group and Outline</link>"
msgstr "<link href=\"text/scalc/01/12080000.xhp\" name=\"Group and Outline\">分组及分级显示</link>"
@@ -56895,7 +53084,6 @@ msgstr "<link href=\"text/scalc/01/12080000.xhp\" name=\"Group and Outline\">分
msgctxt ""
"12080000.xhp\n"
"par_id3150793\n"
-"2\n"
"help.text"
msgid "You can create an outline of your data and group rows and columns together so that you can collapse and expand the groups with a single click."
msgstr "可以创建数据的分级显示,将行和列组合在一起,这样可以通过单击来折叠或展开分组。"
@@ -56904,7 +53092,6 @@ msgstr "可以创建数据的分级显示,将行和列组合在一起,这样
msgctxt ""
"12080000.xhp\n"
"hd_id3147229\n"
-"3\n"
"help.text"
msgid "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\">Group</link>"
msgstr "<link href=\"text/scalc/01/12080300.xhp\" name=\"分组\">分组</link>"
@@ -56913,7 +53100,6 @@ msgstr "<link href=\"text/scalc/01/12080300.xhp\" name=\"分组\">分组</link>"
msgctxt ""
"12080000.xhp\n"
"hd_id3153188\n"
-"4\n"
"help.text"
msgid "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\">Ungroup</link>"
msgstr "<link href=\"text/scalc/01/12080400.xhp\" name=\"取消组合\">取消组合</link>"
@@ -56938,7 +53124,6 @@ msgstr "<bookmark_value>工作表; 隐藏细节</bookmark_value>"
msgctxt ""
"12080100.xhp\n"
"hd_id3155628\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12080100.xhp\" name=\"Hide Details\">Hide Details</link>"
msgstr "<link href=\"text/scalc/01/12080100.xhp\" name=\"隐藏细节\">隐藏细节</link>"
@@ -56947,7 +53132,6 @@ msgstr "<link href=\"text/scalc/01/12080100.xhp\" name=\"隐藏细节\">隐藏
msgctxt ""
"12080100.xhp\n"
"par_id3154515\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:HideDetail\" visibility=\"visible\">Hides the details of the grouped row or column that contains the cursor. To hide all of the grouped rows or columns, select the outlined table, and then choose this command.</ahelp>"
msgstr "<ahelp hid=\".uno:HideDetail\" visibility=\"visible\">隐藏光标所在的组合行或列的细节。要隐藏所有组合行或列的细节,请先选择大纲表格,然后再选择此命令。</ahelp>"
@@ -56956,7 +53140,6 @@ msgstr "<ahelp hid=\".uno:HideDetail\" visibility=\"visible\">隐藏光标所在
msgctxt ""
"12080100.xhp\n"
"par_id3153252\n"
-"3\n"
"help.text"
msgid "To show all hidden groups, select the outlined table, and then choose <emph>Data - Group and Outline –</emph> <link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\"><emph>Show Details</emph></link>."
msgstr "要显示所有的隐藏分组,请选择对应的表格,然后选择 <emph>数据 - 分组及分级显示 – </emph> <link href=\"text/scalc/01/12080200.xhp\" name=\"显示细节\"><emph>显示细节</emph></link>."
@@ -56981,7 +53164,6 @@ msgstr "<bookmark_value>表格; 显示细节</bookmark_value>"
msgctxt ""
"12080200.xhp\n"
"hd_id3153561\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\">Show Details</link>"
msgstr "<link href=\"text/scalc/01/12080200.xhp\" name=\"显示细节\">显示细节</link>"
@@ -56990,7 +53172,6 @@ msgstr "<link href=\"text/scalc/01/12080200.xhp\" name=\"显示细节\">显示
msgctxt ""
"12080200.xhp\n"
"par_id3153822\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:ShowDetail\">Shows the details of the grouped row or column that contains the cursor. To show the details of all of the grouped rows or columns, select the outlined table, and then choose this command.</ahelp>"
msgstr "<ahelp hid=\".uno:ShowDetail\">显示光标所在的组合行或列的细节。要显示所有组合行或列的详细信息,请先选择大纲表格,然后再选择此命令。</ahelp>"
@@ -56999,7 +53180,6 @@ msgstr "<ahelp hid=\".uno:ShowDetail\">显示光标所在的组合行或列的
msgctxt ""
"12080200.xhp\n"
"par_id3155922\n"
-"3\n"
"help.text"
msgid "To hide a selected group, choose <emph>Data - Group and Outline – </emph><link href=\"text/scalc/01/12080100.xhp\" name=\"Hide Details\"><emph>Hide Details</emph></link>."
msgstr "要隐藏一个分组, 选择 <emph>数据 - 分组及分级显示 – </emph><link href=\"text/scalc/01/12080100.xhp\" name=\"隐藏细节\"><emph>隐藏细节</emph></link>."
@@ -57024,7 +53204,6 @@ msgstr "分组"
msgctxt ""
"12080300.xhp\n"
"hd_id3153088\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\">Group</link>"
msgstr "<link href=\"text/scalc/01/12080300.xhp\" name=\"分组\">分组</link>"
@@ -57033,25 +53212,22 @@ msgstr "<link href=\"text/scalc/01/12080300.xhp\" name=\"分组\">分组</link>"
msgctxt ""
"12080300.xhp\n"
"par_id3153821\n"
-"2\n"
"help.text"
-msgid "<variable id=\"gruppierung\"><ahelp hid=\".uno:Group\" visibility=\"visible\">Defines the selected cell range as a group of rows or columns.</ahelp></variable>"
-msgstr "<variable id=\"gruppierung\"><ahelp hid=\".uno:Group\" visibility=\"visible\">将选定单元格区域定义为行组合或列组合。</ahelp></variable>"
+msgid "<variable id=\"gruppierung\"><ahelp hid=\".\">Defines the selected cell range as a group of rows or columns.</ahelp></variable>"
+msgstr ""
#: 12080300.xhp
msgctxt ""
"12080300.xhp\n"
"par_id3145069\n"
-"3\n"
"help.text"
-msgid "When you group a cell range, and outline icon appears in the margins next to the group. To hide or show the group, click the icon. To ungroup the selection, choose <emph>Data – Outline -</emph> <link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\"><emph>Ungroup</emph></link>."
-msgstr "组合单元格区域后,大纲图标将显示在组合旁的边距上。要隐藏或显示组合,请单击该图标。要取消组合,请选择<emph>数据 - 大纲 -</emph> <link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\"><emph>取消组合</emph></link>。"
+msgid "When you group a cell range, and outline icon appears in the margins next to the group. To hide or show the group, click the icon. To ungroup the selection, choose <emph>Data – Group and Outline -</emph> <link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\"><emph>Ungroup</emph></link>."
+msgstr ""
#: 12080300.xhp
msgctxt ""
"12080300.xhp\n"
"hd_id3125863\n"
-"4\n"
"help.text"
msgid "Include"
msgstr "包括"
@@ -57060,7 +53236,6 @@ msgstr "包括"
msgctxt ""
"12080300.xhp\n"
"hd_id3150448\n"
-"6\n"
"help.text"
msgid "Rows"
msgstr "行"
@@ -57069,16 +53244,14 @@ msgstr "行"
msgctxt ""
"12080300.xhp\n"
"par_id3153194\n"
-"7\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_GROUP_ROWS\" visibility=\"visible\">Groups the selected rows.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_GROUP_ROWS\" visibility=\"visible\">组合选定的行。</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/groupdialog/rows\">Groups the selected rows.</ahelp>"
+msgstr ""
#: 12080300.xhp
msgctxt ""
"12080300.xhp\n"
"hd_id3145786\n"
-"8\n"
"help.text"
msgid "Columns"
msgstr "列"
@@ -57087,10 +53260,9 @@ msgstr "列"
msgctxt ""
"12080300.xhp\n"
"par_id3146984\n"
-"9\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_GROUP_COLS\" visibility=\"visible\">Groups the selected columns.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_GROUP_COLS\" visibility=\"visible\">组合选定的列。</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/groupdialog/cols\">Groups the selected columns.</ahelp>"
+msgstr ""
#: 12080400.xhp
msgctxt ""
@@ -57104,7 +53276,6 @@ msgstr "取消组合"
msgctxt ""
"12080400.xhp\n"
"hd_id3148492\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\">Ungroup</link>"
msgstr "<link href=\"text/scalc/01/12080400.xhp\" name=\"取消组合\">取消组合</link>"
@@ -57113,7 +53284,6 @@ msgstr "<link href=\"text/scalc/01/12080400.xhp\" name=\"取消组合\">取消
msgctxt ""
"12080400.xhp\n"
"par_id3151384\n"
-"2\n"
"help.text"
msgid "<variable id=\"gruppierungauf\"><ahelp hid=\".uno:Ungroup\" visibility=\"visible\">Ungroups the selection. In a nested group, the last rows or columns that were added are removed from the group.</ahelp></variable>"
msgstr "<variable id=\"gruppierungauf\"><ahelp hid=\".uno:Ungroup\" visibility=\"visible\">取消选定内容的组合。在嵌套的组合中,将从组合中删除最后添加的行或列。</ahelp></variable>"
@@ -57122,7 +53292,6 @@ msgstr "<variable id=\"gruppierungauf\"><ahelp hid=\".uno:Ungroup\" visibility=\
msgctxt ""
"12080400.xhp\n"
"hd_id3151210\n"
-"3\n"
"help.text"
msgid "Deactivate for"
msgstr "停用"
@@ -57131,7 +53300,6 @@ msgstr "停用"
msgctxt ""
"12080400.xhp\n"
"hd_id3156280\n"
-"5\n"
"help.text"
msgid "Rows"
msgstr "行"
@@ -57140,7 +53308,6 @@ msgstr "行"
msgctxt ""
"12080400.xhp\n"
"par_id3125864\n"
-"6\n"
"help.text"
msgid "Removes selected rows from a group."
msgstr "从组合中删除选定的行。"
@@ -57149,7 +53316,6 @@ msgstr "从组合中删除选定的行。"
msgctxt ""
"12080400.xhp\n"
"hd_id3147230\n"
-"7\n"
"help.text"
msgid "Columns"
msgstr "列"
@@ -57158,7 +53324,6 @@ msgstr "列"
msgctxt ""
"12080400.xhp\n"
"par_id3154685\n"
-"8\n"
"help.text"
msgid "Removes selected columns from a group."
msgstr "从组合中删除选定的列。"
@@ -57175,7 +53340,6 @@ msgstr "自动分级显示"
msgctxt ""
"12080500.xhp\n"
"hd_id3150275\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12080500.xhp\" name=\"AutoOutline\">AutoOutline</link>"
msgstr "<link href=\"text/scalc/01/12080500.xhp\" name=\"自动分级显示\">自动分级显示</link>"
@@ -57184,7 +53348,6 @@ msgstr "<link href=\"text/scalc/01/12080500.xhp\" name=\"自动分级显示\">
msgctxt ""
"12080500.xhp\n"
"par_id3145069\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:AutoOutline\">If the selected cell range contains formulas or references, $[officename] automatically outlines the selection.</ahelp>"
msgstr "<ahelp hid=\".uno:AutoOutline\">如果选定的单元格区域含有公式或引用,$[officename] 将自动建立选定区域的分级显示。</ahelp>"
@@ -57193,7 +53356,6 @@ msgstr "<ahelp hid=\".uno:AutoOutline\">如果选定的单元格区域含有公
msgctxt ""
"12080500.xhp\n"
"par_id3148798\n"
-"10\n"
"help.text"
msgid "For example, consider the following table:"
msgstr "例如,请看下表:"
@@ -57202,7 +53364,6 @@ msgstr "例如,请看下表:"
msgctxt ""
"12080500.xhp\n"
"par_id3154123\n"
-"11\n"
"help.text"
msgid "January"
msgstr "一月"
@@ -57211,7 +53372,6 @@ msgstr "一月"
msgctxt ""
"12080500.xhp\n"
"par_id3154011\n"
-"12\n"
"help.text"
msgid "February"
msgstr "二月"
@@ -57220,7 +53380,6 @@ msgstr "二月"
msgctxt ""
"12080500.xhp\n"
"par_id3152460\n"
-"13\n"
"help.text"
msgid "March"
msgstr "三月"
@@ -57229,7 +53388,6 @@ msgstr "三月"
msgctxt ""
"12080500.xhp\n"
"par_id3146119\n"
-"14\n"
"help.text"
msgid "1st Quarter"
msgstr "第 1 季度"
@@ -57238,7 +53396,6 @@ msgstr "第 1 季度"
msgctxt ""
"12080500.xhp\n"
"par_id3155854\n"
-"15\n"
"help.text"
msgid "April"
msgstr "四月"
@@ -57247,7 +53404,6 @@ msgstr "四月"
msgctxt ""
"12080500.xhp\n"
"par_id3148575\n"
-"16\n"
"help.text"
msgid "May"
msgstr "五月"
@@ -57256,7 +53412,6 @@ msgstr "五月"
msgctxt ""
"12080500.xhp\n"
"par_id3145271\n"
-"17\n"
"help.text"
msgid "June"
msgstr "六月"
@@ -57265,7 +53420,6 @@ msgstr "六月"
msgctxt ""
"12080500.xhp\n"
"par_id3145648\n"
-"18\n"
"help.text"
msgid "2nd Quarter"
msgstr "第 2 季度"
@@ -57274,7 +53428,6 @@ msgstr "第 2 季度"
msgctxt ""
"12080500.xhp\n"
"par_id3153876\n"
-"19\n"
"help.text"
msgid "100"
msgstr "100"
@@ -57283,7 +53436,6 @@ msgstr "100"
msgctxt ""
"12080500.xhp\n"
"par_id3145251\n"
-"20\n"
"help.text"
msgid "120"
msgstr "120"
@@ -57292,7 +53444,6 @@ msgstr "120"
msgctxt ""
"12080500.xhp\n"
"par_id3149400\n"
-"21\n"
"help.text"
msgid "130"
msgstr "130"
@@ -57301,7 +53452,6 @@ msgstr "130"
msgctxt ""
"12080500.xhp\n"
"par_id3150328\n"
-"22\n"
"help.text"
msgid "350"
msgstr "350"
@@ -57310,7 +53460,6 @@ msgstr "350"
msgctxt ""
"12080500.xhp\n"
"par_id3155443\n"
-"23\n"
"help.text"
msgid "100"
msgstr "100"
@@ -57319,7 +53468,6 @@ msgstr "100"
msgctxt ""
"12080500.xhp\n"
"par_id3153713\n"
-"24\n"
"help.text"
msgid "100"
msgstr "100"
@@ -57328,7 +53476,6 @@ msgstr "100"
msgctxt ""
"12080500.xhp\n"
"par_id3156385\n"
-"25\n"
"help.text"
msgid "200"
msgstr "200"
@@ -57337,7 +53484,6 @@ msgstr "200"
msgctxt ""
"12080500.xhp\n"
"par_id3145230\n"
-"26\n"
"help.text"
msgid "400"
msgstr "400"
@@ -57346,7 +53492,6 @@ msgstr "400"
msgctxt ""
"12080500.xhp\n"
"par_id3147363\n"
-"27\n"
"help.text"
msgid "The cells for the 1st and 2nd quarters each contain a sum formula for the three cells to their left. If you apply the <emph>AutoOutline</emph> command, the table is grouped into two quarters."
msgstr "第 1 季度和第 2 季度的单元格中各有一个求和公式,用于对左边三个单元格求和。如果要采用<emph>自动显示大纲</emph>命令,该表格会自动按这两个季度组合。"
@@ -57355,7 +53500,6 @@ msgstr "第 1 季度和第 2 季度的单元格中各有一个求和公式,用
msgctxt ""
"12080500.xhp\n"
"par_id3146918\n"
-"9\n"
"help.text"
msgid "To remove the outline, select the table, and then choose <link href=\"text/scalc/01/12080600.xhp\" name=\"Data - Group and Outline - Remove\">Data - Group and Outline - Remove</link>."
msgstr "要删除分级显示,请选择该表格,然后选择<link href=\"text/scalc/01/12080600.xhp\" name=\"Data - Group and Outline - Remove\">数据 - 组合及分级显示 - 删除</link>。"
@@ -57372,7 +53516,6 @@ msgstr "删除"
msgctxt ""
"12080600.xhp\n"
"hd_id3148947\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12080600.xhp\" name=\"Remove\">Remove</link>"
msgstr "<link href=\"text/scalc/01/12080600.xhp\" name=\"删除\">删除</link>"
@@ -57381,7 +53524,6 @@ msgstr "<link href=\"text/scalc/01/12080600.xhp\" name=\"删除\">删除</link>"
msgctxt ""
"12080600.xhp\n"
"par_id3149656\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:ClearOutline\" visibility=\"visible\">Removes the outline from the selected cell range.</ahelp>"
msgstr "<ahelp hid=\".uno:ClearOutline\" visibility=\"visible\">从选定单元格区域中删除大纲。</ahelp>"
@@ -57430,7 +53572,6 @@ msgstr "数据透视表"
msgctxt ""
"12090000.xhp\n"
"hd_id3150275\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12090000.xhp\" name=\"Pivot Table\">Pivot Table</link>"
msgstr "<link href=\"text/scalc/01/12090000.xhp\" name=\"Pivot Table\">透视表</link>"
@@ -57439,7 +53580,6 @@ msgstr "<link href=\"text/scalc/01/12090000.xhp\" name=\"Pivot Table\">透视表
msgctxt ""
"12090000.xhp\n"
"par_id3153562\n"
-"2\n"
"help.text"
msgid "A pivot table provides a summary of large amounts of data. You can then rearrange the pivot table to view different summaries of the data."
msgstr "透视表提供了大量数据的概况。随后您可以重新排列透视表以查看数据的不同概况。"
@@ -57448,7 +53588,6 @@ msgstr "透视表提供了大量数据的概况。随后您可以重新排列透
msgctxt ""
"12090000.xhp\n"
"hd_id3155923\n"
-"3\n"
"help.text"
msgid "<link href=\"text/scalc/01/12090100.xhp\" name=\"Create\">Create</link>"
msgstr "<link href=\"text/scalc/01/12090100.xhp\" name=\"Create\">创建</link>"
@@ -57473,7 +53612,6 @@ msgstr "选择源"
msgctxt ""
"12090100.xhp\n"
"hd_id3153663\n"
-"1\n"
"help.text"
msgid "Select Source"
msgstr "选择源"
@@ -57482,7 +53620,6 @@ msgstr "选择源"
msgctxt ""
"12090100.xhp\n"
"par_id3145119\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:DataDataPilotRun\">Opens a dialog where you can select the source for your pivot table, and then create your table.</ahelp>"
msgstr "<ahelp hid=\".uno:DataDataPilotRun\">打开一个对话框,用于为透视表选择源并建立表格。</ahelp>"
@@ -57491,7 +53628,6 @@ msgstr "<ahelp hid=\".uno:DataDataPilotRun\">打开一个对话框,用于为
msgctxt ""
"12090100.xhp\n"
"hd_id3154760\n"
-"5\n"
"help.text"
msgid "Selection"
msgstr "选择"
@@ -57500,7 +53636,6 @@ msgstr "选择"
msgctxt ""
"12090100.xhp\n"
"par_id3150543\n"
-"6\n"
"help.text"
msgid "Select a data source for the pivot table."
msgstr "为透视表选择数据源。"
@@ -57509,7 +53644,6 @@ msgstr "为透视表选择数据源。"
msgctxt ""
"12090100.xhp\n"
"hd_id3148799\n"
-"7\n"
"help.text"
msgid "Current Selection"
msgstr "当前选择"
@@ -57518,7 +53652,6 @@ msgstr "当前选择"
msgctxt ""
"12090100.xhp\n"
"par_id3125865\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\".\">Uses the selected cells as the data source for the pivot table.</ahelp>"
msgstr "<ahelp hid=\".\">将选定单元格作为透视表的数据源。</ahelp>"
@@ -57527,7 +53660,6 @@ msgstr "<ahelp hid=\".\">将选定单元格作为透视表的数据源。</ahelp
msgctxt ""
"12090100.xhp\n"
"par_id3150011\n"
-"13\n"
"help.text"
msgid "The data columns in the pivot table use the same number format as the first data row in the current selection."
msgstr "透视表的数据列所使用的数字格式与当前选定区域中第一个数据行的数字格式相同。"
@@ -57536,7 +53668,6 @@ msgstr "透视表的数据列所使用的数字格式与当前选定区域中第
msgctxt ""
"12090100.xhp\n"
"hd_id3147348\n"
-"9\n"
"help.text"
msgid "Data source registered in $[officename]"
msgstr "$[officename] 中注册的数据源。"
@@ -57545,7 +53676,6 @@ msgstr "$[officename] 中注册的数据源。"
msgctxt ""
"12090100.xhp\n"
"par_id3145271\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\".\">Uses a table or query in a database that is registered in $[officename] as the data source for the pivot table.</ahelp>"
msgstr "<ahelp hid=\".\">将 $[officename] 中注册的数据库表格或数据库查询指定为透视表的数据源。</ahelp>"
@@ -57554,7 +53684,6 @@ msgstr "<ahelp hid=\".\">将 $[officename] 中注册的数据库表格或数据
msgctxt ""
"12090100.xhp\n"
"hd_id3146119\n"
-"11\n"
"help.text"
msgid "External source/interface"
msgstr "外部源/界面"
@@ -57563,7 +53692,6 @@ msgstr "外部源/界面"
msgctxt ""
"12090100.xhp\n"
"par_id3145647\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the <emph>External Source</emph> dialog where you can select the OLAP data source for the pivot table.</ahelp>"
msgstr "<ahelp hid=\".\">打开<emph>外部源</emph>对话框,可以在其中选择透视表的 OLAP 数据源。</ahelp>"
@@ -57588,7 +53716,6 @@ msgstr "选择数据源"
msgctxt ""
"12090101.xhp\n"
"hd_id3143268\n"
-"1\n"
"help.text"
msgid "Select Data Source"
msgstr "选择数据源"
@@ -57597,7 +53724,6 @@ msgstr "选择数据源"
msgctxt ""
"12090101.xhp\n"
"par_id3148552\n"
-"2\n"
"help.text"
msgid "Select the database and the table or query containing the data that you want to use."
msgstr "选择含有所需数据的数据库以及表格或查询。"
@@ -57606,17 +53732,14 @@ msgstr "选择含有所需数据的数据库以及表格或查询。"
msgctxt ""
"12090101.xhp\n"
"hd_id3154140\n"
-"3\n"
"help.text"
msgid "Selection"
msgstr "选择"
#: 12090101.xhp
-#, fuzzy
msgctxt ""
"12090101.xhp\n"
"par_id3125863\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\".\">You can only select databases that are registered in %PRODUCTNAME.</ahelp> To register a data source, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Base - Databases</emph>."
msgstr "<ahelp hid=\".\">只能选择在 %PRODUCTNAME 中注册的数据库。</ahelp> 要注册数据源,请选择 <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - 首选项</caseinline><defaultinline>工具 - 选项</defaultinline></switchinline> - %PRODUCTNAME Base - 数据库</emph>。"
@@ -57625,7 +53748,6 @@ msgstr "<ahelp hid=\".\">只能选择在 %PRODUCTNAME 中注册的数据库。</
msgctxt ""
"12090101.xhp\n"
"hd_id3151041\n"
-"5\n"
"help.text"
msgid "Database"
msgstr "数据库"
@@ -57634,7 +53756,6 @@ msgstr "数据库"
msgctxt ""
"12090101.xhp\n"
"par_id3156424\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/selectdatasource/database\">Select the database that contains the data source that you want to use.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/selectdatasource/database\">选择含有要使用的数据源的数据库。</ahelp>"
@@ -57643,7 +53764,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/selectdatasource/database\">选择含有
msgctxt ""
"12090101.xhp\n"
"hd_id3145364\n"
-"7\n"
"help.text"
msgid "Data source"
msgstr "数据源"
@@ -57652,7 +53772,6 @@ msgstr "数据源"
msgctxt ""
"12090101.xhp\n"
"par_id3149260\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/selectdatasource/datasource\">Select the data source that you want to use.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/selectdatasource/datasource\">选择要使用的数据源。</ahelp>"
@@ -57661,7 +53780,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/selectdatasource/datasource\">选择要使
msgctxt ""
"12090101.xhp\n"
"hd_id3147428\n"
-"9\n"
"help.text"
msgid "Type"
msgstr "Type"
@@ -57670,7 +53788,6 @@ msgstr "Type"
msgctxt ""
"12090101.xhp\n"
"par_id3150010\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/selectdatasource/type\">Click the source type of for the selected data source.</ahelp> You can choose from four source types: \"Table\", \"Query\" and \"SQL\" or SQL (Native)."
msgstr "<ahelp hid=\"modules/scalc/ui/selectdatasource/type\">单击选定数据源的源类型。</ahelp>共有四种源类型可供选择:\"表格\"、\"查询\"、\"SQL\" 和 \"SOL (Native)\"。"
@@ -57679,7 +53796,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/selectdatasource/type\">单击选定数据
msgctxt ""
"12090101.xhp\n"
"par_id3147348\n"
-"11\n"
"help.text"
msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>"
msgstr "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">透视表对话框</link>"
@@ -57704,7 +53820,6 @@ msgstr "<bookmark_value>透视表函数; 显示细节</bookmark_value><bookmark_
msgctxt ""
"12090102.xhp\n"
"hd_id3149165\n"
-"1\n"
"help.text"
msgid "Pivot Table"
msgstr "数据透视表"
@@ -57713,7 +53828,6 @@ msgstr "数据透视表"
msgctxt ""
"12090102.xhp\n"
"par_id3155922\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\".uno:DataPilotExec\">Specify the layout of the table that is generated by the pivot table.</ahelp>"
msgstr "<ahelp hid=\".uno:DataPilotExec\">指定由透视表生成的表格的布局。</ahelp>"
@@ -57722,7 +53836,6 @@ msgstr "<ahelp hid=\".uno:DataPilotExec\">指定由透视表生成的表格的
msgctxt ""
"12090102.xhp\n"
"par_id3148798\n"
-"34\n"
"help.text"
msgid "The pivot table displays data fields as buttons which you can drag and drop to define the pivot table."
msgstr "透视表以按钮的形式显示数据字段,您可以通过拖放这些按钮来定义透视表。"
@@ -57731,7 +53844,6 @@ msgstr "透视表以按钮的形式显示数据字段,您可以通过拖放这
msgctxt ""
"12090102.xhp\n"
"hd_id3154908\n"
-"18\n"
"help.text"
msgid "Layout"
msgstr "版式"
@@ -57740,7 +53852,6 @@ msgstr "版式"
msgctxt ""
"12090102.xhp\n"
"par_id3150768\n"
-"19\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/listbox-fields\">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=\"modules/scalc/ui/pivottablelayoutdialog/listbox-fields\">要定义透视表的布局,请将数据字段按钮拖放到<emph>页面字段、行字段、列字段</emph>和<emph>数据字段</emph>区域。</ahelp>也可以通过拖放来重新排列透视表中的数据字段。"
@@ -57749,7 +53860,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/listbox-fields\">
msgctxt ""
"12090102.xhp\n"
"par_id3147229\n"
-"20\n"
"help.text"
msgid "$[officename] automatically adds a caption to buttons that are dragged into the <emph>Data Fields </emph>area. The caption contains the name of the data field as well as the formula that created the data."
msgstr "$[officename] 自动为拖入到<emph>数据字段</emph>区域中的按钮加上标签。标签中含有数据字段的名称以及创建该数据的公式。"
@@ -57758,7 +53868,6 @@ msgstr "$[officename] 自动为拖入到<emph>数据字段</emph>区域中的按
msgctxt ""
"12090102.xhp\n"
"par_id3145749\n"
-"21\n"
"help.text"
msgid "To change the function that is used by a data field, double-click a button in the <emph>Data Fields</emph> area to open the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\">Data Field</link> dialog. You can also double-click buttons in the <emph>Row Fields</emph> or <emph>Column Fields</emph> areas."
msgstr "要修改数据字段使用的函数,请双击 <emph>数据字段</emph>区域中的按钮以打开<link href=\"text/scalc/01/12090105.xhp\" name=\"数据字段\">数据字段</link>对话框。也可以双击<emph>行字段</emph>或<emph>列字段</emph>区域中的按钮。"
@@ -57767,7 +53876,6 @@ msgstr "要修改数据字段使用的函数,请双击 <emph>数据字段</emp
msgctxt ""
"12090102.xhp\n"
"hd_id3154944\n"
-"22\n"
"help.text"
msgid "More"
msgstr "更多"
@@ -57776,7 +53884,6 @@ msgstr "更多"
msgctxt ""
"12090102.xhp\n"
"par_id3145647\n"
-"23\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/more\">Displays or hides additional options for defining the pivot table.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/more\">显示或隐藏用于定义透视表的附加选项。</ahelp>"
@@ -57785,7 +53892,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/more\">显示或隐
msgctxt ""
"12090102.xhp\n"
"hd_id3151073\n"
-"2\n"
"help.text"
msgid "Result"
msgstr "结果"
@@ -57794,7 +53900,6 @@ msgstr "结果"
msgctxt ""
"12090102.xhp\n"
"par_id3155417\n"
-"3\n"
"help.text"
msgid "Specify the settings for displaying the results of the pivot table."
msgstr "设置透视表结果的显示。"
@@ -57819,7 +53924,6 @@ msgstr "<ahelp hid=\".\">选择包含当前透视表的数据的区域。</ahelp
msgctxt ""
"12090102.xhp\n"
"hd_id3155603\n"
-"4\n"
"help.text"
msgid "Results to"
msgstr "结果输出至"
@@ -57828,7 +53932,6 @@ msgstr "结果输出至"
msgctxt ""
"12090102.xhp\n"
"par_id3153838\n"
-"5\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/destination-edit\">Select the area where you want to display the results of the pivot table.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/destination-edit\">选择一个区域,用来显示透视表的结果。</ahelp>"
@@ -57837,7 +53940,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/destination-edit\">
msgctxt ""
"12090102.xhp\n"
"par_id3155961\n"
-"6\n"
"help.text"
msgid "If the selected area contains data, the pivot table overwrites the data. To prevent the loss of existing data, let the pivot table automatically select the area to display the results."
msgstr "如果选定的区域包含数据,透视表将会覆盖该数据。为防止丢失现有数据,请让透视表自动选择区域来显示结果。"
@@ -57846,7 +53948,6 @@ msgstr "如果选定的区域包含数据,透视表将会覆盖该数据。为
msgctxt ""
"12090102.xhp\n"
"hd_id3147364\n"
-"7\n"
"help.text"
msgid "Ignore empty rows"
msgstr "忽略空行"
@@ -57855,7 +53956,6 @@ msgstr "忽略空行"
msgctxt ""
"12090102.xhp\n"
"par_id3154022\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/check-ignore-empty-rows\">Ignores empty fields in the data source.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/check-ignore-empty-rows\">忽略数据源中的空字段。</ahelp>"
@@ -57864,7 +53964,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/check-ignore-empty-
msgctxt ""
"12090102.xhp\n"
"hd_id3155114\n"
-"9\n"
"help.text"
msgid "Identify categories"
msgstr "识别类别"
@@ -57873,7 +53972,6 @@ msgstr "识别类别"
msgctxt ""
"12090102.xhp\n"
"par_id3145257\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/check-identify-categories\">Automatically assigns rows without labels to the category of the row above.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/check-identify-categories\">将无标签的行自动指定给上面行的类别。</ahelp>"
@@ -57882,7 +53980,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/check-identify-cate
msgctxt ""
"12090102.xhp\n"
"hd_id3149207\n"
-"14\n"
"help.text"
msgid "Total columns"
msgstr "总列数"
@@ -57891,7 +53988,6 @@ msgstr "总列数"
msgctxt ""
"12090102.xhp\n"
"par_id3166426\n"
-"15\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/check-total-columns\">Calculates and displays the grand total of the column calculation.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/check-total-columns\">计算并显示列计算的总计。</ahelp>"
@@ -57900,7 +53996,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/check-total-columns
msgctxt ""
"12090102.xhp\n"
"hd_id3150364\n"
-"16\n"
"help.text"
msgid "Total rows"
msgstr "总行数"
@@ -57909,7 +54004,6 @@ msgstr "总行数"
msgctxt ""
"12090102.xhp\n"
"par_id3152583\n"
-"17\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/check-total-rows\">Calculates and displays the grand total of the row calculation.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/check-total-rows\">计算并显示行计算的总计。</ahelp>"
@@ -58014,7 +54108,6 @@ msgstr "<ahelp hid=\".\">选择您希望查看其细节的字段。</ahelp>"
msgctxt ""
"12090102.xhp\n"
"par_id3149817\n"
-"35\n"
"help.text"
msgid "<link href=\"text/scalc/04/01020000.xhp\" name=\"Pivot table shortcut keys\">Pivot table shortcut keys</link>"
msgstr "<link href=\"text/scalc/04/01020000.xhp\" name=\"Pivot table shortcut keys\">透视表快捷键</link>"
@@ -58031,7 +54124,6 @@ msgstr "筛选器"
msgctxt ""
"12090103.xhp\n"
"hd_id3153970\n"
-"1\n"
"help.text"
msgid "Filter"
msgstr "筛选器"
@@ -58040,7 +54132,6 @@ msgstr "筛选器"
msgctxt ""
"12090103.xhp\n"
"par_id3150448\n"
-"2\n"
"help.text"
msgid "Set the filtering options for the data."
msgstr "设置数据的筛选选项。"
@@ -58049,7 +54140,6 @@ msgstr "设置数据的筛选选项。"
msgctxt ""
"12090103.xhp\n"
"hd_id3151043\n"
-"3\n"
"help.text"
msgid "Filter Criteria"
msgstr "筛选条件"
@@ -58058,7 +54148,6 @@ msgstr "筛选条件"
msgctxt ""
"12090103.xhp\n"
"par_id3150440\n"
-"4\n"
"help.text"
msgid "You can define a default filter for the data by filtering, for example, field names, using a combination of logical expressions arguments."
msgstr "通过结合使用逻辑表达式和自变量,对字段名称进行筛选,就可以为数据定义一个默认筛选。"
@@ -58067,7 +54156,6 @@ msgstr "通过结合使用逻辑表达式和自变量,对字段名称进行筛
msgctxt ""
"12090103.xhp\n"
"hd_id3159153\n"
-"5\n"
"help.text"
msgid "Operator"
msgstr "运算符"
@@ -58076,7 +54164,6 @@ msgstr "运算符"
msgctxt ""
"12090103.xhp\n"
"par_id3153093\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pivotfilterdialog/connect2\" visibility=\"visible\">Select a logical operator for the filter.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/pivotfilterdialog/connect2\" visibility=\"visible\">为筛选选择一个逻辑运算符。</ahelp>"
@@ -58085,7 +54172,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/pivotfilterdialog/connect2\" visibility=\"
msgctxt ""
"12090103.xhp\n"
"hd_id3152462\n"
-"7\n"
"help.text"
msgid "Field name"
msgstr "字段名称"
@@ -58094,7 +54180,6 @@ msgstr "字段名称"
msgctxt ""
"12090103.xhp\n"
"par_id3155306\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pivotfilterdialog/field3\" visibility=\"visible\">Select the field that you want to use in the filter. If field names are not available, the column labels are listed.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/pivotfilterdialog/field3\" visibility=\"visible\">选择在筛选器中使用的字段。如果没有可供使用的字段名称,则显示列标签。</ahelp>"
@@ -58103,7 +54188,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/pivotfilterdialog/field3\" visibility=\"vi
msgctxt ""
"12090103.xhp\n"
"hd_id3148575\n"
-"9\n"
"help.text"
msgid "Condition"
msgstr "条件"
@@ -58112,7 +54196,6 @@ msgstr "条件"
msgctxt ""
"12090103.xhp\n"
"par_id3147394\n"
-"10\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\"modules/scalc/ui/pivotfilterdialog/cond3\">Select an operator to compare the <emph>Field name</emph> and <emph>Value</emph> entries.</ahelp>"
msgstr "<ahelp visibility=\"visible\" hid=\"modules/scalc/ui/pivotfilterdialog/cond3\">选择一个运算符以比较 <emph>字段名称</emph> 和 <emph>值</emph> 项.</ahelp>"
@@ -58121,7 +54204,6 @@ msgstr "<ahelp visibility=\"visible\" hid=\"modules/scalc/ui/pivotfilterdialog/c
msgctxt ""
"12090103.xhp\n"
"par_id3144764\n"
-"11\n"
"help.text"
msgid "The following operators are available:"
msgstr "下列运算符可供使用:"
@@ -58130,7 +54212,6 @@ msgstr "下列运算符可供使用:"
msgctxt ""
"12090103.xhp\n"
"par_id3153415\n"
-"12\n"
"help.text"
msgid "<emph>Conditions:</emph>"
msgstr "<emph>条件:</emph>"
@@ -58139,7 +54220,6 @@ msgstr "<emph>条件:</emph>"
msgctxt ""
"12090103.xhp\n"
"par_id3150324\n"
-"13\n"
"help.text"
msgid "="
msgstr "="
@@ -58148,7 +54228,6 @@ msgstr "="
msgctxt ""
"12090103.xhp\n"
"par_id3153714\n"
-"14\n"
"help.text"
msgid "equal"
msgstr "等于"
@@ -58157,7 +54236,6 @@ msgstr "等于"
msgctxt ""
"12090103.xhp\n"
"par_id3154254\n"
-"15\n"
"help.text"
msgid "<"
msgstr "<"
@@ -58166,7 +54244,6 @@ msgstr "<"
msgctxt ""
"12090103.xhp\n"
"par_id3154703\n"
-"16\n"
"help.text"
msgid "less than"
msgstr "小于"
@@ -58175,7 +54252,6 @@ msgstr "小于"
msgctxt ""
"12090103.xhp\n"
"par_id3155335\n"
-"17\n"
"help.text"
msgid ">"
msgstr ">"
@@ -58184,7 +54260,6 @@ msgstr ">"
msgctxt ""
"12090103.xhp\n"
"par_id3147003\n"
-"18\n"
"help.text"
msgid "greater than"
msgstr "大于"
@@ -58193,7 +54268,6 @@ msgstr "大于"
msgctxt ""
"12090103.xhp\n"
"par_id3153270\n"
-"19\n"
"help.text"
msgid "<="
msgstr "<="
@@ -58202,7 +54276,6 @@ msgstr "<="
msgctxt ""
"12090103.xhp\n"
"par_id3145257\n"
-"20\n"
"help.text"
msgid "less than or equal to"
msgstr "小于或等于"
@@ -58211,7 +54284,6 @@ msgstr "小于或等于"
msgctxt ""
"12090103.xhp\n"
"par_id3145134\n"
-"21\n"
"help.text"
msgid ">="
msgstr ">="
@@ -58220,7 +54292,6 @@ msgstr ">="
msgctxt ""
"12090103.xhp\n"
"par_id3151214\n"
-"22\n"
"help.text"
msgid "greater than or equal to"
msgstr "大于或等于"
@@ -58229,7 +54300,6 @@ msgstr "大于或等于"
msgctxt ""
"12090103.xhp\n"
"par_id3150345\n"
-"23\n"
"help.text"
msgid "<>"
msgstr "<>"
@@ -58238,7 +54308,6 @@ msgstr "<>"
msgctxt ""
"12090103.xhp\n"
"par_id3159101\n"
-"24\n"
"help.text"
msgid "not equal to"
msgstr "不等于"
@@ -58247,7 +54316,6 @@ msgstr "不等于"
msgctxt ""
"12090103.xhp\n"
"hd_id3150886\n"
-"25\n"
"help.text"
msgid "Value"
msgstr "值"
@@ -58256,13 +54324,11 @@ msgstr "值"
msgctxt ""
"12090103.xhp\n"
"par_id3155506\n"
-"26\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pivotfilterdialog/val3\" visibility=\"visible\">Select the value that you want to compare to the selected field.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/pivotfilterdialog/val3\" visibility=\"visible\">选择要与所选字段进行比较的数值。</ahelp>"
#: 12090103.xhp
-#, fuzzy
msgctxt ""
"12090103.xhp\n"
"hd_id3146980\n"
@@ -58282,7 +54348,6 @@ msgstr "选项"
msgctxt ""
"12090104.xhp\n"
"hd_id3149119\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12090104.xhp\" name=\"Options\">Options</link>"
msgstr "<link href=\"text/scalc/01/12090104.xhp\" name=\"Options\">选项</link>"
@@ -58291,7 +54356,6 @@ msgstr "<link href=\"text/scalc/01/12090104.xhp\" name=\"Options\">选项</link>
msgctxt ""
"12090104.xhp\n"
"par_id3147102\n"
-"2\n"
"help.text"
msgid "<variable id=\"zusaetzetext\"><ahelp hid=\"modules/scalc/ui/pivotfilterdialog/more\" visibility=\"visible\">Displays or hides additional filtering options.</ahelp></variable>"
msgstr "<variable id=\"zusaetzetext\"><ahelp hid=\"modules/scalc/ui/pivotfilterdialog/more\" visibility=\"visible\">显示或隐藏附加筛选选项。</ahelp></variable>"
@@ -58300,7 +54364,6 @@ msgstr "<variable id=\"zusaetzetext\"><ahelp hid=\"modules/scalc/ui/pivotfilterd
msgctxt ""
"12090104.xhp\n"
"hd_id3147008\n"
-"3\n"
"help.text"
msgid "Options"
msgstr "选项"
@@ -58309,7 +54372,6 @@ msgstr "选项"
msgctxt ""
"12090104.xhp\n"
"hd_id3153662\n"
-"5\n"
"help.text"
msgid "Case sensitive"
msgstr "区分大小写"
@@ -58318,7 +54380,6 @@ msgstr "区分大小写"
msgctxt ""
"12090104.xhp\n"
"par_id3145673\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"visible\">Distinguishes between uppercase and lowercase letters.</ahelp>"
msgstr ""
@@ -58327,7 +54388,6 @@ msgstr ""
msgctxt ""
"12090104.xhp\n"
"hd_id3156327\n"
-"7\n"
"help.text"
msgid "Regular Expression"
msgstr "正则表达式"
@@ -58336,7 +54396,6 @@ msgstr "正则表达式"
msgctxt ""
"12090104.xhp\n"
"par_id3151245\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"visible\">Allows you to use regular expressions in the filter definition.</ahelp>"
msgstr ""
@@ -58345,13 +54404,11 @@ msgstr ""
msgctxt ""
"12090104.xhp\n"
"par_id3147264\n"
-"29\n"
"help.text"
msgid "If the <emph>Regular Expression</emph> check box is selected, you can use EQUAL (=) and NOT EQUAL (<>) also in comparisons. You can also use the following functions: DCOUNTA, DGET, MATCH, COUNTIF, SUMIF, LOOKUP, VLOOKUP and HLOOKUP."
msgstr "如果选择了<emph>正则表达式</emph>复选框,您可以在比较运算中使用 EQUAL (=) 和 NOT EQUAL (<>)。此外,还可以使用以下函数:DCOUNTA、DGET、MATCH、COUNTIF、SUMIF、LOOKUP、VLOOKUP 和 HLOOKUP。"
#: 12090104.xhp
-#, fuzzy
msgctxt ""
"12090104.xhp\n"
"hd_id3153379\n"
@@ -58363,13 +54420,11 @@ msgstr "不生成复件"
msgctxt ""
"12090104.xhp\n"
"par_id3154138\n"
-"31\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"visible\">Excludes duplicate rows in the list of filtered data.</ahelp>"
msgstr ""
#: 12090104.xhp
-#, fuzzy
msgctxt ""
"12090104.xhp\n"
"hd_id3156282\n"
@@ -58413,7 +54468,6 @@ msgstr "<bookmark_value>计算;透视表</bookmark_value>"
msgctxt ""
"12090105.xhp\n"
"hd_id3150871\n"
-"1\n"
"help.text"
msgid "Data field"
msgstr "数据字段"
@@ -58422,7 +54476,6 @@ msgstr "数据字段"
msgctxt ""
"12090105.xhp\n"
"par_id3154124\n"
-"16\n"
"help.text"
msgid "The contents of this dialog is different for data fields in the <emph>Data</emph> area, and data fields in the <emph>Row</emph> or <emph>Column</emph> area of the <link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table\">Pivot Table</link> dialog."
msgstr "在<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table\">透视表</link>对话框中双击<emph>数据</emph>区域中的数据字段,或者在该对话框中双击<emph>行</emph>或<emph>列</emph>区域中的数据字段,两种方式启动的对话框所含有的内容是不一样的。"
@@ -58431,7 +54484,6 @@ msgstr "在<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table\">透视
msgctxt ""
"12090105.xhp\n"
"hd_id3152596\n"
-"2\n"
"help.text"
msgid "Subtotals"
msgstr "分类汇总"
@@ -58440,7 +54492,6 @@ msgstr "分类汇总"
msgctxt ""
"12090105.xhp\n"
"par_id3151113\n"
-"3\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/PivotFieldDialog\">Specify the subtotals that you want to calculate.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/PivotFieldDialog\" visibility=\"visible\">指定要计算的分类汇总。</ahelp>"
@@ -58449,7 +54500,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/PivotFieldDialog\" visibi
msgctxt ""
"12090105.xhp\n"
"hd_id3145366\n"
-"4\n"
"help.text"
msgid "None"
msgstr "无"
@@ -58458,7 +54508,6 @@ msgstr "无"
msgctxt ""
"12090105.xhp\n"
"par_id3152576\n"
-"5\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/none\">Does not calculate subtotals.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/none\" visibility=\"visible\">不计算分类汇总。</ahelp>"
@@ -58467,7 +54516,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/none\" visibility=\"visib
msgctxt ""
"12090105.xhp\n"
"hd_id3154012\n"
-"6\n"
"help.text"
msgid "Automatic"
msgstr "自动"
@@ -58476,7 +54524,6 @@ msgstr "自动"
msgctxt ""
"12090105.xhp\n"
"par_id3155856\n"
-"7\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/auto\">Automatically calculates subtotals.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/auto\" visibility=\"visible\">自动计算分类汇总。</ahelp>"
@@ -58485,7 +54532,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/auto\" visibility=\"visib
msgctxt ""
"12090105.xhp\n"
"hd_id3155411\n"
-"8\n"
"help.text"
msgid "User-defined"
msgstr "自定义"
@@ -58494,7 +54540,6 @@ msgstr "自定义"
msgctxt ""
"12090105.xhp\n"
"par_id3149581\n"
-"9\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/user\">Select this option, and then click the type of subtotal that you want to calculate in the list.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/user\" visibility=\"visible\">选择此选项,然后单击列表中要计算的分类汇总类型。</ahelp>"
@@ -58503,7 +54548,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/user\" visibility=\"visib
msgctxt ""
"12090105.xhp\n"
"hd_id3147124\n"
-"10\n"
"help.text"
msgid "Function"
msgstr "函数"
@@ -58512,34 +54556,30 @@ msgstr "函数"
msgctxt ""
"12090105.xhp\n"
"par_id3154490\n"
-"11\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/functions\">Click the type of subtotal that you want to calculate. This option is only available if the <emph>User-defined</emph> option is selected.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/functions\" visibility=\"visible\">单击要计算的分类汇总类型。只有选择了<emph>自定义</emph>选项,此选项才可用。</ahelp>"
+msgid "<ahelp hid=\".\">Click the type of subtotal that you want to calculate. This option is only available if the <emph>User-defined</emph> option is selected.</ahelp>"
+msgstr ""
#: 12090105.xhp
msgctxt ""
"12090105.xhp\n"
"hd_id3154944\n"
-"14\n"
"help.text"
-msgid "Show elements without data"
-msgstr "显示不带有数据的元素"
+msgid "Show items without data"
+msgstr ""
#: 12090105.xhp
msgctxt ""
"12090105.xhp\n"
"par_id3149403\n"
-"15\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/showall\">Includes empty columns and rows in the results table.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/showall\" visibility=\"visible\">结果列表中含有空行或空列。</ahelp>"
+msgid "<ahelp hid=\".\">Includes empty columns and rows in the results table.</ahelp>"
+msgstr ""
#: 12090105.xhp
msgctxt ""
"12090105.xhp\n"
"hd_id3149122\n"
-"12\n"
"help.text"
msgid "Name:"
msgstr "名称:"
@@ -58548,7 +54588,6 @@ msgstr "名称:"
msgctxt ""
"12090105.xhp\n"
"par_id3150749\n"
-"13\n"
"help.text"
msgid "Lists the name of the selected data field."
msgstr "列出选定数据字段名称。"
@@ -58622,8 +54661,8 @@ msgctxt ""
"12090105.xhp\n"
"par_idN10716\n"
"help.text"
-msgid "<ahelp hid=\"1495371266\">Select the type of calculating of the displayed value for the data field.</ahelp>"
-msgstr "<ahelp hid=\"1495371266\">请选择要对数据字段中显示的值进行何种计算。</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/datafielddialog/type\">Select the type of calculating of the displayed value for the data field.</ahelp>"
+msgstr ""
#: 12090105.xhp
msgctxt ""
@@ -58846,8 +54885,8 @@ msgctxt ""
"12090105.xhp\n"
"par_idN107BE\n"
"help.text"
-msgid "<ahelp hid=\"1495371267\">Select the field from which the respective value is taken as base for the calculation.</ahelp>"
-msgstr "<ahelp hid=\"1495371267\">选择将其相关值作为计算基础的字段。</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/datafielddialog/basefield\">Select the field from which the respective value is taken as base for the calculation.</ahelp>"
+msgstr ""
#: 12090105.xhp
msgctxt ""
@@ -58862,8 +54901,8 @@ msgctxt ""
"12090105.xhp\n"
"par_idN107C5\n"
"help.text"
-msgid "<ahelp hid=\"1495371268\">Select the item of the base field from which the respective value is taken as base for the calculation.</ahelp>"
-msgstr "<ahelp hid=\"1495371268\">选择基本字段的项目,其相关值作为计算的基础。</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/datafielddialog/baseitem\">Select the item of the base field from which the respective value is taken as base for the calculation.</ahelp>"
+msgstr ""
#: 12090106.xhp
msgctxt ""
@@ -58910,8 +54949,8 @@ msgctxt ""
"12090106.xhp\n"
"par_idN1055B\n"
"help.text"
-msgid "<ahelp hid=\"1495387653\">Select the data field that you want to sort columns or rows by.</ahelp>"
-msgstr "<ahelp hid=\"1495387653\">选择您希望排序行或列时依据的数据字段。</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/sortby\">Select the data field that you want to sort columns or rows by.</ahelp>"
+msgstr ""
#: 12090106.xhp
msgctxt ""
@@ -58926,8 +54965,8 @@ msgctxt ""
"12090106.xhp\n"
"par_idN10562\n"
"help.text"
-msgid "<ahelp hid=\"1495384580\">Sorts the values from the lowest value to the highest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field.</ahelp>"
-msgstr "<ahelp hid=\"1495384580\">将数值从最低值到最高值排序。如果选定字段是对话框为其打开的字段,则项目按名称排序。如果选定了某数据字段,则项目按选定数据字段的结果值排序。</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/ascending\">Sorts the values from the lowest value to the highest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field.</ahelp>"
+msgstr ""
#: 12090106.xhp
msgctxt ""
@@ -58942,8 +54981,8 @@ msgctxt ""
"12090106.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "<ahelp hid=\"1495384581\">Sorts the values descending from the highest value to the lowest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field.</ahelp>"
-msgstr "<ahelp hid=\"1495384581\">将数值降序从最高值到最低值排序。如果选定字段是对话框为其打开的字段,则项目按名称排序。如果选定了某数据字段,则项目按选定数据字段的结果值排序。</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/descending\">Sorts the values descending from the highest value to the lowest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field.</ahelp>"
+msgstr ""
#: 12090106.xhp
msgctxt ""
@@ -58958,8 +54997,8 @@ msgctxt ""
"12090106.xhp\n"
"par_idN10570\n"
"help.text"
-msgid "<ahelp hid=\"1495384582\">Sorts values alphabetically.</ahelp>"
-msgstr "<ahelp hid=\"1495384582\">按字母顺序排序。</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/manual\">Sorts values alphabetically.</ahelp>"
+msgstr ""
#: 12090106.xhp
msgctxt ""
@@ -58990,8 +55029,8 @@ msgctxt ""
"12090106.xhp\n"
"par_idN10590\n"
"help.text"
-msgid "<ahelp hid=\"1495387654\">Select the layout mode for the field in the list box.</ahelp>"
-msgstr "<ahelp hid=\"1495387654\">为列表框中的字段选择版式模式。</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/layout\">Select the layout mode for the field in the list box.</ahelp>"
+msgstr ""
#: 12090106.xhp
msgctxt ""
@@ -59006,8 +55045,8 @@ msgctxt ""
"12090106.xhp\n"
"par_idN10597\n"
"help.text"
-msgid "<ahelp hid=\"1495385090\">Adds an empty row after the data for each item in the pivot table.</ahelp>"
-msgstr "<ahelp hid=\"1495385090\">对透视表中的每一项,在数据后添加一个空行。</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/emptyline\">Adds an empty row after the data for each item in the pivot table.</ahelp>"
+msgstr ""
#: 12090106.xhp
msgctxt ""
@@ -59038,8 +55077,8 @@ msgctxt ""
"12090106.xhp\n"
"par_idN105A5\n"
"help.text"
-msgid "<ahelp hid=\"1495385091\">Turns on the automatic show feature.</ahelp>"
-msgstr "<ahelp hid=\"1495385091\">打开自动显示功能。</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/show\">Turns on the automatic show feature.</ahelp>"
+msgstr ""
#: 12090106.xhp
msgctxt ""
@@ -59054,8 +55093,8 @@ msgctxt ""
"12090106.xhp\n"
"par_idN105AC\n"
"help.text"
-msgid "<ahelp hid=\"1495390209\">Enter the maximum number of items that you want to show automatically.</ahelp>"
-msgstr "<ahelp hid=\"1495390209\">输入希望自动显示的最大项目数。</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/items\">Enter the maximum number of items that you want to show automatically.</ahelp>"
+msgstr ""
#: 12090106.xhp
msgctxt ""
@@ -59070,8 +55109,8 @@ msgctxt ""
"12090106.xhp\n"
"par_idN105B3\n"
"help.text"
-msgid "<ahelp hid=\"1495387655\">Shows the top or bottom items in the specified sort order.</ahelp>"
-msgstr "<ahelp hid=\"1495387655\">以指定的排序方式显示顶部或底部项目。</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/from\">Shows the top or bottom items in the specified sort order.</ahelp>"
+msgstr ""
#: 12090106.xhp
msgctxt ""
@@ -59086,8 +55125,8 @@ msgctxt ""
"12090106.xhp\n"
"par_idN105BA\n"
"help.text"
-msgid "<ahelp hid=\"1495387656\">Select the data field that you want to sort the data by.</ahelp>"
-msgstr "<ahelp hid=\"1495387656\">选择您希望排序数据时依据的数据字段。</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/using\">Select the data field that you want to sort the data by.</ahelp>"
+msgstr ""
#: 12090106.xhp
msgctxt ""
@@ -59102,8 +55141,8 @@ msgctxt ""
"12090106.xhp\n"
"par_idN105C1\n"
"help.text"
-msgid "<ahelp hid=\"59010\">Select the items that you want to hide from the calculations.</ahelp>"
-msgstr "<ahelp hid=\"59010\">选择要在计算时隐藏的项目。</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/hideitems\">Select the items that you want to hide from the calculations.</ahelp>"
+msgstr ""
#: 12090106.xhp
msgctxt ""
@@ -59118,8 +55157,8 @@ msgctxt ""
"12090106.xhp\n"
"par_idN105C8\n"
"help.text"
-msgid "<ahelp hid=\"1495387657\">Select the hierarchy that you want to use. The pivot table must be based on an external source data that contains data hierarchies.</ahelp>"
-msgstr "<ahelp hid=\"1495387657\">选择要使用的分层结构。透视表必须基于包含数据分层结构的外部数据源。</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/hierarchy\">Select the hierarchy that you want to use. The pivot table must be based on an external source data that contains data hierarchies.</ahelp>"
+msgstr ""
#: 12090200.xhp
msgctxt ""
@@ -59133,7 +55172,6 @@ msgstr "刷新"
msgctxt ""
"12090200.xhp\n"
"hd_id3151385\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12090200.xhp\" name=\"Refresh\">Refresh</link>"
msgstr "<link href=\"text/scalc/01/12090200.xhp\" name=\"刷新\">刷新</link>"
@@ -59142,7 +55180,6 @@ msgstr "<link href=\"text/scalc/01/12090200.xhp\" name=\"刷新\">刷新</link>"
msgctxt ""
"12090200.xhp\n"
"par_id3149456\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:RecalcPivotTable\">Updates the pivot table.</ahelp>"
msgstr "<ahelp hid=\".uno:RecalcPivotTable\">更新透视表。</ahelp>"
@@ -59151,7 +55188,6 @@ msgstr "<ahelp hid=\".uno:RecalcPivotTable\">更新透视表。</ahelp>"
msgctxt ""
"12090200.xhp\n"
"par_id3150400\n"
-"3\n"
"help.text"
msgid "After you import an Excel spreadsheet that contains a pivot table, click in the table, and then choose <emph>Data - Pivot Table - Refresh</emph>."
msgstr "导入含有透视表的 Excel 电子表格后,单击该表格,然后选择<emph>数据 - 透视表 - 刷新</emph>。"
@@ -59168,7 +55204,6 @@ msgstr "删除"
msgctxt ""
"12090300.xhp\n"
"hd_id3150276\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12090300.xhp\" name=\"Delete\">Delete</link>"
msgstr "<link href=\"text/scalc/01/12090300.xhp\" name=\"删除\">删除</link>"
@@ -59177,7 +55212,6 @@ msgstr "<link href=\"text/scalc/01/12090300.xhp\" name=\"删除\">删除</link>"
msgctxt ""
"12090300.xhp\n"
"par_id3159400\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:DeletePivotTable\" visibility=\"visible\">Deletes the selected pivot table.</ahelp>"
msgstr "<ahelp hid=\".uno:DeletePivotTable\" visibility=\"visible\">删除选定的 DataPilot 表格。</ahelp>"
@@ -59370,7 +55404,6 @@ msgstr "<bookmark_value>数据库区域; 刷新</bookmark_value>"
msgctxt ""
"12100000.xhp\n"
"hd_id3153662\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Refresh Range</link>"
msgstr "<link href=\"text/scalc/01/12100000.xhp\" name=\"刷新区域\">刷新区域</link>"
@@ -59379,7 +55412,6 @@ msgstr "<link href=\"text/scalc/01/12100000.xhp\" name=\"刷新区域\">刷新
msgctxt ""
"12100000.xhp\n"
"par_id3153088\n"
-"2\n"
"help.text"
msgid "<variable id=\"aktualisieren\"><ahelp hid=\".uno:DataAreaRefresh\" visibility=\"visible\">Updates a data range that was inserted from an external database. The data in the sheet is updated to match the data in the external database.</ahelp></variable>"
msgstr "<variable id=\"aktualisieren\"><ahelp hid=\".uno:DataAreaRefresh\" visibility=\"visible\">更新从外部数据库插入的数据区域,使工作表中的数据与外部数据库中孀¹应的数据保持一致。</ahelp></variable>"
@@ -59396,7 +55428,6 @@ msgstr "有效性"
msgctxt ""
"12120000.xhp\n"
"hd_id3156347\n"
-"1\n"
"help.text"
msgid "Validity"
msgstr "有效性"
@@ -59405,7 +55436,6 @@ msgstr "有效性"
msgctxt ""
"12120000.xhp\n"
"par_id3153252\n"
-"2\n"
"help.text"
msgid "<variable id=\"gueltigkeit\"><ahelp hid=\".uno:Validation\">Defines what data is valid for a selected cell or cell range.</ahelp></variable>"
msgstr "<variable id=\"gueltigkeit\"><ahelp hid=\".uno:Validation\">定义何种数据对于选定的单元格或单元格区域有效。</ahelp></variable>"
@@ -59438,7 +55468,6 @@ msgstr "<bookmark_value>选定列表; 有效性</bookmark_value>"
msgctxt ""
"12120100.xhp\n"
"hd_id3153032\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12120100.xhp\" name=\"Criteria\">Criteria</link>"
msgstr "<link href=\"text/scalc/01/12120100.xhp\" name=\"条件\">条件</link>"
@@ -59447,7 +55476,6 @@ msgstr "<link href=\"text/scalc/01/12120100.xhp\" name=\"条件\">条件</link>"
msgctxt ""
"12120100.xhp\n"
"par_id3156327\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/ValidationCriteriaPage\">Specify the validation rules for the selected cell(s).</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/ValidationCriteriaPage\">为所选单元格指定有效性规则。</ahelp>"
@@ -59456,7 +55484,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/ValidationCriteriaP
msgctxt ""
"12120100.xhp\n"
"par_id3155923\n"
-"4\n"
"help.text"
msgid "For example, you can define criteria such as: \"Numbers between 1 and 10\" or \"Texts that are no more than 20 characters\"."
msgstr "例如,可以指定如下条件:“1 到 10 之间的数字”或“不超过 20 个字符的文字”。"
@@ -59465,7 +55492,6 @@ msgstr "例如,可以指定如下条件:“1 到 10 之间的数字”或“
msgctxt ""
"12120100.xhp\n"
"hd_id3153896\n"
-"5\n"
"help.text"
msgid "Allow"
msgstr "允许"
@@ -59474,7 +55500,6 @@ msgstr "允许"
msgctxt ""
"12120100.xhp\n"
"par_id3150400\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/allow\">Click a validation option for the selected cell(s).</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/allow\">为所选单元格选择有效性选项。</ahelp>"
@@ -59483,7 +55508,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/allow\">为所选
msgctxt ""
"12120100.xhp\n"
"par_id3148797\n"
-"17\n"
"help.text"
msgid "The following conditions are available:"
msgstr "可以选择以下条件:"
@@ -59492,7 +55516,6 @@ msgstr "可以选择以下条件:"
msgctxt ""
"12120100.xhp\n"
"par_id3150447\n"
-"18\n"
"help.text"
msgid "Condition"
msgstr "条件"
@@ -59501,7 +55524,6 @@ msgstr "条件"
msgctxt ""
"12120100.xhp\n"
"par_id3155854\n"
-"19\n"
"help.text"
msgid "Effect"
msgstr "效果"
@@ -59510,7 +55532,6 @@ msgstr "效果"
msgctxt ""
"12120100.xhp\n"
"par_id3153092\n"
-"20\n"
"help.text"
msgid "All values"
msgstr "所有值"
@@ -59519,7 +55540,6 @@ msgstr "所有值"
msgctxt ""
"12120100.xhp\n"
"par_id3155411\n"
-"21\n"
"help.text"
msgid "No limitation."
msgstr "无限制。"
@@ -59528,7 +55548,6 @@ msgstr "无限制。"
msgctxt ""
"12120100.xhp\n"
"par_id3147434\n"
-"22\n"
"help.text"
msgid "Whole number"
msgstr "整数"
@@ -59537,7 +55556,6 @@ msgstr "整数"
msgctxt ""
"12120100.xhp\n"
"par_id3154319\n"
-"23\n"
"help.text"
msgid "Only whole numbers corresponding to the condition."
msgstr "仅限符合此条件的整数"
@@ -59546,7 +55564,6 @@ msgstr "仅限符合此条件的整数"
msgctxt ""
"12120100.xhp\n"
"par_id3145802\n"
-"24\n"
"help.text"
msgid "Decimal"
msgstr "十进制"
@@ -59555,7 +55572,6 @@ msgstr "十进制"
msgctxt ""
"12120100.xhp\n"
"par_id3153160\n"
-"25\n"
"help.text"
msgid "All numbers corresponding to the condition."
msgstr "所有符合此条件的数字。"
@@ -59564,7 +55580,6 @@ msgstr "所有符合此条件的数字。"
msgctxt ""
"12120100.xhp\n"
"par_id3149377\n"
-"26\n"
"help.text"
msgid "Date"
msgstr "日期"
@@ -59573,7 +55588,6 @@ msgstr "日期"
msgctxt ""
"12120100.xhp\n"
"par_id3150718\n"
-"27\n"
"help.text"
msgid "All numbers corresponding to the condition. The entered values are formatted accordingly the next time the dialog is called up."
msgstr "全部符合此条件的十进制数值。已输入数值在下次启动这个对话框时被相应地格式化。"
@@ -59582,7 +55596,6 @@ msgstr "全部符合此条件的十进制数值。已输入数值在下次启动
msgctxt ""
"12120100.xhp\n"
"par_id3146969\n"
-"28\n"
"help.text"
msgid "Time"
msgstr "时间"
@@ -59591,7 +55604,6 @@ msgstr "时间"
msgctxt ""
"12120100.xhp\n"
"par_id3155066\n"
-"29\n"
"help.text"
msgid "All numbers corresponding to the condition. The entered values are formatted accordingly the next time the dialog is called up."
msgstr "全部符合此条件的十进制数值。已输入数值在下次启动这个对话框时被相应地格式化。"
@@ -59632,7 +55644,6 @@ msgstr "只允许列表中指定的值或字符串,字符串和值可以混合
msgctxt ""
"12120100.xhp\n"
"par_id3154756\n"
-"30\n"
"help.text"
msgid "Text length"
msgstr "文字长度"
@@ -59641,7 +55652,6 @@ msgstr "文字长度"
msgctxt ""
"12120100.xhp\n"
"par_id3147339\n"
-"31\n"
"help.text"
msgid "Entries whose length corresponds to the condition."
msgstr "长度与条件符合的条目。"
@@ -59650,7 +55660,6 @@ msgstr "长度与条件符合的条目。"
msgctxt ""
"12120100.xhp\n"
"hd_id3154704\n"
-"7\n"
"help.text"
msgid "Allow blank cells"
msgstr "允许空白单元格"
@@ -59659,7 +55668,6 @@ msgstr "允许空白单元格"
msgctxt ""
"12120100.xhp\n"
"par_id3153967\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/allowempty\">In conjunction with <emph>Tools - Detective - Mark invalid Data</emph>, this defines that blank cells are shown as invalid data (disabled) or not (enabled).</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/allowempty\">与<emph>工具 - 侦探 - 标记无效的数据</emph>一起使用,可定义将空白单元格显示为无效数据(禁用)还是不显示为无效数据(启用)。</ahelp>"
@@ -59732,7 +55740,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/minlist\">输入有
msgctxt ""
"12120100.xhp\n"
"hd_id3163807\n"
-"9\n"
"help.text"
msgid "Data"
msgstr "数据"
@@ -59741,7 +55748,6 @@ msgstr "数据"
msgctxt ""
"12120100.xhp\n"
"par_id3144502\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/data\">Select the comparative operator that you want to use.</ahelp> The available operators depend on what you selected in the <emph>Allow </emph>box. If you select \"between\" or \"not between\", the <emph>Minimum</emph> and <emph>Maximum</emph> input boxes appear. Otherwise, only the <emph>Minimum</emph>, the <emph>Maximum, or the Value</emph> input boxes appear."
msgstr "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/data\">选择要使用的比较运算符。</ahelp>可选择的运算符取决于在<emph>允许</emph>框中指定的选项。如果选择\"之间\"或\"不在之间\",将显示<emph>最小</emph>和<emph>最大</emph>输入框。否则仅显示<emph>最小</emph>、<emph>最大 或 数值</emph>输入框。"
@@ -59750,7 +55756,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/data\">选择要使
msgctxt ""
"12120100.xhp\n"
"hd_id3153782\n"
-"11\n"
"help.text"
msgid "Value"
msgstr "Value"
@@ -59759,7 +55764,6 @@ msgstr "Value"
msgctxt ""
"12120100.xhp\n"
"par_id3153266\n"
-"12\n"
"help.text"
msgid "Enter the value for the data validation option that you selected in the <emph>Allow </emph>box."
msgstr "输入您在<emph>允许</emph>框中选择的数据验证选项值。"
@@ -59768,7 +55772,6 @@ msgstr "输入您在<emph>允许</emph>框中选择的数据验证选项值。"
msgctxt ""
"12120100.xhp\n"
"hd_id3149814\n"
-"13\n"
"help.text"
msgid "Minimum"
msgstr "最小"
@@ -59777,7 +55780,6 @@ msgstr "最小"
msgctxt ""
"12120100.xhp\n"
"par_id3153199\n"
-"14\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/min\">Enter the minimum value for the data validation option that you selected in the <emph>Allow </emph>box.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/min\">输入<emph>允许</emph>框中所选的数据有效性选项的最小值。</ahelp>"
@@ -59786,7 +55788,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/min\">输入<emph>
msgctxt ""
"12120100.xhp\n"
"hd_id3149035\n"
-"15\n"
"help.text"
msgid "Maximum"
msgstr "最大"
@@ -59795,7 +55796,6 @@ msgstr "最大"
msgctxt ""
"12120100.xhp\n"
"par_id3150089\n"
-"16\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/max\">Enter the maximum value for the data validation option that you selected in the <emph>Allow </emph>box.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/max\">输入<emph>允许</emph>框中所选数据有效性选项的最大值。</ahelp>"
@@ -59812,7 +55812,6 @@ msgstr "输入帮助"
msgctxt ""
"12120200.xhp\n"
"hd_id3156280\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12120200.xhp\" name=\"Input Help\">Input Help</link>"
msgstr "<link href=\"text/scalc/01/12120200.xhp\" name=\"输入帮助\">输入帮助</link>"
@@ -59821,7 +55820,6 @@ msgstr "<link href=\"text/scalc/01/12120200.xhp\" name=\"输入帮助\">输入
msgctxt ""
"12120200.xhp\n"
"par_id3147229\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/validationhelptabpage/ValidationHelpTabPage\">Enter the message that you want to display when the cell or cell range is selected in the sheet.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/validationhelptabpage/ValidationHelpTabPage\">输入当选定工作表中的单元格或单元格区域时要显示的帮助。</ahelp>"
@@ -59830,7 +55828,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/validationhelptabpage/ValidationHelpTabPag
msgctxt ""
"12120200.xhp\n"
"hd_id3146986\n"
-"3\n"
"help.text"
msgid "Show input help when cell is selected"
msgstr "选中单元格时显示输入帮助"
@@ -59839,7 +55836,6 @@ msgstr "选中单元格时显示输入帮助"
msgctxt ""
"12120200.xhp\n"
"par_id3153363\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/validationhelptabpage/tsbhelp\">Displays the message that you enter in the <emph>Contents</emph> box when the cell or cell range is selected in the sheet.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/validationhelptabpage/tsbhelp\">选中工作表中的单元格或单元格区域时,显示<emph>内容</emph>框中的信息。</ahelp>"
@@ -59848,7 +55844,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/validationhelptabpage/tsbhelp\">选中工
msgctxt ""
"12120200.xhp\n"
"par_id3154730\n"
-"5\n"
"help.text"
msgid "If you enter text in the <emph>Contents</emph> box of this dialog, and then select and clear this check box, the text will be lost."
msgstr "如果您在对话框的<emph>内容</emph>框中输入了文字,随后选择并取消了这个复选框标记,输入的文字将丢失。"
@@ -59857,7 +55852,6 @@ msgstr "如果您在对话框的<emph>内容</emph>框中输入了文字,随
msgctxt ""
"12120200.xhp\n"
"hd_id3147394\n"
-"6\n"
"help.text"
msgid "Contents"
msgstr "内容"
@@ -59866,7 +55860,6 @@ msgstr "内容"
msgctxt ""
"12120200.xhp\n"
"hd_id3149582\n"
-"8\n"
"help.text"
msgid "Title"
msgstr "标题"
@@ -59875,7 +55868,6 @@ msgstr "标题"
msgctxt ""
"12120200.xhp\n"
"par_id3149400\n"
-"9\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/validationhelptabpage/title\">Enter the title that you want to display when the cell or cell range is selected.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/validationhelptabpage/title\">输入当选定单元格或单元格区域时要显示的标题。</ahelp>"
@@ -59884,7 +55876,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/validationhelptabpage/title\">输入当选
msgctxt ""
"12120200.xhp\n"
"hd_id3149121\n"
-"10\n"
"help.text"
msgid "Input help"
msgstr "输入帮助"
@@ -59893,7 +55884,6 @@ msgstr "输入帮助"
msgctxt ""
"12120200.xhp\n"
"par_id3150752\n"
-"11\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/validationhelptabpage/inputhelp\">Enter the message that you want to display when the cell or cell range is selected.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/validationhelptabpage/inputhelp\">输入当选定单元格或单元格区域时要显示的帮助。</ahelp>"
@@ -59910,7 +55900,6 @@ msgstr "错误报告"
msgctxt ""
"12120300.xhp\n"
"hd_id3153821\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12120300.xhp\" name=\"Error Alert\">Error Alert</link>"
msgstr "<link href=\"text/scalc/01/12120300.xhp\" name=\"错误报告\">错误报告</link>"
@@ -59919,7 +55908,6 @@ msgstr "<link href=\"text/scalc/01/12120300.xhp\" name=\"错误报告\">错误
msgctxt ""
"12120300.xhp\n"
"par_id3153379\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/ErrorAlertTabPage\">Define the error message that is displayed when invalid data is entered in a cell.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/ErrorAlertTabPage\">定义一条错误消息,当单元格中输入了无效数据时将显示该错误消息。</ahelp>"
@@ -59928,7 +55916,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/ErrorAlertTabPage\">定
msgctxt ""
"12120300.xhp\n"
"par_id3154138\n"
-"25\n"
"help.text"
msgid "You can also start a macro with an error message. A sample macro is provided at the end of this page."
msgstr "您还可以启动一个显示错误信息的宏。此页面的结尾处提供了一个示例宏。"
@@ -59937,7 +55924,6 @@ msgstr "您还可以启动一个显示错误信息的宏。此页面的结尾处
msgctxt ""
"12120300.xhp\n"
"hd_id3156280\n"
-"3\n"
"help.text"
msgid "Show error message when invalid values are entered."
msgstr "在输入无效值时显示错误报告"
@@ -59946,7 +55932,6 @@ msgstr "在输入无效值时显示错误报告"
msgctxt ""
"12120300.xhp\n"
"par_id3150768\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the error message that you enter in the <emph>Contents</emph> area when invalid data is entered in a cell.</ahelp> If enabled, the message is displayed to prevent an invalid entry."
msgstr "<ahelp hid=\".\">当单元格中输入了无效的数据时,将显示<emph>内容</emph>区域中输入的错误消息。</ahelp> 如果已启用此选项,将显示该消息以避免输入无效数据。"
@@ -59955,7 +55940,6 @@ msgstr "<ahelp hid=\".\">当单元格中输入了无效的数据时,将显示<
msgctxt ""
"12120300.xhp\n"
"par_id3146984\n"
-"5\n"
"help.text"
msgid "In both cases, if you select \"Stop\", the invalid entry is deleted and the previous value is reentered in the cell. The same applies if you close the \"Warning\" and \"Information\" dialogs by clicking the <emph>Cancel </emph>button. If you close the dialogs with the <emph>OK</emph> button, the invalid entry is not deleted."
msgstr "对于这两种情况,如果选择“停止”,将删除无效的条目且单元格被重新输入以前的数值。如果您单击<emph>取消</emph>按钮关闭了 [警告] 和 [信息] 对话框,也将执行相同的操作。如果您按下<emph>确定</emph>按钮关闭对话框,则不会删除无效的条目。"
@@ -59964,7 +55948,6 @@ msgstr "对于这两种情况,如果选择“停止”,将删除无效的条
msgctxt ""
"12120300.xhp\n"
"hd_id3152460\n"
-"6\n"
"help.text"
msgid "Contents"
msgstr "内容"
@@ -59973,7 +55956,6 @@ msgstr "内容"
msgctxt ""
"12120300.xhp\n"
"hd_id3148646\n"
-"8\n"
"help.text"
msgid "Action"
msgstr "操作"
@@ -59982,7 +55964,6 @@ msgstr "操作"
msgctxt ""
"12120300.xhp\n"
"par_id3151115\n"
-"9\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/actionCB\">Select the action that you want to occur when invalid data is entered in a cell.</ahelp> The \"Stop\" action rejects the invalid entry and displays a dialog that you have to close by clicking <emph>OK</emph>. The \"Warning\" and \"Information\" actions display a dialog that can be closed by clicking <emph>OK</emph> or <emph>Cancel</emph>. The invalid entry is only rejected when you click <emph>Cancel</emph>."
msgstr "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/actionCB\">选择单元格中输入无效数据时要执行的操作。</ahelp>“停止”操作将拒绝无效的输入并显示一个对话框,必须单击<emph>确定</emph>才能关闭该对话框。“警告”和“信息”操作将显示一个对话框,单击<emph>确定</emph>或<emph>取消</emph>可关闭该对话框,但只有单击<emph>取消</emph>才能拒绝无效的输入。"
@@ -59991,7 +55972,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/actionCB\">选择单元
msgctxt ""
"12120300.xhp\n"
"hd_id3156441\n"
-"10\n"
"help.text"
msgid "Browse"
msgstr "浏览"
@@ -60000,7 +55980,6 @@ msgstr "浏览"
msgctxt ""
"12120300.xhp\n"
"par_id3153160\n"
-"11\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/browseBtn\">Opens the <link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">Macro</link> dialog where you can select the macro that is executed when invalid data is entered in a cell. The macro is executed after the error message is displayed.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/browseBtn\">打开<link href=\"text/shared/01/06130000.xhp\" name=\"宏\">宏</link>对话框,可以从中选择一个宏,以便当单元格中输入无效数据时执行该宏。显示错误报告后将执行宏。</ahelp>"
@@ -60009,7 +55988,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/browseBtn\">打开<link
msgctxt ""
"12120300.xhp\n"
"hd_id3153876\n"
-"12\n"
"help.text"
msgid "Title"
msgstr "标题"
@@ -60018,7 +55996,6 @@ msgstr "标题"
msgctxt ""
"12120300.xhp\n"
"par_id3149410\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/title\">Enter the title of the macro or the error message that you want to display when invalid data is entered in a cell.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/title\">输入宏标题,或输入单元格中出现无效数据时要显示的错误消息。</ahelp>"
@@ -60027,7 +56004,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/title\">输入宏标题
msgctxt ""
"12120300.xhp\n"
"hd_id3154510\n"
-"14\n"
"help.text"
msgid "Error message"
msgstr "错误报告"
@@ -60036,7 +56012,6 @@ msgstr "错误报告"
msgctxt ""
"12120300.xhp\n"
"par_id3149122\n"
-"15\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/errorMsg\">Enter the message that you want to display when invalid data is entered in a cell.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/errorMsg\">输入单元格中出现无效数据时要显示的消息。</ahelp>"
@@ -60045,7 +56020,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/errorMsg\">输入单元
msgctxt ""
"12120300.xhp\n"
"par_id3150752\n"
-"16\n"
"help.text"
msgid "<emph>Sample macro:</emph>"
msgstr "<emph>示例宏:</emph>"
@@ -60251,7 +56225,6 @@ msgid "Examples Dataset for Statistical Functions"
msgstr ""
#: ex_data_stat_func.xhp
-#, fuzzy
msgctxt ""
"ex_data_stat_func.xhp\n"
"hd_id2657394931588\n"
@@ -60444,7 +56417,6 @@ msgid "Aggregation"
msgstr ""
#: exponsmooth_embd.xhp
-#, fuzzy
msgctxt ""
"exponsmooth_embd.xhp\n"
"par_id040320161859464\n"
@@ -60453,7 +56425,6 @@ msgid "Function"
msgstr "函数"
#: exponsmooth_embd.xhp
-#, fuzzy
msgctxt ""
"exponsmooth_embd.xhp\n"
"par_id0403201618594636\n"
@@ -60462,7 +56433,6 @@ msgid "AVERAGE"
msgstr "AVERAGE"
#: exponsmooth_embd.xhp
-#, fuzzy
msgctxt ""
"exponsmooth_embd.xhp\n"
"par_id0403201618594692\n"
@@ -60471,7 +56441,6 @@ msgid "COUNT"
msgstr "COUNT"
#: exponsmooth_embd.xhp
-#, fuzzy
msgctxt ""
"exponsmooth_embd.xhp\n"
"par_id0403201618594633\n"
@@ -60480,7 +56449,6 @@ msgid "COUNTA"
msgstr "COUNTA"
#: exponsmooth_embd.xhp
-#, fuzzy
msgctxt ""
"exponsmooth_embd.xhp\n"
"par_id040320161859460\n"
@@ -60489,7 +56457,6 @@ msgid "MAX"
msgstr "MAX"
#: exponsmooth_embd.xhp
-#, fuzzy
msgctxt ""
"exponsmooth_embd.xhp\n"
"par_id0403201618594658\n"
@@ -60498,7 +56465,6 @@ msgid "MEDIAN"
msgstr "MEDIAN"
#: exponsmooth_embd.xhp
-#, fuzzy
msgctxt ""
"exponsmooth_embd.xhp\n"
"par_id0403201618594671\n"
@@ -60507,7 +56473,6 @@ msgid "MIN"
msgstr "MIN"
#: exponsmooth_embd.xhp
-#, fuzzy
msgctxt ""
"exponsmooth_embd.xhp\n"
"par_id0403201618594639\n"
@@ -60676,7 +56641,6 @@ msgid "forecast = ( basevalue + trend * ∆x ) * periodical_aberration."
msgstr ""
#: exponsmooth_embd.xhp
-#, fuzzy
msgctxt ""
"exponsmooth_embd.xhp\n"
"hd_id0603201610005796\n"
@@ -60701,7 +56665,6 @@ msgid "Timeline"
msgstr ""
#: exponsmooth_embd.xhp
-#, fuzzy
msgctxt ""
"exponsmooth_embd.xhp\n"
"par_id0903201610312228\n"
@@ -60766,7 +56729,6 @@ msgid "<ahelp hid=\".\">Switches <emph>Edit Points</emph> mode for an inserted f
msgstr "<ahelp hid=\".\">切换<emph>编辑接点</emph>模式可以开启和关闭插入的不规则线条。</ahelp>"
#: ful_func.xhp
-#, fuzzy
msgctxt ""
"ful_func.xhp\n"
"hd_id126511265112651\n"
@@ -60775,7 +56737,6 @@ msgid "Syntax"
msgstr "语法"
#: ful_func.xhp
-#, fuzzy
msgctxt ""
"ful_func.xhp\n"
"hd_id980889808898088\n"
@@ -60840,7 +56801,6 @@ msgid "AGGREGATE function"
msgstr ""
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"bm_id126123001625791\n"
@@ -60849,7 +56809,6 @@ msgid "<bookmark_value>AGGREGATE function</bookmark_value>"
msgstr "<bookmark_value>AREAS 函数</bookmark_value>"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"hd_id3154073\n"
@@ -60874,7 +56833,6 @@ msgid "AGGREGATE function is applied to vertical ranges of data with activated A
msgstr ""
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"hd_id239693194826384\n"
@@ -60915,7 +56873,6 @@ msgid "<emph>Function</emph> – obligatory argument. A function index or a refe
msgstr ""
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511454963\n"
@@ -60932,7 +56889,6 @@ msgid "Function applied"
msgstr ""
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360043\n"
@@ -60941,7 +56897,6 @@ msgid "AVERAGE"
msgstr "AVERAGE"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id230920151136007\n"
@@ -60950,7 +56905,6 @@ msgid "COUNT"
msgstr "COUNT"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360018\n"
@@ -60959,7 +56913,6 @@ msgid "COUNTA"
msgstr "COUNTA"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360026\n"
@@ -60968,7 +56921,6 @@ msgid "MAX"
msgstr "MAX"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360078\n"
@@ -60977,7 +56929,6 @@ msgid "MIN"
msgstr "MIN"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360087\n"
@@ -60986,7 +56937,6 @@ msgid "PRODUCT"
msgstr "PRODUCT"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360153\n"
@@ -60995,7 +56945,6 @@ msgid "STDEV.S"
msgstr "STDEV.S"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360178\n"
@@ -61004,7 +56953,6 @@ msgid "STDEV.P"
msgstr "STDEV.P"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360199\n"
@@ -61013,7 +56961,6 @@ msgid "SUM"
msgstr "SUM"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360174\n"
@@ -61022,7 +56969,6 @@ msgid "VAR.S"
msgstr "VAR.S"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360120\n"
@@ -61031,7 +56977,6 @@ msgid "VAR.P"
msgstr "VAR.P"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360122\n"
@@ -61048,7 +56993,6 @@ msgid "MODE.SNGL"
msgstr ""
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360180\n"
@@ -61057,7 +57001,6 @@ msgid "LARGE"
msgstr "LARGE"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360150\n"
@@ -61228,15 +57171,6 @@ msgstr ""
#: func_aggregate.xhp
msgctxt ""
"func_aggregate.xhp\n"
-"par_id2309201516525483\n"
-"help.text"
-msgid "If the <emph>k</emph> argument is necessary, but not specified, the function returns the error Err:511.<br/>If the <emph>Function</emph> and/or <emph>Option</emph> arguments specified not correctly, the function returns the error Err:502."
-msgstr ""
-
-#: func_aggregate.xhp
-#, fuzzy
-msgctxt ""
-"func_aggregate.xhp\n"
"hd_id198071265128228\n"
"help.text"
msgid "Examples"
@@ -61283,7 +57217,6 @@ msgid "3"
msgstr ""
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"id_par29987248418152\n"
@@ -61372,7 +57305,6 @@ msgid "AVERAGEIF function"
msgstr ""
#: func_averageif.xhp
-#, fuzzy
msgctxt ""
"func_averageif.xhp\n"
"bm_id237812197829662\n"
@@ -61381,7 +57313,6 @@ msgid "<bookmark_value>AVERAGEIF function</bookmark_value> <bookmark_value>arit
msgstr "<bookmark_value>AVEDEV 函数</bookmark_value><bookmark_value>平均值; 统计函数</bookmark_value>"
#: func_averageif.xhp
-#, fuzzy
msgctxt ""
"func_averageif.xhp\n"
"hd_id16852304621982\n"
@@ -61398,7 +57329,6 @@ msgid "<ahelp hid=\".\"><variable id=\"averageif_des\">Returns the arithmetic me
msgstr ""
#: func_averageif.xhp
-#, fuzzy
msgctxt ""
"func_averageif.xhp\n"
"hd_id210572014129502\n"
@@ -61471,7 +57401,6 @@ msgid "Simple usage"
msgstr ""
#: func_averageif.xhp
-#, fuzzy
msgctxt ""
"func_averageif.xhp\n"
"par_id2509201519225446\n"
@@ -61488,7 +57417,6 @@ msgid "Calculates the average for values of the range B2:B6 that are less than 3
msgstr ""
#: func_averageif.xhp
-#, fuzzy
msgctxt ""
"func_averageif.xhp\n"
"par_id250920151922590\n"
@@ -61505,7 +57433,6 @@ msgid "Calculates the average for values of the same range that are less than th
msgstr ""
#: func_averageif.xhp
-#, fuzzy
msgctxt ""
"func_averageif.xhp\n"
"par_id2509201519230832\n"
@@ -61530,7 +57457,6 @@ msgid "Using the Average_Range"
msgstr ""
#: func_averageif.xhp
-#, fuzzy
msgctxt ""
"func_averageif.xhp\n"
"par_id2509201519315584\n"
@@ -61547,7 +57473,6 @@ msgid "The function searches what values are less than 35 in the B2:B6 range, an
msgstr ""
#: func_averageif.xhp
-#, fuzzy
msgctxt ""
"func_averageif.xhp\n"
"par_id2509201519315535\n"
@@ -61564,7 +57489,6 @@ msgid "The function searches what values from the range B2:B6 are greater than t
msgstr ""
#: func_averageif.xhp
-#, fuzzy
msgctxt ""
"func_averageif.xhp\n"
"par_id2509201519315547\n"
@@ -61589,7 +57513,6 @@ msgid "Using regular expressions"
msgstr ""
#: func_averageif.xhp
-#, fuzzy
msgctxt ""
"func_averageif.xhp\n"
"par_id2509201519360514\n"
@@ -61606,7 +57529,6 @@ msgid "The function searches what cells from the range A2:A6 contain only the wo
msgstr ""
#: func_averageif.xhp
-#, fuzzy
msgctxt ""
"func_averageif.xhp\n"
"par_id250920151936096\n"
@@ -61623,7 +57545,6 @@ msgid "The function searches what cells from the range A2:A6 begin with “pen
msgstr ""
#: func_averageif.xhp
-#, fuzzy
msgctxt ""
"func_averageif.xhp\n"
"par_id2509201519361352\n"
@@ -61656,7 +57577,6 @@ msgid "If you need to change a criterion easily, you may want to specify it in a
msgstr ""
#: func_averageif.xhp
-#, fuzzy
msgctxt ""
"func_averageif.xhp\n"
"par_id134941261230060\n"
@@ -61673,7 +57593,6 @@ msgid "The function searches what cells from the range A2:A6 contain a combinati
msgstr ""
#: func_averageif.xhp
-#, fuzzy
msgctxt ""
"func_averageif.xhp\n"
"par_id316901523627285\n"
@@ -61706,7 +57625,6 @@ msgid "AVERAGEIFS function"
msgstr ""
#: func_averageifs.xhp
-#, fuzzy
msgctxt ""
"func_averageifs.xhp\n"
"bm_id536715367153671\n"
@@ -61715,7 +57633,6 @@ msgid "<bookmark_value>AVERAGEIFS function</bookmark_value> <bookmark_value>ari
msgstr "<bookmark_value>AVEDEV 函数</bookmark_value><bookmark_value>平均值; 统计函数</bookmark_value>"
#: func_averageifs.xhp
-#, fuzzy
msgctxt ""
"func_averageifs.xhp\n"
"hd_id537445374453744\n"
@@ -61732,7 +57649,6 @@ msgid "<ahelp hid=\".\"><variable id=\"averageifs_des\">Returns the arithmetic m
msgstr ""
#: func_averageifs.xhp
-#, fuzzy
msgctxt ""
"func_averageifs.xhp\n"
"hd_id538895388953889\n"
@@ -61821,7 +57737,6 @@ msgid "Simple usage"
msgstr ""
#: func_averageifs.xhp
-#, fuzzy
msgctxt ""
"func_averageifs.xhp\n"
"par_id24004653627203\n"
@@ -61838,7 +57753,6 @@ msgid "Calculates the average for values of the range B2:B6 that are greater tha
msgstr ""
#: func_averageifs.xhp
-#, fuzzy
msgctxt ""
"func_averageifs.xhp\n"
"par_id30279247419921\n"
@@ -61951,7 +57865,6 @@ msgid "<bookmark_value>colors;numerical values</bookmark_value> <bookmark_value
msgstr ""
#: func_color.xhp
-#, fuzzy
msgctxt ""
"func_color.xhp\n"
"hd_id456845684568\n"
@@ -61964,7 +57877,7 @@ msgctxt ""
"func_color.xhp\n"
"par_id1102201617001848\n"
"help.text"
-msgid "<ahelp hid=\".\">Return a numeric value calculated by a combination of three colors (red, green and blue) and the alpha channel, in the RGBA color system.</ahelp>The result depends on the color system used by your computer."
+msgid "<ahelp hid=\".\">Return a numeric value calculated by a combination of three colors (red, green and blue) and the alpha channel, in the RGBA color system.</ahelp> The result depends on the color system used by your computer."
msgstr ""
#: func_color.xhp
@@ -62040,7 +57953,6 @@ msgid "<bookmark_value>COUNTIFS function</bookmark_value> <bookmark_value>count
msgstr ""
#: func_countifs.xhp
-#, fuzzy
msgctxt ""
"func_countifs.xhp\n"
"hd_id456845684568\n"
@@ -62057,7 +57969,6 @@ msgid "<ahelp hid=\".\"><variable id=\"countifs_des\">Returns the count of rows
msgstr ""
#: func_countifs.xhp
-#, fuzzy
msgctxt ""
"func_countifs.xhp\n"
"hd_id465746574657\n"
@@ -62130,7 +58041,6 @@ msgid "Simple usage"
msgstr ""
#: func_countifs.xhp
-#, fuzzy
msgctxt ""
"func_countifs.xhp\n"
"par_id15856592423333\n"
@@ -62147,7 +58057,6 @@ msgid "Counts the amount of rows of the range B2:B6 with values greater than or
msgstr ""
#: func_countifs.xhp
-#, fuzzy
msgctxt ""
"func_countifs.xhp\n"
"par_id74301057922522\n"
@@ -62172,7 +58081,6 @@ msgid "Using regular expressions and nested functions"
msgstr ""
#: func_countifs.xhp
-#, fuzzy
msgctxt ""
"func_countifs.xhp\n"
"par_id22736248573471\n"
@@ -62280,7 +58188,6 @@ msgstr "<bookmark_value>DATE 函数</bookmark_value>"
msgctxt ""
"func_date.xhp\n"
"hd_id3155511\n"
-"3\n"
"help.text"
msgid "<variable id=\"date\"><link href=\"text/scalc/01/func_date.xhp\">DATE</link></variable>"
msgstr "<variable id=\"date\"><link href=\"text/scalc/01/func_date.xhp\">DATE</link></variable>"
@@ -62289,7 +58196,6 @@ msgstr "<variable id=\"date\"><link href=\"text/scalc/01/func_date.xhp\">DATE</l
msgctxt ""
"func_date.xhp\n"
"par_id3153551\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DATUM\">This function calculates a date specified by year, month, day and displays it in the cell's formatting.</ahelp> The default format of a cell containing the DATE function is the date format, but you can format the cells with any other number format."
msgstr "<ahelp hid=\"HID_FUNC_DATUM\">此函数通过指定的年、月、日计算日期并且以单元格的格式显示。</ahelp>单元格默认格式包含的 DATE 函数是日期格式,但是您可以用任何其他的数字格式将其格式化。"
@@ -62298,7 +58204,6 @@ msgstr "<ahelp hid=\"HID_FUNC_DATUM\">此函数通过指定的年、月、日计
msgctxt ""
"func_date.xhp\n"
"hd_id3148590\n"
-"5\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -62307,7 +58212,6 @@ msgstr "语法"
msgctxt ""
"func_date.xhp\n"
"par_id3150474\n"
-"6\n"
"help.text"
msgid "DATE(Year; Month; Day)"
msgstr "DATE(Year; Month; Day)"
@@ -62316,7 +58220,6 @@ msgstr "DATE(Year; Month; Day)"
msgctxt ""
"func_date.xhp\n"
"par_id3152815\n"
-"7\n"
"help.text"
msgid "<emph>Year</emph> is an integer between 1583 and 9957 or between 0 and 99."
msgstr "<emph>Year</emph> 是一个在 1583 到 9957 之间或者在 0 到 99之间的整数。"
@@ -62325,7 +58228,6 @@ msgstr "<emph>Year</emph> 是一个在 1583 到 9957 之间或者在 0 到 99之
msgctxt ""
"func_date.xhp\n"
"par_id3153222\n"
-"174\n"
"help.text"
msgid "In <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><item type=\"menuitem\"> - $[officename] - General </item>you can set from which year a two-digit number entry is recognized as 20xx."
msgstr ""
@@ -62334,7 +58236,6 @@ msgstr ""
msgctxt ""
"func_date.xhp\n"
"par_id3155817\n"
-"8\n"
"help.text"
msgid "<emph>Month</emph> is an integer indicating the month."
msgstr "<emph>Month</emph> 是一个整数,用来表示月份。"
@@ -62343,17 +58244,14 @@ msgstr "<emph>Month</emph> 是一个整数,用来表示月份。"
msgctxt ""
"func_date.xhp\n"
"par_id3153183\n"
-"9\n"
"help.text"
msgid "<emph>Day</emph> is an integer indicating the day of the month."
msgstr "<emph>Day</emph> 是一个整数,用来表示一个月中的某一天。"
#: func_date.xhp
-#, fuzzy
msgctxt ""
"func_date.xhp\n"
"par_id3156260\n"
-"10\n"
"help.text"
msgid "If the values for month and day are out of bounds, they are carried over to the next digit. If you enter <item type=\"input\">=DATE(00;12;31)</item> the result will be 2000-12-31. If, on the other hand, you enter <item type=\"input\">=DATE(00;13;31)</item> the result will be 2001-01-31."
msgstr "若输入的月份数和天数大于允许的范围,程序就会将其进位到下一个数字位数。如果您输入的是 <item type=\"input\">=DATE(00;12;31)</item>,获得的结果便是 12/31/00。如果您输入的是 <item type=\"input\">=DATE(00;13;31)</item>,那么获得的结果则是 1/31/01。"
@@ -62362,7 +58260,6 @@ msgstr "若输入的月份数和天数大于允许的范围,程序就会将其
msgctxt ""
"func_date.xhp\n"
"hd_id3147477\n"
-"12\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -62371,7 +58268,6 @@ msgstr "示例"
msgctxt ""
"func_date.xhp\n"
"par_id3152589\n"
-"16\n"
"help.text"
msgid "<item type=\"input\">=DATE(00;1;31)</item> yields 1/31/00 if the cell format setting is MM/DD/YY."
msgstr "<item type=\"input\">=DATE(00;1;31)</item> 如果单元格格式设置为 MM/DD/YY,结果为 1/31/00。"
@@ -62401,7 +58297,6 @@ msgid "<variable id=\"datedif\"><link href=\"text/scalc/01/func_datedif.xhp\">DA
msgstr "<variable id=\"datedif\"><link href=\"text/scalc/01/func_datedif.xhp\">DATEDIF</link></variable>"
#: func_datedif.xhp
-#, fuzzy
msgctxt ""
"func_datedif.xhp\n"
"par_id3153551\n"
@@ -62629,7 +58524,6 @@ msgstr "<bookmark_value>DATEVALUE 函数</bookmark_value>"
msgctxt ""
"func_datevalue.xhp\n"
"hd_id3145621\n"
-"18\n"
"help.text"
msgid "<variable id=\"datevalue\"><link href=\"text/scalc/01/func_datevalue.xhp\">DATEVALUE</link></variable>"
msgstr "<variable id=\"datevalue\"><link href=\"text/scalc/01/func_datevalue.xhp\">DATEVALUE</link></variable>"
@@ -62638,7 +58532,6 @@ msgstr "<variable id=\"datevalue\"><link href=\"text/scalc/01/func_datevalue.xhp
msgctxt ""
"func_datevalue.xhp\n"
"par_id3145087\n"
-"19\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DATWERT\">Returns the internal date number for text in quotes.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_DATWERT\">加引号的文字返回内部日期值。</ahelp>"
@@ -62647,7 +58540,6 @@ msgstr "<ahelp hid=\"HID_FUNC_DATWERT\">加引号的文字返回内部日期值
msgctxt ""
"func_datevalue.xhp\n"
"par_id3149281\n"
-"20\n"
"help.text"
msgid "The internal date number is returned as a number. The number is determined by the date system that is used by $[officename] to calculate dates."
msgstr "内部日期值作为数字返回。该数字取决于 $[officename] 用来计算日期的日期系统。"
@@ -62664,7 +58556,6 @@ msgstr "如果文本字符串也包括时间值,DATEVALUE 只返回换算结
msgctxt ""
"func_datevalue.xhp\n"
"hd_id3156294\n"
-"21\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -62673,7 +58564,6 @@ msgstr "语法"
msgctxt ""
"func_datevalue.xhp\n"
"par_id3149268\n"
-"22\n"
"help.text"
msgid "DATEVALUE(\"Text\")"
msgstr "DATEVALUE(date_text)"
@@ -62682,7 +58572,6 @@ msgstr "DATEVALUE(date_text)"
msgctxt ""
"func_datevalue.xhp\n"
"par_id3154819\n"
-"23\n"
"help.text"
msgid "<emph>Text</emph> is a valid date expression and must be entered with quotation marks."
msgstr "<emph>Text</emph> 是一个有效的日期表达式,且必须在其前后加上引号。"
@@ -62691,7 +58580,6 @@ msgstr "<emph>Text</emph> 是一个有效的日期表达式,且必须在其前
msgctxt ""
"func_datevalue.xhp\n"
"hd_id3156309\n"
-"24\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -62700,7 +58588,6 @@ msgstr "示例"
msgctxt ""
"func_datevalue.xhp\n"
"par_id3155841\n"
-"25\n"
"help.text"
msgid "<emph>=DATEVALUE(\"1954-07-20\")</emph> yields 19925."
msgstr "<emph>=DATEVALUE()</emph> 返回 19925。"
@@ -62725,7 +58612,6 @@ msgstr "<bookmark_value>DAY 函数</bookmark_value>"
msgctxt ""
"func_day.xhp\n"
"hd_id3147317\n"
-"106\n"
"help.text"
msgid "<variable id=\"day\"><link href=\"text/scalc/01/func_day.xhp\">DAY</link></variable>"
msgstr "<variable id=\"day\"><link href=\"text/scalc/01/func_day.xhp\">DAY</link></variable>"
@@ -62734,7 +58620,6 @@ msgstr "<variable id=\"day\"><link href=\"text/scalc/01/func_day.xhp\">DAY</link
msgctxt ""
"func_day.xhp\n"
"par_id3147584\n"
-"107\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TAG\">Returns the day of given date value.</ahelp> The day is returned as an integer between 1 and 31. You can also enter a negative date/time value."
msgstr "<ahelp hid=\"HID_FUNC_TAG\">返回给定日期值的“日”,</ahelp> 用 1 到 31 之间的整数表示。也可以输入负的日期/时间值。"
@@ -62743,7 +58628,6 @@ msgstr "<ahelp hid=\"HID_FUNC_TAG\">返回给定日期值的“日”,</ahelp>
msgctxt ""
"func_day.xhp\n"
"hd_id3150487\n"
-"108\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -62752,7 +58636,6 @@ msgstr "语法"
msgctxt ""
"func_day.xhp\n"
"par_id3149430\n"
-"109\n"
"help.text"
msgid "DAY(Number)"
msgstr "DAY(serial_number)"
@@ -62761,7 +58644,6 @@ msgstr "DAY(serial_number)"
msgctxt ""
"func_day.xhp\n"
"par_id3149443\n"
-"110\n"
"help.text"
msgid "<emph>Number</emph>, as a time value, is a decimal, for which the day is to be returned."
msgstr "<emph>serial_number</emph> 是一个要确定其对应(日期)天数的时间值。"
@@ -62770,7 +58652,6 @@ msgstr "<emph>serial_number</emph> 是一个要确定其对应(日期)天数的
msgctxt ""
"func_day.xhp\n"
"hd_id3163809\n"
-"111\n"
"help.text"
msgid "Examples"
msgstr "示例"
@@ -62779,7 +58660,6 @@ msgstr "示例"
msgctxt ""
"func_day.xhp\n"
"par_id3151200\n"
-"112\n"
"help.text"
msgid "DAY(1) returns 31 (since $[officename] starts counting at zero from December 30, 1899)"
msgstr "=DAY(1) 返回 31(因为 $[officename] 从 1899 年 12 月 30 日以零开始计数)"
@@ -62788,7 +58668,6 @@ msgstr "=DAY(1) 返回 31(因为 $[officename] 从 1899 年 12 月 30 日以
msgctxt ""
"func_day.xhp\n"
"par_id3154130\n"
-"113\n"
"help.text"
msgid "DAY(NOW()) returns the current day."
msgstr "DAY(NOW()) 返回当前日期"
@@ -62797,7 +58676,6 @@ msgstr "DAY(NOW()) 返回当前日期"
msgctxt ""
"func_day.xhp\n"
"par_id3159190\n"
-"114\n"
"help.text"
msgid "=DAY(C4) returns 5 if you enter 1901-08-05 in cell C4 (the date value might get formatted differently after you press Enter)."
msgstr "=DAY(C4) 返回 5, 如果在单元格 C4 中输入 1901-08-05 (当您按下 \"Enter\" 后,日期格式可能会被更改)。"
@@ -62822,7 +58700,6 @@ msgstr "<bookmark_value>DAYS 函数</bookmark_value>"
msgctxt ""
"func_days.xhp\n"
"hd_id3151328\n"
-"116\n"
"help.text"
msgid "<variable id=\"days\"><link href=\"text/scalc/01/func_days.xhp\">DAYS</link></variable>"
msgstr "<variable id=\"days\"><link href=\"text/scalc/01/func_days.xhp\">DAYS</link></variable>"
@@ -62831,7 +58708,6 @@ msgstr "<variable id=\"days\"><link href=\"text/scalc/01/func_days.xhp\">DAYS</l
msgctxt ""
"func_days.xhp\n"
"par_id3155139\n"
-"117\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TAGE\">Calculates the difference between two date values.</ahelp> The result returns the number of days between the two days."
msgstr "<ahelp hid=\"HID_FUNC_TAGE\">计算两个日期值之间的差异。</ahelp> 结果返回两个日期之间的天数。"
@@ -62840,7 +58716,6 @@ msgstr "<ahelp hid=\"HID_FUNC_TAGE\">计算两个日期值之间的差异。</ah
msgctxt ""
"func_days.xhp\n"
"hd_id3155184\n"
-"118\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -62849,7 +58724,6 @@ msgstr "语法"
msgctxt ""
"func_days.xhp\n"
"par_id3149578\n"
-"119\n"
"help.text"
msgid "DAYS(Date2; Date1)"
msgstr "DAYS(Date2; Date1)"
@@ -62858,7 +58732,6 @@ msgstr "DAYS(Date2; Date1)"
msgctxt ""
"func_days.xhp\n"
"par_id3151376\n"
-"120\n"
"help.text"
msgid "<emph>Date1</emph> is the start date, <emph>Date2</emph> is the end date. If <emph>Date2</emph> is an earlier date than <emph>Date1</emph> the result is a negative number."
msgstr "<emph>Date1</emph> 是开始日期,<emph>Date2</emph> 是结束日期。如果 <emph>Date2</emph> 早于 <emph>Date1</emph>,则结果是一个负数。"
@@ -62867,7 +58740,6 @@ msgstr "<emph>Date1</emph> 是开始日期,<emph>Date2</emph> 是结束日期
msgctxt ""
"func_days.xhp\n"
"hd_id3151001\n"
-"121\n"
"help.text"
msgid "Examples"
msgstr "示例"
@@ -62876,7 +58748,6 @@ msgstr "示例"
msgctxt ""
"func_days.xhp\n"
"par_id3159101\n"
-"123\n"
"help.text"
msgid "=DAYS(\"2010-01-01\"; NOW()) returns the number of days from today until January 1, 2010."
msgstr "=DAYS(\"2010-01-01\"; NOW()) 返回从今天到 2010 年 1 月 1 号的天数。"
@@ -62885,7 +58756,6 @@ msgstr "=DAYS(\"2010-01-01\"; NOW()) 返回从今天到 2010 年 1 月 1 号的
msgctxt ""
"func_days.xhp\n"
"par_id3163720\n"
-"172\n"
"help.text"
msgid "=DAYS(\"1990-10-10\";\"1980-10-10\") returns 3652 days."
msgstr "=DAYS(\"1990-10-10\";\"1980-10-10\") 返回 3652 天。"
@@ -62910,7 +58780,6 @@ msgstr "<bookmark_value>DAYS360 函数</bookmark_value>"
msgctxt ""
"func_days360.xhp\n"
"hd_id3148555\n"
-"124\n"
"help.text"
msgid "<variable id=\"days360\"><link href=\"text/scalc/01/func_days360.xhp\">DAYS360</link></variable>"
msgstr "<variable id=\"days360\"><link href=\"text/scalc/01/func_days360.xhp\">DAYS360</link></variable>"
@@ -62919,7 +58788,6 @@ msgstr "<variable id=\"days360\"><link href=\"text/scalc/01/func_days360.xhp\">D
msgctxt ""
"func_days360.xhp\n"
"par_id3156032\n"
-"125\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TAGE360\">Returns the difference between two dates based on the 360 day year used in interest calculations.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_TAGE360\">在按照一年 360 天的利息计算中,返回两日期相差的天数。</ahelp>"
@@ -62928,7 +58796,6 @@ msgstr "<ahelp hid=\"HID_FUNC_TAGE360\">在按照一年 360 天的利息计算
msgctxt ""
"func_days360.xhp\n"
"hd_id3155347\n"
-"126\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -62937,7 +58804,6 @@ msgstr "语法"
msgctxt ""
"func_days360.xhp\n"
"par_id3155313\n"
-"127\n"
"help.text"
msgid "DAYS360(\"Date1\"; \"Date2\"; Type)"
msgstr "DAYS360(\"Date1\"; \"Date2\"; Type)"
@@ -62946,7 +58812,6 @@ msgstr "DAYS360(\"Date1\"; \"Date2\"; Type)"
msgctxt ""
"func_days360.xhp\n"
"par_id3145263\n"
-"128\n"
"help.text"
msgid "If <emph>Date2</emph> is earlier than <emph>Date1</emph>, the function will return a negative number."
msgstr "如果 <emph>Date2</emph> 早于 <emph>Date1</emph>,函数返回的结果是一个负数。"
@@ -62955,7 +58820,6 @@ msgstr "如果 <emph>Date2</emph> 早于 <emph>Date1</emph>,函数返回的结
msgctxt ""
"func_days360.xhp\n"
"par_id3151064\n"
-"129\n"
"help.text"
msgid "The optional argument <emph>Type</emph> determines the type of difference calculation. If Type = 0 or if the argument is missing, the US method (NASD, National Association of Securities Dealers) is used. If Type <> 0, the European method is used."
msgstr "可选自变量<emph>类型</emph>决定了不同的运算类型。Type = 0 或者没有 Type 自变量时,应用美国方式(NASD,美国证券交易商协会)。Type <> 0 时,应用欧洲方式。"
@@ -62964,7 +58828,6 @@ msgstr "可选自变量<emph>类型</emph>决定了不同的运算类型。Type
msgctxt ""
"func_days360.xhp\n"
"hd_id3148641\n"
-"130\n"
"help.text"
msgid "Examples"
msgstr "示例"
@@ -62973,7 +58836,6 @@ msgstr "示例"
msgctxt ""
"func_days360.xhp\n"
"par_id3156348\n"
-"132\n"
"help.text"
msgid "=DAYS360(\"2000-01-01\";NOW()) returns the number of interest days from January 1, 2000 until today."
msgstr "=DAYS360(\"2000-01-01\";NOW()) 返回今天与 2000 年 1 月 1 日之间相差的利息天数。"
@@ -62998,7 +58860,6 @@ msgstr "<bookmark_value>EASTERSUNDAY 函数</bookmark_value>"
msgctxt ""
"func_eastersunday.xhp\n"
"hd_id3152960\n"
-"175\n"
"help.text"
msgid "<variable id=\"eastersunday\"><link href=\"text/scalc/01/func_eastersunday.xhp\">EASTERSUNDAY</link></variable>"
msgstr "<variable id=\"eastersunday\"><link href=\"text/scalc/01/func_eastersunday.xhp\">EASTERSUNDAY</link></variable>"
@@ -63007,7 +58868,6 @@ msgstr "<variable id=\"eastersunday\"><link href=\"text/scalc/01/func_eastersund
msgctxt ""
"func_eastersunday.xhp\n"
"par_id3154570\n"
-"176\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_OSTERSONNTAG\">Returns the date of Easter Sunday for the entered year.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_OSTERSONNTAG\">返回输入年份的复活节的日期。</ahelp>"
@@ -63040,7 +58900,6 @@ msgstr "<emph>Year</emph> 是一个在 1583 到 9956之间或者在 0 到 99 之
msgctxt ""
"func_eastersunday.xhp\n"
"par_id3156156\n"
-"177\n"
"help.text"
msgid "Easter Monday = EASTERSUNDAY(Year) + 1"
msgstr "复活节星期一 = EASTERSUNDAY(Year) + 1"
@@ -63049,7 +58908,6 @@ msgstr "复活节星期一 = EASTERSUNDAY(Year) + 1"
msgctxt ""
"func_eastersunday.xhp\n"
"par_id3147521\n"
-"178\n"
"help.text"
msgid "Good Friday = EASTERSUNDAY(Year) - 2"
msgstr "耶稣受难节 = EASTERSUNDAY(Year) - 2"
@@ -63058,7 +58916,6 @@ msgstr "耶稣受难节 = EASTERSUNDAY(Year) - 2"
msgctxt ""
"func_eastersunday.xhp\n"
"par_id3146072\n"
-"179\n"
"help.text"
msgid "Pentecost Sunday = EASTERSUNDAY(Year) + 49"
msgstr "圣灵降临节星期日 = EASTERSUNDAY(Year) + 49"
@@ -63067,7 +58924,6 @@ msgstr "圣灵降临节星期日 = EASTERSUNDAY(Year) + 49"
msgctxt ""
"func_eastersunday.xhp\n"
"par_id3149553\n"
-"180\n"
"help.text"
msgid "Pentecost Monday = EASTERSUNDAY(Year) + 50"
msgstr "圣灵降临节星期一 = EASTERSUNDAY(Year) + 50"
@@ -63076,7 +58932,6 @@ msgstr "圣灵降临节星期一 = EASTERSUNDAY(Year) + 50"
msgctxt ""
"func_eastersunday.xhp\n"
"hd_id3155120\n"
-"181\n"
"help.text"
msgid "Examples"
msgstr "示例"
@@ -63085,7 +58940,6 @@ msgstr "示例"
msgctxt ""
"func_eastersunday.xhp\n"
"par_id3154472\n"
-"182\n"
"help.text"
msgid "=EASTERSUNDAY(2000) returns 2000-04-23."
msgstr "=EASTERSUNDAY(2000) 返回 2000-04-23。"
@@ -63094,7 +58948,6 @@ msgstr "=EASTERSUNDAY(2000) 返回 2000-04-23。"
msgctxt ""
"func_eastersunday.xhp\n"
"par_id3150940\n"
-"184\n"
"help.text"
msgid "EASTERSUNDAY(2000)+49 returns the internal serial number 36688. The result is 2000-06-11. Format the serial date number as a date, for example in the format YYYY-MM-DD."
msgstr "EASTERSUNDAY(2000)+49 返回内部序列数 36688。结果为 2000-06-11。将顺序日期数格式化为日期,例如格式为 YYYY-MM-DD。"
@@ -63119,7 +58972,6 @@ msgstr "<bookmark_value>EDATE 函数</bookmark_value>"
msgctxt ""
"func_edate.xhp\n"
"hd_id3151184\n"
-"213\n"
"help.text"
msgid "<variable id=\"edate\"><link href=\"text/scalc/01/func_edate.xhp\">EDATE</link></variable>"
msgstr "<variable id=\"edate\"><link href=\"text/scalc/01/func_edate.xhp\">EDATE</link></variable>"
@@ -63128,7 +58980,6 @@ msgstr "<variable id=\"edate\"><link href=\"text/scalc/01/func_edate.xhp\">EDATE
msgctxt ""
"func_edate.xhp\n"
"par_id3150880\n"
-"214\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_EDATE\">The result is a date which is a number of <emph>months</emph> away from the <emph>start date</emph>. Only months are considered; days are not used for calculation.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_EDATE\">返回的结果为距离 <emph>起始日期</emph> 相隔 <emph>月数</emph> 的日期值。计算时只考虑月数,不考虑天数。</ahelp>"
@@ -63137,7 +58988,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_EDATE\">返回的结果为距离 <emph>起始
msgctxt ""
"func_edate.xhp\n"
"hd_id3154647\n"
-"215\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -63146,7 +58996,6 @@ msgstr "语法"
msgctxt ""
"func_edate.xhp\n"
"par_id3153212\n"
-"216\n"
"help.text"
msgid "EDATE(StartDate; Months)"
msgstr "EDATE(起始日期; 月数)"
@@ -63155,7 +59004,6 @@ msgstr "EDATE(起始日期; 月数)"
msgctxt ""
"func_edate.xhp\n"
"par_id3146860\n"
-"217\n"
"help.text"
msgid "<emph>StartDate</emph> is a date."
msgstr "<emph>起始日期</emph> 一个日期。"
@@ -63164,7 +59012,6 @@ msgstr "<emph>起始日期</emph> 一个日期。"
msgctxt ""
"func_edate.xhp\n"
"par_id3152929\n"
-"218\n"
"help.text"
msgid "<emph>Months</emph> is the number of months before (negative) or after (positive) the start date."
msgstr "<emph>月数</emph> 所求的月份应在开始日期之前的几个月(负)或之后的几个月(正)。"
@@ -63173,7 +59020,6 @@ msgstr "<emph>月数</emph> 所求的月份应在开始日期之前的几个月
msgctxt ""
"func_edate.xhp\n"
"hd_id3151289\n"
-"219\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -63182,7 +59028,6 @@ msgstr "示例"
msgctxt ""
"func_edate.xhp\n"
"par_id3155845\n"
-"220\n"
"help.text"
msgid "What date is one month prior to 2001-03-31?"
msgstr "2001-03-31 前一个月的日期是什么?"
@@ -63191,7 +59036,6 @@ msgstr "2001-03-31 前一个月的日期是什么?"
msgctxt ""
"func_edate.xhp\n"
"par_id3155999\n"
-"221\n"
"help.text"
msgid "<item type=\"input\">=EDATE(\"2001-03-31\";-1)</item> returns the serial number 36950. Formatted as a date, this is 2001-02-28."
msgstr "<item type=\"input\">=EDATE(\"2001-03-31\";-1)</item> 返回序列数36950. 若格式化为日期,则显示2001-02-28."
@@ -63216,17 +59060,14 @@ msgstr "<bookmark_value>EOMONTH 函数</bookmark_value>"
msgctxt ""
"func_eomonth.xhp\n"
"hd_id3150991\n"
-"231\n"
"help.text"
msgid "<variable id=\"eomonth\"><link href=\"text/scalc/01/func_eomonth.xhp\">EOMONTH</link></variable>"
msgstr "<variable id=\"eomonth\"><link href=\"text/scalc/01/func_eomonth.xhp\">EOMONTH</link></variable>"
#: func_eomonth.xhp
-#, fuzzy
msgctxt ""
"func_eomonth.xhp\n"
"par_id3152766\n"
-"232\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_EOMONTH\">Returns the date of the last day of a month which falls months away from the start date.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_EOMONTH\">返回与 <emph>起始日期</emph> 间隔 <emph>月数</emph> 的那个月的最后一天的日期。</ahelp>"
@@ -63235,7 +59076,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_EOMONTH\">返回与 <emph>起始日期</emph>
msgctxt ""
"func_eomonth.xhp\n"
"hd_id3150597\n"
-"233\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -63244,7 +59084,6 @@ msgstr "语法"
msgctxt ""
"func_eomonth.xhp\n"
"par_id3150351\n"
-"234\n"
"help.text"
msgid "EOMONTH(StartDate; Months)"
msgstr "EOMONTH(起始日期; 月数)"
@@ -63253,7 +59092,6 @@ msgstr "EOMONTH(起始日期; 月数)"
msgctxt ""
"func_eomonth.xhp\n"
"par_id3146787\n"
-"235\n"
"help.text"
msgid "<emph>StartDate</emph> is a date (the starting point of the calculation)."
msgstr "<emph>起始日期</emph> 一个日期(由此开始计算)。"
@@ -63262,7 +59100,6 @@ msgstr "<emph>起始日期</emph> 一个日期(由此开始计算)。"
msgctxt ""
"func_eomonth.xhp\n"
"par_id3155615\n"
-"236\n"
"help.text"
msgid "<emph>Months</emph> is the number of months before (negative) or after (positive) the start date."
msgstr "<emph>月数</emph> 所求的月份应在开始日期之前的几个月(负)或之后的几个月(正)。"
@@ -63271,7 +59108,6 @@ msgstr "<emph>月数</emph> 所求的月份应在开始日期之前的几个月
msgctxt ""
"func_eomonth.xhp\n"
"hd_id3156335\n"
-"237\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -63280,7 +59116,6 @@ msgstr "示例"
msgctxt ""
"func_eomonth.xhp\n"
"par_id3154829\n"
-"238\n"
"help.text"
msgid "What is the last day of the month that falls 6 months after September 14 2001?"
msgstr "2001 年 9 月 14 日后 6 个月的那个月的最后一天是哪天?"
@@ -63289,7 +59124,6 @@ msgstr "2001 年 9 月 14 日后 6 个月的那个月的最后一天是哪天?
msgctxt ""
"func_eomonth.xhp\n"
"par_id3156143\n"
-"239\n"
"help.text"
msgid "<item type=\"input\">=EOMONTH(DATE(2001;9;14);6)</item> returns the serial number 37346. Formatted as a date, this is 2002-03-31."
msgstr "<item type=\"input\">=EOMONTH(DATE(2001;9;14);6)</item> 返回序列号 37346。格式化为日期,即 2002-03-31。"
@@ -63298,7 +59132,6 @@ msgstr "<item type=\"input\">=EOMONTH(DATE(2001;9;14);6)</item> 返回序列号
msgctxt ""
"func_eomonth.xhp\n"
"par_id3156144\n"
-"239\n"
"help.text"
msgid "<item type=\"input\">=EOMONTH(\"2001-09-14\";6)</item> works as well. If the date is given as string, it has to be in ISO format."
msgstr "<item type=\"input\">=EOMONTH(\"2001-09-14\";6)</item> 也可以执行。如果输入的日期是字符串,那么必须符合ISO格式。"
@@ -63312,7 +59145,6 @@ msgid "ERROR.TYPE function"
msgstr ""
#: func_error_type.xhp
-#, fuzzy
msgctxt ""
"func_error_type.xhp\n"
"bm_id346793467934679\n"
@@ -63321,7 +59153,6 @@ msgid "<bookmark_value>ERROR.TYPE function</bookmark_value> <bookmark_value>ind
msgstr "<bookmark_value>MINVERSE 函数</bookmark_value><bookmark_value>逆数组</bookmark_value>"
#: func_error_type.xhp
-#, fuzzy
msgctxt ""
"func_error_type.xhp\n"
"hd_id348223482234822\n"
@@ -63338,7 +59169,6 @@ msgid "<ahelp hid=\".\"><variable id=\"error_type_des\">Returns a number represe
msgstr ""
#: func_error_type.xhp
-#, fuzzy
msgctxt ""
"func_error_type.xhp\n"
"hd_id351323513235132\n"
@@ -63395,7 +59225,6 @@ msgid "#DIV/0!"
msgstr ""
#: func_error_type.xhp
-#, fuzzy
msgctxt ""
"func_error_type.xhp\n"
"par_id121020152053296785\n"
@@ -63452,7 +59281,6 @@ msgid "#N/A"
msgstr ""
#: func_error_type.xhp
-#, fuzzy
msgctxt ""
"func_error_type.xhp\n"
"hd_id352113521135211\n"
@@ -63565,7 +59393,6 @@ msgid "FORECAST.ETS.ADD"
msgstr ""
#: func_forecastetsadd.xhp
-#, fuzzy
msgctxt ""
"func_forecastetsadd.xhp\n"
"bm_id976559765597655\n"
@@ -63598,7 +59425,6 @@ msgid "FORECAST.ETS.ADD calculates with the model"
msgstr ""
#: func_forecastetsadd.xhp
-#, fuzzy
msgctxt ""
"func_forecastetsadd.xhp\n"
"hd_id0403201618594554\n"
@@ -63663,7 +59489,6 @@ msgid "FORECAST.ETS.MULT"
msgstr ""
#: func_forecastetsmult.xhp
-#, fuzzy
msgctxt ""
"func_forecastetsmult.xhp\n"
"bm_id976559765597655\n"
@@ -63696,7 +59521,6 @@ msgid "FORECAST.ETS.MULT calculates with the model"
msgstr ""
#: func_forecastetsmult.xhp
-#, fuzzy
msgctxt ""
"func_forecastetsmult.xhp\n"
"hd_id0403201618594554\n"
@@ -63761,7 +59585,6 @@ msgid "FORECAST.ETS.PI.ADD"
msgstr ""
#: func_forecastetspiadd.xhp
-#, fuzzy
msgctxt ""
"func_forecastetspiadd.xhp\n"
"bm_id976559765597655\n"
@@ -63794,7 +59617,6 @@ msgid "FORECAST.ETS.PI.ADD calculates with the model"
msgstr ""
#: func_forecastetspiadd.xhp
-#, fuzzy
msgctxt ""
"func_forecastetspiadd.xhp\n"
"hd_id0603201610005973\n"
@@ -63883,7 +59705,6 @@ msgid "FORECAST.ETS.PI.MULT"
msgstr ""
#: func_forecastetspimult.xhp
-#, fuzzy
msgctxt ""
"func_forecastetspimult.xhp\n"
"bm_id976559765597655\n"
@@ -63916,7 +59737,6 @@ msgid "FORECAST.ETS.PI.MULT calculates with the model"
msgstr ""
#: func_forecastetspimult.xhp
-#, fuzzy
msgctxt ""
"func_forecastetspimult.xhp\n"
"hd_id0603201610005973\n"
@@ -64005,7 +59825,6 @@ msgid "FORECAST.ETS.SEASONALITY"
msgstr ""
#: func_forecastetsseason.xhp
-#, fuzzy
msgctxt ""
"func_forecastetsseason.xhp\n"
"bm_id976559765597655\n"
@@ -64038,7 +59857,6 @@ msgid "The same result is returned with FORECAST.ETS.STAT functions when argumen
msgstr ""
#: func_forecastetsseason.xhp
-#, fuzzy
msgctxt ""
"func_forecastetsseason.xhp\n"
"hd_id0603201618013635\n"
@@ -64087,7 +59905,6 @@ msgid "FORECAST.ETS.STAT.ADD"
msgstr ""
#: func_forecastetsstatadd.xhp
-#, fuzzy
msgctxt ""
"func_forecastetsstatadd.xhp\n"
"bm_id976559765597655\n"
@@ -64120,7 +59937,6 @@ msgid "FORECAST.ETS.STAT.ADD calculates with the model"
msgstr ""
#: func_forecastetsstatadd.xhp
-#, fuzzy
msgctxt ""
"func_forecastetsstatadd.xhp\n"
"par_id050320162122554\n"
@@ -64185,7 +60001,6 @@ msgid "FORECAST.ETS.STAT.MULT"
msgstr ""
#: func_forecastetsstatmult.xhp
-#, fuzzy
msgctxt ""
"func_forecastetsstatmult.xhp\n"
"bm_id976559765597655\n"
@@ -64218,7 +60033,6 @@ msgid "FORECAST.ETS.STAT.MULT calculates with the model"
msgstr ""
#: func_forecastetsstatmult.xhp
-#, fuzzy
msgctxt ""
"func_forecastetsstatmult.xhp\n"
"par_id050320162122554\n"
@@ -64294,7 +60108,6 @@ msgstr "<bookmark_value>HOUR 函数</bookmark_value>"
msgctxt ""
"func_hour.xhp\n"
"hd_id3154725\n"
-"96\n"
"help.text"
msgid "<variable id=\"hour\"><link href=\"text/scalc/01/func_hour.xhp\">HOUR</link></variable>"
msgstr "<variable id=\"hour\"><link href=\"text/scalc/01/func_hour.xhp\">HOUR</link></variable>"
@@ -64303,7 +60116,6 @@ msgstr "<variable id=\"hour\"><link href=\"text/scalc/01/func_hour.xhp\">HOUR</l
msgctxt ""
"func_hour.xhp\n"
"par_id3149747\n"
-"97\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_STUNDE\">Returns the hour for a given time value.</ahelp> The hour is returned as an integer between 0 and 23."
msgstr "<ahelp hid=\"HID_FUNC_STUNDE\">返回给定时间值的“小时”,</ahelp>表示为 0 到 23 之间的整数。"
@@ -64312,7 +60124,6 @@ msgstr "<ahelp hid=\"HID_FUNC_STUNDE\">返回给定时间值的“小时”,</
msgctxt ""
"func_hour.xhp\n"
"hd_id3149338\n"
-"98\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -64321,7 +60132,6 @@ msgstr "语法"
msgctxt ""
"func_hour.xhp\n"
"par_id3150637\n"
-"99\n"
"help.text"
msgid "HOUR(Number)"
msgstr "HOUR(serial_number)"
@@ -64330,7 +60140,6 @@ msgstr "HOUR(serial_number)"
msgctxt ""
"func_hour.xhp\n"
"par_id3147547\n"
-"100\n"
"help.text"
msgid "<emph>Number</emph>, as a time value, is a decimal, for which the hour is to be returned."
msgstr "<emph>serial_number</emph> 是一个要确定其对应小时数的时间值。"
@@ -64339,7 +60148,6 @@ msgstr "<emph>serial_number</emph> 是一个要确定其对应小时数的时间
msgctxt ""
"func_hour.xhp\n"
"hd_id3153264\n"
-"101\n"
"help.text"
msgid "Examples"
msgstr "示例"
@@ -64348,7 +60156,6 @@ msgstr "示例"
msgctxt ""
"func_hour.xhp\n"
"par_id3159215\n"
-"103\n"
"help.text"
msgid "<item type=\"input\">=HOUR(NOW())</item> returns the current hour"
msgstr "<item type=\"input\">=HOUR(NOW())</item> 返回当前的小时数"
@@ -64357,7 +60164,6 @@ msgstr "<item type=\"input\">=HOUR(NOW())</item> 返回当前的小时数"
msgctxt ""
"func_hour.xhp\n"
"par_id3145152\n"
-"104\n"
"help.text"
msgid "<item type=\"input\">=HOUR(C4)</item> returns 17 if the contents of C4 = <item type=\"input\">17:20:00</item>."
msgstr "<item type=\"input\">=HOUR(C4)</item> 返回 17,如果 C4 = <item type=\"input\">17:20:00</item>。"
@@ -64366,7 +60172,6 @@ msgstr "<item type=\"input\">=HOUR(C4)</item> 返回 17,如果 C4 = <item type
msgctxt ""
"func_hour.xhp\n"
"par_id3154188\n"
-"105\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060102.xhp\" name=\"YEAR\">YEAR</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"NOW\">NOW</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MINUTE\">MINUTE</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MONTH\">MONTH</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"DAY\">DAY</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"WEEKDAY\">WEEKDAY</link>."
msgstr "<link href=\"text/scalc/01/04060102.xhp\" name=\"YEAR\">YEAR</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"NOW\">NOW</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MINUTE\">MINUTE</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MONTH\">MONTH</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"DAY\">DAY</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"WEEKDAY\">WEEKDAY</link>。"
@@ -64380,7 +60185,6 @@ msgid "IMCOS function"
msgstr ""
#: func_imcos.xhp
-#, fuzzy
msgctxt ""
"func_imcos.xhp\n"
"bm_id262410558824\n"
@@ -64389,7 +60193,6 @@ msgid "<bookmark_value>IMCOS function</bookmark_value><bookmark_value>cosine;com
msgstr "<bookmark_value>SUMIF 函数</bookmark_value> <bookmark_value>添加; 指定的数字</bookmark_value>"
#: func_imcos.xhp
-#, fuzzy
msgctxt ""
"func_imcos.xhp\n"
"hd_id90361032228870\n"
@@ -64406,7 +60209,6 @@ msgid "<ahelp hid=\".\"><variable id=\"imcos_des\">Returns the cosine of a compl
msgstr ""
#: func_imcos.xhp
-#, fuzzy
msgctxt ""
"func_imcos.xhp\n"
"par_id164021484116762\n"
@@ -64447,7 +60249,6 @@ msgid "IMCOSH function"
msgstr ""
#: func_imcosh.xhp
-#, fuzzy
msgctxt ""
"func_imcosh.xhp\n"
"bm_id123771237712377\n"
@@ -64456,7 +60257,6 @@ msgid "<bookmark_value>IMCOSH function</bookmark_value><bookmark_value>hyperboli
msgstr "<bookmark_value>DELTA 函数</bookmark_value><bookmark_value>识别; 相等的数字</bookmark_value>"
#: func_imcosh.xhp
-#, fuzzy
msgctxt ""
"func_imcosh.xhp\n"
"hd_id124691246912469\n"
@@ -64473,7 +60273,6 @@ msgid "<ahelp hid=\".\"><variable id=\"imcosh_des\">Returns the hyperbolic cosin
msgstr ""
#: func_imcosh.xhp
-#, fuzzy
msgctxt ""
"func_imcosh.xhp\n"
"par_id16051131322110\n"
@@ -64514,7 +60313,6 @@ msgid "IMCOT function"
msgstr ""
#: func_imcot.xhp
-#, fuzzy
msgctxt ""
"func_imcot.xhp\n"
"bm_id762757627576275\n"
@@ -64523,7 +60321,6 @@ msgid "<bookmark_value>IMCOT function</bookmark_value><bookmark_value>cotangent;
msgstr "<bookmark_value>FACT 函数</bookmark_value> <bookmark_value>阶乘; 数字</bookmark_value>"
#: func_imcot.xhp
-#, fuzzy
msgctxt ""
"func_imcot.xhp\n"
"hd_id763567635676356\n"
@@ -64544,11 +60341,10 @@ msgctxt ""
"func_imcot.xhp\n"
"par_id311713256011430\n"
"help.text"
-msgid "<image id=\"img_id5988220084990\" src=\"res/helpimg/sc_func_imcot.png\"><alt id=\"alt_id5988220084990\">cot(a+bi)=cos(a+bi)/sin(a+bi)</alt></image>"
+msgid "<image id=\"img_id5988220084990\" src=\"media/helpimg/sc_func_imcot.png\"><alt id=\"alt_id5988220084990\">cot(a+bi)=cos(a+bi)/sin(a+bi)</alt></image>"
msgstr ""
#: func_imcot.xhp
-#, fuzzy
msgctxt ""
"func_imcot.xhp\n"
"par_id16051131322110\n"
@@ -64589,7 +60385,6 @@ msgid "IMCSC function"
msgstr ""
#: func_imcsc.xhp
-#, fuzzy
msgctxt ""
"func_imcsc.xhp\n"
"bm_id931179311793117\n"
@@ -64598,7 +60393,6 @@ msgid "<bookmark_value>IMCSC function</bookmark_value><bookmark_value>cosecant;c
msgstr "<bookmark_value>MODE 函数</bookmark_value><bookmark_value>频率最高的值</bookmark_value>"
#: func_imcsc.xhp
-#, fuzzy
msgctxt ""
"func_imcsc.xhp\n"
"hd_id931679316793167\n"
@@ -64619,11 +60413,10 @@ msgctxt ""
"func_imcsc.xhp\n"
"par_id13510198901485\n"
"help.text"
-msgid "<image id=\"img_id24404683532568\" src=\"res/helpimg/sc_func_imcsc.png\"><alt id=\"alt_id148492012231637\">csc(a+bi)=1/sin(a+bi)</alt></image>"
+msgid "<image id=\"img_id24404683532568\" src=\"media/helpimg/sc_func_imcsc.png\"><alt id=\"alt_id148492012231637\">csc(a+bi)=1/sin(a+bi)</alt></image>"
msgstr ""
#: func_imcsc.xhp
-#, fuzzy
msgctxt ""
"func_imcsc.xhp\n"
"par_id30461169611909\n"
@@ -64664,7 +60457,6 @@ msgid "IMCSCH function"
msgstr ""
#: func_imcsch.xhp
-#, fuzzy
msgctxt ""
"func_imcsch.xhp\n"
"bm_id976559765597655\n"
@@ -64673,7 +60465,6 @@ msgid "<bookmark_value>IMCSCH function</bookmark_value><bookmark_value>hyperboli
msgstr "<bookmark_value>ISERR 函数</bookmark_value><bookmark_value>错误代码; 控制</bookmark_value>"
#: func_imcsch.xhp
-#, fuzzy
msgctxt ""
"func_imcsch.xhp\n"
"hd_id977779777797777\n"
@@ -64694,11 +60485,10 @@ msgctxt ""
"func_imcsch.xhp\n"
"par_id195151657917534\n"
"help.text"
-msgid "<image id=\"img_id23513691929169\" src=\"res/helpimg/sc_func_imcsch.png\"><alt id=\"alt_id313882186926700\">csch(a+bi)=1/sinh(a+bi)</alt></image>"
+msgid "<image id=\"img_id23513691929169\" src=\"media/helpimg/sc_func_imcsch.png\"><alt id=\"alt_id313882186926700\">csch(a+bi)=1/sinh(a+bi)</alt></image>"
msgstr ""
#: func_imcsch.xhp
-#, fuzzy
msgctxt ""
"func_imcsch.xhp\n"
"par_id30461169611909\n"
@@ -64739,7 +60529,6 @@ msgid "IMSEC function"
msgstr ""
#: func_imsec.xhp
-#, fuzzy
msgctxt ""
"func_imsec.xhp\n"
"bm_id101862404332680\n"
@@ -64748,7 +60537,6 @@ msgid "<bookmark_value>IMSEC function</bookmark_value><bookmark_value>secant;com
msgstr "<bookmark_value>FACT 函数</bookmark_value> <bookmark_value>阶乘; 数字</bookmark_value>"
#: func_imsec.xhp
-#, fuzzy
msgctxt ""
"func_imsec.xhp\n"
"hd_id29384186273495\n"
@@ -64769,11 +60557,10 @@ msgctxt ""
"func_imsec.xhp\n"
"par_id17543461310594\n"
"help.text"
-msgid "<image id=\"img_id112671346811327\" src=\"res/helpimg/sc_func_imsec.png\"><alt id=\"alt_id303562937523579\">sec(a+bi)=1/cos(a+bi)</alt></image>"
+msgid "<image id=\"img_id112671346811327\" src=\"media/helpimg/sc_func_imsec.png\"><alt id=\"alt_id303562937523579\">sec(a+bi)=1/cos(a+bi)</alt></image>"
msgstr ""
#: func_imsec.xhp
-#, fuzzy
msgctxt ""
"func_imsec.xhp\n"
"par_id66061624115094\n"
@@ -64814,7 +60601,6 @@ msgid "IMSECH function"
msgstr ""
#: func_imsech.xhp
-#, fuzzy
msgctxt ""
"func_imsech.xhp\n"
"bm_id220201324724579\n"
@@ -64823,7 +60609,6 @@ msgid "<bookmark_value>IMSECH function</bookmark_value><bookmark_value>hyperboli
msgstr "<bookmark_value>ISERR 函数</bookmark_value><bookmark_value>错误代码; 控制</bookmark_value>"
#: func_imsech.xhp
-#, fuzzy
msgctxt ""
"func_imsech.xhp\n"
"hd_id258933143113817\n"
@@ -64844,11 +60629,10 @@ msgctxt ""
"func_imsech.xhp\n"
"par_id74572850718840\n"
"help.text"
-msgid "<image id=\"img_id8983315386682\" src=\"res/helpimg/sc_func_imsech.png\"><alt id=\"alt_id9157586510683\">sech(a+bi)=1/cosh(a+bi)</alt></image>"
+msgid "<image id=\"img_id8983315386682\" src=\"media/helpimg/sc_func_imsech.png\"><alt id=\"alt_id9157586510683\">sech(a+bi)=1/cosh(a+bi)</alt></image>"
msgstr ""
#: func_imsech.xhp
-#, fuzzy
msgctxt ""
"func_imsech.xhp\n"
"par_id17253876723855\n"
@@ -64889,7 +60673,6 @@ msgid "IMSIN function"
msgstr ""
#: func_imsin.xhp
-#, fuzzy
msgctxt ""
"func_imsin.xhp\n"
"bm_id79322063230162\n"
@@ -64898,7 +60681,6 @@ msgid "<bookmark_value>IMSIN function</bookmark_value><bookmark_value>sine;compl
msgstr "<bookmark_value>SUMIF 函数</bookmark_value> <bookmark_value>添加; 指定的数字</bookmark_value>"
#: func_imsin.xhp
-#, fuzzy
msgctxt ""
"func_imsin.xhp\n"
"hd_id3192388765304\n"
@@ -64923,7 +60705,6 @@ msgid "sin(a+bi)=sin(a)cosh(b)+cos(a)sinh(b)i"
msgstr ""
#: func_imsin.xhp
-#, fuzzy
msgctxt ""
"func_imsin.xhp\n"
"par_id284611113926520\n"
@@ -64964,7 +60745,6 @@ msgid "IMSINH function"
msgstr ""
#: func_imsinh.xhp
-#, fuzzy
msgctxt ""
"func_imsinh.xhp\n"
"bm_id79322063230162\n"
@@ -64973,7 +60753,6 @@ msgid "<bookmark_value>IMSINH function</bookmark_value><bookmark_value>hyperboli
msgstr "<bookmark_value>DELTA 函数</bookmark_value><bookmark_value>识别; 相等的数字</bookmark_value>"
#: func_imsinh.xhp
-#, fuzzy
msgctxt ""
"func_imsinh.xhp\n"
"hd_id3192388765304\n"
@@ -64998,7 +60777,6 @@ msgid "sinh(a+bi)=sinh(a)cos(b)+cosh(a)sin(b)i"
msgstr ""
#: func_imsinh.xhp
-#, fuzzy
msgctxt ""
"func_imsinh.xhp\n"
"par_id284611113926520\n"
@@ -65031,7 +60809,6 @@ msgid "<item type=\"input\">=IMSINH(2)</item><br/>returns 3.62686040784702 as a
msgstr ""
#: func_imsinh.xhp
-#, fuzzy
msgctxt ""
"func_imsinh.xhp\n"
"par_id2773214341302\n"
@@ -65048,7 +60825,6 @@ msgid "IMTAN function"
msgstr ""
#: func_imtan.xhp
-#, fuzzy
msgctxt ""
"func_imtan.xhp\n"
"bm_id4210250889873\n"
@@ -65057,7 +60833,6 @@ msgid "<bookmark_value>IMTAN function</bookmark_value><bookmark_value>tangent;co
msgstr "<bookmark_value>SUMIF 函数</bookmark_value> <bookmark_value>添加; 指定的数字</bookmark_value>"
#: func_imtan.xhp
-#, fuzzy
msgctxt ""
"func_imtan.xhp\n"
"hd_id9522389621160\n"
@@ -65078,11 +60853,10 @@ msgctxt ""
"func_imtan.xhp\n"
"par_id25021317131239\n"
"help.text"
-msgid "<image id=\"img_id16283275473700\" src=\"res/helpimg/sc_func_imtan.png\"><alt id=\"alt_id676711494402\">tan(a+bi)=sin(a+bi)/cos(a+bi)</alt></image>"
+msgid "<image id=\"img_id16283275473700\" src=\"media/helpimg/sc_func_imtan.png\"><alt id=\"alt_id676711494402\">tan(a+bi)=sin(a+bi)/cos(a+bi)</alt></image>"
msgstr ""
#: func_imtan.xhp
-#, fuzzy
msgctxt ""
"func_imtan.xhp\n"
"par_id23219159944377\n"
@@ -65123,7 +60897,6 @@ msgid "ISOWEEKNUM"
msgstr ""
#: func_isoweeknum.xhp
-#, fuzzy
msgctxt ""
"func_isoweeknum.xhp\n"
"bm_id3159161\n"
@@ -65132,27 +60905,22 @@ msgid "<bookmark_value>ISOWEEKNUM function</bookmark_value>"
msgstr "<bookmark_value>WEEKNUM</bookmark_value>"
#: func_isoweeknum.xhp
-#, fuzzy
msgctxt ""
"func_isoweeknum.xhp\n"
"hd_id3159161\n"
-"54\n"
"help.text"
msgid "<variable id=\"isoweeknum\"><link href=\"text/scalc/01/func_isoweeknum.xhp\">ISOWEEKNUM</link></variable>"
msgstr "<variable id=\"weeknum\"><link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link></variable>"
#: func_isoweeknum.xhp
-#, fuzzy
msgctxt ""
"func_isoweeknum.xhp\n"
"par_id3149770\n"
-"55\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ISOWEEKNUM\">ISOWEEKNUM calculates the week number of the year for the internal date value.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KALENDERWOCHE\">WEEKNUM 计算内部日期值中一年的周数。</ahelp>"
#: func_isoweeknum.xhp
-#, fuzzy
msgctxt ""
"func_isoweeknum.xhp\n"
"par_idN105E4\n"
@@ -65161,11 +60929,9 @@ msgid "The International Standard ISO 8601 has decreed that Monday shall be the
msgstr "在国际标准 ISO 8601 中已指出每周的第一天为“星期一”。对于跨越两个年度的星期,会以该星期的大多数天数所在的年度为基准指定编号。这意味着,在任何年度中编号为 1 的星期均包含一月四日。"
#: func_isoweeknum.xhp
-#, fuzzy
msgctxt ""
"func_isoweeknum.xhp\n"
"hd_id3153055\n"
-"56\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -65174,27 +60940,22 @@ msgstr "语法"
msgctxt ""
"func_isoweeknum.xhp\n"
"par_id3147236\n"
-"57\n"
"help.text"
msgid "ISOWEEKNUM(Number)"
msgstr ""
#: func_isoweeknum.xhp
-#, fuzzy
msgctxt ""
"func_isoweeknum.xhp\n"
"par_id3147511\n"
-"58\n"
"help.text"
msgid "<emph>Number</emph> is the internal date number."
msgstr "<emph>value</emph>是日期的内部序列数。"
#: func_isoweeknum.xhp
-#, fuzzy
msgctxt ""
"func_isoweeknum.xhp\n"
"hd_id3146948\n"
-"62\n"
"help.text"
msgid "Examples"
msgstr "示例"
@@ -65203,7 +60964,6 @@ msgstr "示例"
msgctxt ""
"func_isoweeknum.xhp\n"
"par_id3149792\n"
-"64\n"
"help.text"
msgid "=ISOWEEKNUM(DATE(1995;1;1)) returns 52. Week 1 starts on Monday, 1995-01-02."
msgstr ""
@@ -65212,7 +60972,6 @@ msgstr ""
msgctxt ""
"func_isoweeknum.xhp\n"
"par_id3149794\n"
-"67\n"
"help.text"
msgid "=ISOWEEKNUM(DATE(1999;1;1)) returns 53. Week 1 starts on Monday, 1999-01-04."
msgstr ""
@@ -65237,7 +60996,6 @@ msgstr "<bookmark_value>MINUTE 函数</bookmark_value>"
msgctxt ""
"func_minute.xhp\n"
"hd_id3149803\n"
-"66\n"
"help.text"
msgid "<variable id=\"minute\"><link href=\"text/scalc/01/func_minute.xhp\">MINUTE</link></variable>"
msgstr "<variable id=\"minute\"><link href=\"text/scalc/01/func_minute.xhp\">MINUTE</link></variable>"
@@ -65246,7 +61004,6 @@ msgstr "<variable id=\"minute\"><link href=\"text/scalc/01/func_minute.xhp\">MIN
msgctxt ""
"func_minute.xhp\n"
"par_id3148988\n"
-"67\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MINUTE\">Calculates the minute for an internal time value.</ahelp> The minute is returned as a number between 0 and 59."
msgstr "<ahelp hid=\"HID_FUNC_MINUTE\">返回时间值中的分钟。</ahelp> 分钟返回为 0 到 59 之间的数字。"
@@ -65255,7 +61012,6 @@ msgstr "<ahelp hid=\"HID_FUNC_MINUTE\">返回时间值中的分钟。</ahelp>
msgctxt ""
"func_minute.xhp\n"
"hd_id3154343\n"
-"68\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -65264,7 +61020,6 @@ msgstr "语法"
msgctxt ""
"func_minute.xhp\n"
"par_id3148660\n"
-"69\n"
"help.text"
msgid "MINUTE(Number)"
msgstr "MONTH(serial_number)"
@@ -65273,7 +61028,6 @@ msgstr "MONTH(serial_number)"
msgctxt ""
"func_minute.xhp\n"
"par_id3154611\n"
-"70\n"
"help.text"
msgid "<emph>Number</emph>, as a time value, is a decimal number where the number of the minute is to be returned."
msgstr "<emph>serial_number</emph> 是一个要确定其对应分钟数的时间值。"
@@ -65282,7 +61036,6 @@ msgstr "<emph>serial_number</emph> 是一个要确定其对应分钟数的时间
msgctxt ""
"func_minute.xhp\n"
"hd_id3145374\n"
-"71\n"
"help.text"
msgid "Examples"
msgstr "示例"
@@ -65291,7 +61044,6 @@ msgstr "示例"
msgctxt ""
"func_minute.xhp\n"
"par_id3148463\n"
-"72\n"
"help.text"
msgid "<item type=\"input\">=MINUTE(8.999)</item> returns 58"
msgstr "<item type=\"input\">=MINUTE(8.999)</item> 返回 58"
@@ -65300,7 +61052,6 @@ msgstr "<item type=\"input\">=MINUTE(8.999)</item> 返回 58"
msgctxt ""
"func_minute.xhp\n"
"par_id3149419\n"
-"73\n"
"help.text"
msgid "<item type=\"input\">=MINUTE(8.9999)</item> returns 59"
msgstr "<item type=\"input\">=MINUTE(8.9999)</item> 返回 59"
@@ -65309,7 +61060,6 @@ msgstr "<item type=\"input\">=MINUTE(8.9999)</item> 返回 59"
msgctxt ""
"func_minute.xhp\n"
"par_id3144755\n"
-"74\n"
"help.text"
msgid "<item type=\"input\">=MINUTE(NOW())</item> returns the current minute value."
msgstr "<item type=\"input\">=MINUTE(NOW())</item> 返回当前的分钟数。"
@@ -65334,7 +61084,6 @@ msgstr "<bookmark_value>MONTH 函数</bookmark_value>"
msgctxt ""
"func_month.xhp\n"
"hd_id3149936\n"
-"76\n"
"help.text"
msgid "<variable id=\"month\"><link href=\"text/scalc/01/func_month.xhp\">MONTH</link></variable>"
msgstr "<variable id=\"month\"><link href=\"text/scalc/01/func_month.xhp\">MONTH</link></variable>"
@@ -65343,7 +61092,6 @@ msgstr "<variable id=\"month\"><link href=\"text/scalc/01/func_month.xhp\">MONTH
msgctxt ""
"func_month.xhp\n"
"par_id3153538\n"
-"77\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MONAT\">Returns the month for the given date value.</ahelp> The month is returned as an integer between 1 and 12."
msgstr "<ahelp hid=\"HID_FUNC_MONAT\">返回给定日期值的月份。</ahelp>月份返回为 1 到 12 之间的数字。"
@@ -65352,7 +61100,6 @@ msgstr "<ahelp hid=\"HID_FUNC_MONAT\">返回给定日期值的月份。</ahelp>
msgctxt ""
"func_month.xhp\n"
"hd_id3149517\n"
-"78\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -65361,7 +61108,6 @@ msgstr "语法"
msgctxt ""
"func_month.xhp\n"
"par_id3145602\n"
-"79\n"
"help.text"
msgid "MONTH(Number)"
msgstr "MONTH(serial_number)"
@@ -65370,7 +61116,6 @@ msgstr "MONTH(serial_number)"
msgctxt ""
"func_month.xhp\n"
"par_id3149485\n"
-"80\n"
"help.text"
msgid "<emph>Number</emph>, as a time value, is a decimal for which the month is to be returned."
msgstr "<emph>serial_number</emph> 是一个要确定其对应月份数的日期值。"
@@ -65379,7 +61124,6 @@ msgstr "<emph>serial_number</emph> 是一个要确定其对应月份数的日期
msgctxt ""
"func_month.xhp\n"
"hd_id3153322\n"
-"81\n"
"help.text"
msgid "Examples"
msgstr "示例"
@@ -65388,7 +61132,6 @@ msgstr "示例"
msgctxt ""
"func_month.xhp\n"
"par_id3149244\n"
-"83\n"
"help.text"
msgid "=MONTH(NOW()) returns the current month."
msgstr "=MONTH(NOW()) 返回当前月份。"
@@ -65397,7 +61140,6 @@ msgstr "=MONTH(NOW()) 返回当前月份。"
msgctxt ""
"func_month.xhp\n"
"par_id3154790\n"
-"84\n"
"help.text"
msgid "=MONTH(C4) returns 7 if you enter 2000-07-07 to cell C4 (that date value might get formatted differently after you press Enter)."
msgstr "=MONTH(C4) 返回 7,如果在单元格 C4 中输入 2000-07-07 (当您按下 Enter 键后,日期格式可能会被更改)。"
@@ -65543,7 +61285,7 @@ msgctxt ""
"func_networkdays.intl.xhp\n"
"par_id241020160012187036\n"
"help.text"
-msgid "<link href=\"text/scalc/01/func_workdays.intl.xhp\">WORKDAYS.INTL</link>"
+msgid "<link href=\"text/scalc/01/func_workdays.intl.xhp\">WORKDAY.INTL</link>"
msgstr ""
#: func_networkdays.intl.xhp
@@ -65695,7 +61437,7 @@ msgctxt ""
"func_networkdays.xhp\n"
"par_id241070160012187036\n"
"help.text"
-msgid "<link href=\"text/scalc/01/func_workdays.intl.xhp\">WORKDAYS.INTL</link>"
+msgid "<link href=\"text/scalc/01/func_workday.intl.xhp\">WORKDAY.INTL</link>"
msgstr ""
#: func_networkdays.xhp
@@ -65734,7 +61476,6 @@ msgstr "<bookmark_value>NOW 函数</bookmark_value>"
msgctxt ""
"func_now.xhp\n"
"hd_id3150521\n"
-"47\n"
"help.text"
msgid "<variable id=\"now\"><link href=\"text/scalc/01/func_now.xhp\">NOW</link></variable>"
msgstr "<variable id=\"now\"><link href=\"text/scalc/01/func_now.xhp\">NOW</link></variable>"
@@ -65743,7 +61484,6 @@ msgstr "<variable id=\"now\"><link href=\"text/scalc/01/func_now.xhp\">NOW</link
msgctxt ""
"func_now.xhp\n"
"par_id3148829\n"
-"48\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_JETZT\">Returns the computer system date and time.</ahelp> The value is updated when you recalculate the document or each time a cell value is modified."
msgstr "<ahelp hid=\"HID_FUNC_JETZT\">返回计算机系统的日期和时间。</ahelp>该值在您重新计算文档或每次修改单元格值时都会得到更新。"
@@ -65752,7 +61492,6 @@ msgstr "<ahelp hid=\"HID_FUNC_JETZT\">返回计算机系统的日期和时间。
msgctxt ""
"func_now.xhp\n"
"hd_id3146988\n"
-"49\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -65761,7 +61500,6 @@ msgstr "语法"
msgctxt ""
"func_now.xhp\n"
"par_id3154897\n"
-"50\n"
"help.text"
msgid "NOW()"
msgstr "NOW()"
@@ -65778,7 +61516,6 @@ msgstr "NOW 是一个不含参数的函数。"
msgctxt ""
"func_now.xhp\n"
"hd_id3154205\n"
-"51\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -65787,7 +61524,6 @@ msgstr "示例"
msgctxt ""
"func_now.xhp\n"
"par_id3150774\n"
-"52\n"
"help.text"
msgid "<item type=\"input\">=NOW()-A1</item> returns the difference between the date in A1 and now. Format the result as a number."
msgstr "<item type=\"input\">=NOW()-A1</item> 返回 A1 和当前日期的相差数值。将结果格式化成数字。"
@@ -65809,11 +61545,9 @@ msgid "<bookmark_value>NUMBERVALUE function</bookmark_value>"
msgstr "<bookmark_value>NUMBERVALUE 函数</bookmark_value>"
#: func_numbervalue.xhp
-#, fuzzy
msgctxt ""
"func_numbervalue.xhp\n"
"hd_id3145621\n"
-"18\n"
"help.text"
msgid "<variable id=\"datevalue\"> <link href=\"text/scalc/01/func_numbervalue.xhp\">NUMBERVALUE</link> </variable>"
msgstr "<variable id=\"datevalue\"><link href=\"text/scalc/01/func_datevalue.xhp\">DATEVALUE</link></variable>"
@@ -65822,7 +61556,6 @@ msgstr "<variable id=\"datevalue\"><link href=\"text/scalc/01/func_datevalue.xhp
msgctxt ""
"func_numbervalue.xhp\n"
"par_id3145087\n"
-"19\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_NUMBERVALUE\">Convert text to number, in a locale-independent way.</ahelp>"
msgstr ""
@@ -65831,7 +61564,6 @@ msgstr ""
msgctxt ""
"func_numbervalue.xhp\n"
"par_id3149281\n"
-"20\n"
"help.text"
msgid "Constraints: LEN(decimal_separator) = 1, decimal_separator shall not appear in group_separator"
msgstr ""
@@ -65840,7 +61572,6 @@ msgstr ""
msgctxt ""
"func_numbervalue.xhp\n"
"hd_id3156294\n"
-"21\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -65849,17 +61580,14 @@ msgstr "语法"
msgctxt ""
"func_numbervalue.xhp\n"
"par_id3149268\n"
-"22\n"
"help.text"
msgid "NUMBERVALUE(\"Text\";decimal_separator;group_separator)"
msgstr ""
#: func_numbervalue.xhp
-#, fuzzy
msgctxt ""
"func_numbervalue.xhp\n"
"par_id3154819\n"
-"23\n"
"help.text"
msgid "<emph>Text</emph> is a valid number expression and must be entered with quotation marks."
msgstr "<emph>Text</emph> 是一个有效的日期表达式,且必须在其前后加上引号。"
@@ -65868,7 +61596,6 @@ msgstr "<emph>Text</emph> 是一个有效的日期表达式,且必须在其前
msgctxt ""
"func_numbervalue.xhp\n"
"par_id3154820\n"
-"23\n"
"help.text"
msgid "<emph>decimal_separator</emph> (optional) defines the character used as the decimal separator."
msgstr ""
@@ -65877,7 +61604,6 @@ msgstr ""
msgctxt ""
"func_numbervalue.xhp\n"
"par_id3154821\n"
-"23\n"
"help.text"
msgid "<emph>group_separator</emph> (optional) defines the character(s) used as the group separator."
msgstr ""
@@ -65886,7 +61612,6 @@ msgstr ""
msgctxt ""
"func_numbervalue.xhp\n"
"hd_id3156309\n"
-"24\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -65895,11 +61620,74 @@ msgstr "示例"
msgctxt ""
"func_numbervalue.xhp\n"
"par_id3155841\n"
-"25\n"
"help.text"
msgid "<item type=\"input\">=NUMBERVALUE(\"123.456\";\".\";\",\")</item> yields 123.456"
msgstr ""
+#: func_rawsubtract.xhp
+msgctxt ""
+"func_rawsubtract.xhp\n"
+"tit\n"
+"help.text"
+msgid "RAWSUBTRACT function"
+msgstr ""
+
+#: func_rawsubtract.xhp
+msgctxt ""
+"func_rawsubtract.xhp\n"
+"bm_2016112109230\n"
+"help.text"
+msgid "<bookmark_value>rawsubtract;subtraction</bookmark_value> <bookmark_value>RAWSUBTRACT function</bookmark_value>"
+msgstr ""
+
+#: func_rawsubtract.xhp
+msgctxt ""
+"func_rawsubtract.xhp\n"
+"hd_2016112109231\n"
+"help.text"
+msgid "<variable id=\"rawsubtract_head\"><link href=\"text/scalc/01/func_rawsubtract.xhp\">RAWSUBTRACT</link></variable>"
+msgstr ""
+
+#: func_rawsubtract.xhp
+msgctxt ""
+"func_rawsubtract.xhp\n"
+"par_2016112109232\n"
+"help.text"
+msgid "<ahelp hid=\".\">Subtracts a set of numbers and gives the result without eliminating small roundoff errors. </ahelp>"
+msgstr ""
+
+#: func_rawsubtract.xhp
+msgctxt ""
+"func_rawsubtract.xhp\n"
+"par_2016112109233\n"
+"help.text"
+msgid "RAWSUBTRACT(Minuend, Subtrahend1, Subtrahend2, ...)"
+msgstr ""
+
+#: func_rawsubtract.xhp
+msgctxt ""
+"func_rawsubtract.xhp\n"
+"par_2016112109234\n"
+"help.text"
+msgid "Subtracts the subtrahend(s) from the minuend without eliminating roundoff errors. The function should be called with at least two parameters."
+msgstr ""
+
+#: func_rawsubtract.xhp
+msgctxt ""
+"func_rawsubtract.xhp\n"
+"par_2016112109235\n"
+"help.text"
+msgid "<item type=\"literal\">RAWSUBTRACT(0.987654321098765, 0.9876543210987)</item> returns 6.53921361504217E-14"
+msgstr ""
+
+#: func_rawsubtract.xhp
+msgctxt ""
+"func_rawsubtract.xhp\n"
+"par_2016112109237\n"
+"help.text"
+msgid "<item type=\"literal\">RAWSUBTRACT(0.987654321098765)</item> returns Err:511 (Missing variable) because RAWSUBTRACT requires a minimum of two numbers."
+msgstr ""
+
#: func_second.xhp
msgctxt ""
"func_second.xhp\n"
@@ -65920,7 +61708,6 @@ msgstr "<bookmark_value>SECOND 函数</bookmark_value>"
msgctxt ""
"func_second.xhp\n"
"hd_id3159390\n"
-"86\n"
"help.text"
msgid "<variable id=\"second\"><link href=\"text/scalc/01/func_second.xhp\">SECOND</link></variable>"
msgstr "<variable id=\"second\"><link href=\"text/scalc/01/func_second.xhp\">SECOND</link></variable>"
@@ -65929,7 +61716,6 @@ msgstr "<variable id=\"second\"><link href=\"text/scalc/01/func_second.xhp\">SEC
msgctxt ""
"func_second.xhp\n"
"par_id3148974\n"
-"87\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_SEKUNDE\">Returns the second for the given time value.</ahelp> The second is given as an integer between 0 and 59."
msgstr "<ahelp hid=\"HID_FUNC_SEKUNDE\">返回给定时间值的“秒”,</ahelp>表示为 0 到 59 之间的整数。"
@@ -65938,7 +61724,6 @@ msgstr "<ahelp hid=\"HID_FUNC_SEKUNDE\">返回给定时间值的“秒”,</ah
msgctxt ""
"func_second.xhp\n"
"hd_id3154362\n"
-"88\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -65947,7 +61732,6 @@ msgstr "语法"
msgctxt ""
"func_second.xhp\n"
"par_id3148407\n"
-"89\n"
"help.text"
msgid "SECOND(Number)"
msgstr "SECOND(serial_number)"
@@ -65956,7 +61740,6 @@ msgstr "SECOND(serial_number)"
msgctxt ""
"func_second.xhp\n"
"par_id3155904\n"
-"90\n"
"help.text"
msgid "<emph>Number</emph>, as a time value, is a decimal, for which the second is to be returned."
msgstr "<emph>serial_number</emph> 是一个要确定其对应秒种数的时间值。"
@@ -65965,7 +61748,6 @@ msgstr "<emph>serial_number</emph> 是一个要确定其对应秒种数的时间
msgctxt ""
"func_second.xhp\n"
"hd_id3149992\n"
-"91\n"
"help.text"
msgid "Examples"
msgstr "示例"
@@ -65974,7 +61756,6 @@ msgstr "示例"
msgctxt ""
"func_second.xhp\n"
"par_id3153350\n"
-"93\n"
"help.text"
msgid "<item type=\"input\">=SECOND(NOW())</item> returns the current second"
msgstr "<item type=\"input\">=SECOND(NOW())</item> 返回当前的秒钟数"
@@ -65983,7 +61764,6 @@ msgstr "<item type=\"input\">=SECOND(NOW())</item> 返回当前的秒钟数"
msgctxt ""
"func_second.xhp\n"
"par_id3150831\n"
-"94\n"
"help.text"
msgid "<item type=\"input\">=SECOND(C4)</item> returns 17 if contents of C4 = <item type=\"input\">12:20:17</item>."
msgstr "<item type=\"input\">=SECOND(C4)</item> 返回 17,如果 C4 = <item type=\"input\">12:20:17</item>。"
@@ -65997,7 +61777,6 @@ msgid "SKEWP function"
msgstr ""
#: func_skewp.xhp
-#, fuzzy
msgctxt ""
"func_skewp.xhp\n"
"bm_id1102201617201921\n"
@@ -66006,7 +61785,6 @@ msgid "<bookmark_value>skewness;population</bookmark_value> <bookmark_value>SKE
msgstr "<bookmark_value>NORMDIST 函数</bookmark_value><bookmark_value>密度函数</bookmark_value>"
#: func_skewp.xhp
-#, fuzzy
msgctxt ""
"func_skewp.xhp\n"
"hd_id456845684568\n"
@@ -66023,7 +61801,6 @@ msgid "<ahelp hid=\".\">Calculates the skewness of a distribution using the popu
msgstr ""
#: func_skewp.xhp
-#, fuzzy
msgctxt ""
"func_skewp.xhp\n"
"par_id27421466710275\n"
@@ -66032,7 +61809,6 @@ msgid "SKEWP(Number1; Number2;..., Number30)"
msgstr "SKEW(Number1; Number2; ...Number30)"
#: func_skewp.xhp
-#, fuzzy
msgctxt ""
"func_skewp.xhp\n"
"par_id242131304318587\n"
@@ -66097,7 +61873,6 @@ msgid "SUMIFS function"
msgstr ""
#: func_sumifs.xhp
-#, fuzzy
msgctxt ""
"func_sumifs.xhp\n"
"bm_id658066580665806\n"
@@ -66106,7 +61881,6 @@ msgid "<bookmark_value>SUMIFS function</bookmark_value> <bookmark_value>sum;sat
msgstr "<bookmark_value>COMBIN 函数</bookmark_value> <bookmark_value>组合数</bookmark_value>"
#: func_sumifs.xhp
-#, fuzzy
msgctxt ""
"func_sumifs.xhp\n"
"hd_id658866588665886\n"
@@ -66123,7 +61897,6 @@ msgid "<ahelp hid=\".\"><variable id=\"sumifs_des\">Returns the sum of the value
msgstr ""
#: func_sumifs.xhp
-#, fuzzy
msgctxt ""
"func_sumifs.xhp\n"
"hd_id660246602466024\n"
@@ -66220,7 +61993,6 @@ msgid "Simple usage"
msgstr ""
#: func_sumifs.xhp
-#, fuzzy
msgctxt ""
"func_sumifs.xhp\n"
"par_id94321051525036\n"
@@ -66237,7 +62009,6 @@ msgid "Calculates the sum of values of the range B2:B6 that are greater than or
msgstr ""
#: func_sumifs.xhp
-#, fuzzy
msgctxt ""
"func_sumifs.xhp\n"
"par_id36952767622741\n"
@@ -66353,7 +62124,6 @@ msgstr "<bookmark_value>TIME 函数</bookmark_value>"
msgctxt ""
"func_time.xhp\n"
"hd_id3154073\n"
-"149\n"
"help.text"
msgid "<variable id=\"time\"><link href=\"text/scalc/01/func_time.xhp\">TIME</link></variable>"
msgstr "<variable id=\"time\"><link href=\"text/scalc/01/func_time.xhp\">TIME</link></variable>"
@@ -66362,7 +62132,6 @@ msgstr "<variable id=\"time\"><link href=\"text/scalc/01/func_time.xhp\">TIME</l
msgctxt ""
"func_time.xhp\n"
"par_id3145762\n"
-"150\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ZEIT\">TIME returns the current time value from values for hours, minutes and seconds.</ahelp> This function can be used to convert a time based on these three elements to a decimal time value."
msgstr "<ahelp hid=\"HID_FUNC_ZEIT\">TIME 以时、分、秒的形式返回当前时间值。</ahelp>该函数可用于将时分秒形式的时间值转换为十进制的时间值。"
@@ -66371,7 +62140,6 @@ msgstr "<ahelp hid=\"HID_FUNC_ZEIT\">TIME 以时、分、秒的形式返回当
msgctxt ""
"func_time.xhp\n"
"hd_id3155550\n"
-"151\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -66380,7 +62148,6 @@ msgstr "语法"
msgctxt ""
"func_time.xhp\n"
"par_id3154584\n"
-"152\n"
"help.text"
msgid "TIME(Hour; Minute; Second)"
msgstr "TIME(Hour; Minute; Second)"
@@ -66389,7 +62156,6 @@ msgstr "TIME(Hour; Minute; Second)"
msgctxt ""
"func_time.xhp\n"
"par_id3152904\n"
-"153\n"
"help.text"
msgid "Use an integer to set the <emph>Hour</emph>."
msgstr "设置 <emph>Hour</emph> 为整数。"
@@ -66398,7 +62164,6 @@ msgstr "设置 <emph>Hour</emph> 为整数。"
msgctxt ""
"func_time.xhp\n"
"par_id3151346\n"
-"154\n"
"help.text"
msgid "Use an integer to set the <emph>Minute</emph>."
msgstr "设置 <emph>Minute</emph> 为整数。"
@@ -66407,7 +62172,6 @@ msgstr "设置 <emph>Minute</emph> 为整数。"
msgctxt ""
"func_time.xhp\n"
"par_id3151366\n"
-"155\n"
"help.text"
msgid "Use an integer to set the <emph>Second</emph>."
msgstr "设置 <emph>Second</emph> 为整数。"
@@ -66416,7 +62180,6 @@ msgstr "设置 <emph>Second</emph> 为整数。"
msgctxt ""
"func_time.xhp\n"
"hd_id3145577\n"
-"156\n"
"help.text"
msgid "Examples"
msgstr "示例"
@@ -66425,7 +62188,6 @@ msgstr "示例"
msgctxt ""
"func_time.xhp\n"
"par_id3156076\n"
-"157\n"
"help.text"
msgid "<item type=\"input\">=TIME(0;0;0)</item> returns 00:00:00"
msgstr "<item type=\"input\">=TIME(0;0;0)</item> 返回 00:00:00"
@@ -66434,7 +62196,6 @@ msgstr "<item type=\"input\">=TIME(0;0;0)</item> 返回 00:00:00"
msgctxt ""
"func_time.xhp\n"
"par_id3156090\n"
-"158\n"
"help.text"
msgid "<item type=\"input\">=TIME(4;20;4)</item> returns 04:20:04"
msgstr "<item type=\"input\">=TIME(4;20;4)</item> 返回 04:20:04"
@@ -66456,7 +62217,6 @@ msgid "<bookmark_value>TIMEVALUE function</bookmark_value>"
msgstr "<bookmark_value>TIMEVALUE 函数</bookmark_value>"
#: func_timevalue.xhp
-#, fuzzy
msgctxt ""
"func_timevalue.xhp\n"
"hd_id3146755\n"
@@ -66465,7 +62225,6 @@ msgid "<variable id=\"timevalue\"><link href=\"text/scalc/01/func_timevalue.xhp\
msgstr "<variable id=\"timevalue\"><link href=\"text/scalc/01/func_timevalue.xhp\">TIMEVALUE</link></variable>"
#: func_timevalue.xhp
-#, fuzzy
msgctxt ""
"func_timevalue.xhp\n"
"par_id3148502\n"
@@ -66474,7 +62233,6 @@ msgid "<ahelp hid=\"HID_FUNC_ZEITWERT\">TIMEVALUE returns the internal time numb
msgstr "<ahelp hid=\"HID_FUNC_ZEITWERT\">TIMEVALUE 返回带引号的文本的内部时间值,显示为一种允许的时间输入格式。</ahelp>"
#: func_timevalue.xhp
-#, fuzzy
msgctxt ""
"func_timevalue.xhp\n"
"par_id3150794\n"
@@ -66491,7 +62249,6 @@ msgid "If the text string also includes a year, month, or day, TIMEVALUE only re
msgstr "如果文本字符串也包括年,月或者日,TIMEVALUE 只返回换算结果的分数部分。"
#: func_timevalue.xhp
-#, fuzzy
msgctxt ""
"func_timevalue.xhp\n"
"hd_id3150810\n"
@@ -66500,7 +62257,6 @@ msgid "Syntax"
msgstr "语法"
#: func_timevalue.xhp
-#, fuzzy
msgctxt ""
"func_timevalue.xhp\n"
"par_id3150823\n"
@@ -66509,7 +62265,6 @@ msgid "TIMEVALUE(\"Text\")"
msgstr "TIMEVALUE(time_text)"
#: func_timevalue.xhp
-#, fuzzy
msgctxt ""
"func_timevalue.xhp\n"
"par_id3152556\n"
@@ -66518,7 +62273,6 @@ msgid "<emph>Text</emph> is a valid time expression and must be entered in quota
msgstr "<emph>Text</emph> 是一个采用引号表示的时间表达式。"
#: func_timevalue.xhp
-#, fuzzy
msgctxt ""
"func_timevalue.xhp\n"
"hd_id3146815\n"
@@ -66527,7 +62281,6 @@ msgid "Examples"
msgstr "示例"
#: func_timevalue.xhp
-#, fuzzy
msgctxt ""
"func_timevalue.xhp\n"
"par_id3146829\n"
@@ -66536,7 +62289,6 @@ msgid "<item type=\"input\">=TIMEVALUE(\"4PM\")</item> returns 0.67. When format
msgstr "<item type=\"input\">=TIMEVALUE(\"4PM\")</item> 返回 0.67。当时间格式为 HH:MM:SS,结果则为 16:00:00。"
#: func_timevalue.xhp
-#, fuzzy
msgctxt ""
"func_timevalue.xhp\n"
"par_id3153632\n"
@@ -66564,7 +62316,6 @@ msgstr "<bookmark_value>TODAY 函数</bookmark_value>"
msgctxt ""
"func_today.xhp\n"
"hd_id3145659\n"
-"29\n"
"help.text"
msgid "<variable id=\"today\"><link href=\"text/scalc/01/func_today.xhp\">TODAY</link></variable>"
msgstr "<variable id=\"today\"><link href=\"text/scalc/01/func_today.xhp\">TODAY</link></variable>"
@@ -66573,7 +62324,6 @@ msgstr "<variable id=\"today\"><link href=\"text/scalc/01/func_today.xhp\">TODAY
msgctxt ""
"func_today.xhp\n"
"par_id3153759\n"
-"30\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_HEUTE\">Returns the current computer system date.</ahelp> The value is updated when you reopen the document or modify the values of the document."
msgstr "<ahelp hid=\"HID_FUNC_HEUTE\">返回计算机的当前系统日期。</ahelp>当重新打开文档或修改了文档内容时,这个日期会自动更新。"
@@ -66582,7 +62332,6 @@ msgstr "<ahelp hid=\"HID_FUNC_HEUTE\">返回计算机的当前系统日期。</a
msgctxt ""
"func_today.xhp\n"
"hd_id3154051\n"
-"31\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -66591,7 +62340,6 @@ msgstr "语法"
msgctxt ""
"func_today.xhp\n"
"par_id3153154\n"
-"32\n"
"help.text"
msgid "TODAY()"
msgstr "TODAY()"
@@ -66600,7 +62348,6 @@ msgstr "TODAY()"
msgctxt ""
"func_today.xhp\n"
"par_id3154741\n"
-"33\n"
"help.text"
msgid "TODAY is a function without arguments."
msgstr "TODAY 是一个不含参数的函数。"
@@ -66609,7 +62356,6 @@ msgstr "TODAY 是一个不含参数的函数。"
msgctxt ""
"func_today.xhp\n"
"hd_id3153627\n"
-"34\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -66618,7 +62364,6 @@ msgstr "示例"
msgctxt ""
"func_today.xhp\n"
"par_id3156106\n"
-"35\n"
"help.text"
msgid "<item type=\"input\">TODAY()</item> returns the current computer system date."
msgstr "<item type=\"input\">TODAY()</item> 返回计算机的当前系统日期。"
@@ -66643,7 +62388,6 @@ msgstr "<bookmark_value>WEBSERVICE 函数</bookmark_value>"
msgctxt ""
"func_webservice.xhp\n"
"hd_id3149012\n"
-"186\n"
"help.text"
msgid "WEBSERVICE"
msgstr ""
@@ -66652,7 +62396,6 @@ msgstr ""
msgctxt ""
"func_webservice.xhp\n"
"par_id3149893\n"
-"187\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_WEBSERVICE\">Get some web content from a URI.</ahelp>"
msgstr ""
@@ -66661,7 +62404,6 @@ msgstr ""
msgctxt ""
"func_webservice.xhp\n"
"hd_id3146944\n"
-"188\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -66670,7 +62412,6 @@ msgstr "语法"
msgctxt ""
"func_webservice.xhp\n"
"par_id3154844\n"
-"189\n"
"help.text"
msgid "WEBSERVICE(URI)"
msgstr ""
@@ -66679,7 +62420,6 @@ msgstr ""
msgctxt ""
"func_webservice.xhp\n"
"par_id3147469\n"
-"190\n"
"help.text"
msgid "<emph>URI: </emph> URI text of the web service."
msgstr ""
@@ -66688,7 +62428,6 @@ msgstr ""
msgctxt ""
"func_webservice.xhp\n"
"hd_id3150141\n"
-"193\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -66697,7 +62436,6 @@ msgstr "示例"
msgctxt ""
"func_webservice.xhp\n"
"par_id3146142\n"
-"195\n"
"help.text"
msgid "=WEBSERVICE(\"http://api.openweathermap.org/data/2.5/forecast?q=Copenhagen,dk&mode=xml&units=metric\")"
msgstr ""
@@ -66722,7 +62460,6 @@ msgstr "<bookmark_value>FILTERXML 函数</bookmark_value>"
msgctxt ""
"func_webservice.xhp\n"
"hd_id2949012\n"
-"186\n"
"help.text"
msgid "FILTERXML"
msgstr ""
@@ -66731,7 +62468,6 @@ msgstr ""
msgctxt ""
"func_webservice.xhp\n"
"par_id2949893\n"
-"187\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FILTERXML\">Apply a XPath expression to a XML document.</ahelp>"
msgstr ""
@@ -66740,7 +62476,6 @@ msgstr ""
msgctxt ""
"func_webservice.xhp\n"
"hd_id2946944\n"
-"188\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -66749,7 +62484,6 @@ msgstr "语法"
msgctxt ""
"func_webservice.xhp\n"
"par_id2954844\n"
-"189\n"
"help.text"
msgid "FILTERXML(XML Document; XPath expression)"
msgstr ""
@@ -66758,7 +62492,6 @@ msgstr ""
msgctxt ""
"func_webservice.xhp\n"
"par_id2947469\n"
-"190\n"
"help.text"
msgid "<emph>XML Document (required):</emph> String containing a valid XML stream."
msgstr ""
@@ -66767,7 +62500,6 @@ msgstr ""
msgctxt ""
"func_webservice.xhp\n"
"par_id2847469\n"
-"190\n"
"help.text"
msgid "<emph>XPath expression (required):</emph> String containing a valid XPath expression."
msgstr ""
@@ -66776,7 +62508,6 @@ msgstr ""
msgctxt ""
"func_webservice.xhp\n"
"hd_id2950141\n"
-"193\n"
"help.text"
msgid "Example"
msgstr "示例"
@@ -66785,7 +62516,6 @@ msgstr "示例"
msgctxt ""
"func_webservice.xhp\n"
"par_id2946142\n"
-"195\n"
"help.text"
msgid "=FILTERXML(WEBSERVICE(\"http://api.openweathermap.org/data/2.5/forecast?q=Copenhagen,dk&mode=xml&units=metric\");\"number(/weatherdata/forecast/time[2]/temperature/@value)\")"
msgstr ""
@@ -66818,25 +62548,22 @@ msgstr "<bookmark_value>WEEKDAY 函数</bookmark_value>"
msgctxt ""
"func_weekday.xhp\n"
"hd_id3154925\n"
-"136\n"
"help.text"
-msgid "<variable id=\"weekday\"><link href=\"text/scalc/01/func_weekday.xhp\">WEEKDAY</link></variable>"
-msgstr "<variable id=\"weekday\"><link href=\"text/scalc/01/func_weekday.xhp\">WEEKDAY</link></variable>"
+msgid "<variable id=\"weekday\"><link href=\"text/scalc/01/func_weekday.xhp\">WEEKDAY</link> </variable>"
+msgstr ""
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
"par_id3154228\n"
-"137\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_WOCHENTAG\">Returns the day of the week for the given date value.</ahelp> The day is returned as an integer between 1 (Sunday) and 7 (Saturday) if no type or type=1 is specified. If type=2, numbering begins at Monday=1; and if type=3 numbering begins at Monday=0."
-msgstr "<ahelp hid=\"HID_FUNC_WOCHENTAG\">返回指定日期值在一星期中的天数。</ahelp>如果没有指定类型或 type=1,则返回的日期为在 1 (星期日)到 7 (星期六)之间的整数。如果 type=2,则编号起始为星期一=1;如果 type=3,则编号起始为星期一=0。"
+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. For other types, see the table below."
+msgstr ""
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
"hd_id3147217\n"
-"138\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -66845,7 +62572,6 @@ msgstr "语法"
msgctxt ""
"func_weekday.xhp\n"
"par_id3149033\n"
-"139\n"
"help.text"
msgid "WEEKDAY(Number; Type)"
msgstr "WEEKDAY(serial_number; type)"
@@ -66854,7 +62580,6 @@ msgstr "WEEKDAY(serial_number; type)"
msgctxt ""
"func_weekday.xhp\n"
"par_id3149046\n"
-"140\n"
"help.text"
msgid "<emph>Number</emph>, as a date value, is a decimal for which the weekday is to be returned."
msgstr "<emph>serial_number</emph> 是一个日期数字。"
@@ -66863,26 +62588,126 @@ msgstr "<emph>serial_number</emph> 是一个日期数字。"
msgctxt ""
"func_weekday.xhp\n"
"par_id3154394\n"
-"141\n"
"help.text"
-msgid "<emph>Type</emph> determines the type of calculation. For Type=1, the weekdays are counted starting from Sunday (this is the default even when the Type parameter is missing). For Type=2, the weekdays are counted starting from Monday=1. For Type=3, the weekdays are counted starting from Monday=0."
-msgstr "<emph>Type</emph> 确定计算的类型。对于 Type=1 ,那么一周从星期日开始计数(这是默认设置,即使缺少 Type 参数)。对于 Type=2,那么一周从星期一开始计算,星期一用 1 表示。对于 Type=3,那么一周虽然也是从星期一开始计算,但星期一用 0 表示。"
+msgid "<emph>Type</emph> is optional and determines the type of calculation."
+msgstr ""
+
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170615596613\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id05022017061559141\n"
+"help.text"
+msgid "Weekday number returned"
+msgstr ""
+
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170615599995\n"
+"help.text"
+msgid "1 or omitted"
+msgstr ""
+
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170615597231\n"
+"help.text"
+msgid "1 (Sunday) through 7 (Saturday). For compatibility with Microsoft Excel."
+msgstr ""
+
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170615596260\n"
+"help.text"
+msgid "1 (Monday) through 7 (Sunday)."
+msgstr ""
+
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170615597630\n"
+"help.text"
+msgid "0 (Monday) through 6 (Sunday)"
+msgstr ""
+
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170615592023\n"
+"help.text"
+msgid "1 (Monday) through 7 (Sunday)."
+msgstr ""
+
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170615591349\n"
+"help.text"
+msgid "1 (Tuesday) through 7 (Monday)."
+msgstr ""
+
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170615593664\n"
+"help.text"
+msgid "1 (Wednesday) through 7 (Tuesday)."
+msgstr ""
+
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170615599110\n"
+"help.text"
+msgid "1 (Thursday) through 7 (Wednesday)."
+msgstr ""
+
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id05022017061600535\n"
+"help.text"
+msgid "1 (Friday) through 7 (Thursday)."
+msgstr ""
+
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170616003219\n"
+"help.text"
+msgid "1 (Saturday) through 7 (Friday)."
+msgstr ""
+
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170616002095\n"
+"help.text"
+msgid "1 (Sunday) through 7 (Saturday)."
+msgstr ""
#: func_weekday.xhp
-#, fuzzy
msgctxt ""
"func_weekday.xhp\n"
"par_id3156188\n"
-"142\n"
"help.text"
-msgid "These values apply only to the standard date format that you select under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Calculate</emph>."
-msgstr "这些数值仅适用于通过 <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - 首选项</caseinline><defaultinline>工具 - 选项ns</defaultinline></switchinline> - %PRODUCTNAME Calc - 计算</emph>选择的标准日期格式。"
+msgid "These values apply only to the standard date format that you select under <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><emph/><item type=\"menuitem\">- %PRODUCTNAME Calc - Calculate</item>."
+msgstr ""
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
"hd_id3153836\n"
-"143\n"
"help.text"
msgid "Examples"
msgstr "示例"
@@ -66891,46 +62716,49 @@ msgstr "示例"
msgctxt ""
"func_weekday.xhp\n"
"par_id3150317\n"
-"144\n"
"help.text"
-msgid "=WEEKDAY(\"2000-06-14\") returns 4 (the Type parameter is missing, therefore the standard count is used. The standard count starts with Sunday as day number 1. June 14, 2000 was a Wednesday and therefore day number 4)."
-msgstr "=WEEKDAY(\"2000-06-14\") 返回 4。(因为参数 Type 处未输入数据,因此使用标准计数。标准计数以星期日开始且用 1 表示。2000 年 6 月 14 日是星期三,因此计算结果是 4)。"
+msgid "<item type=\"literal\">=WEEKDAY(\"2000-06-14\")</item> 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 ""
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
"par_id3153174\n"
-"145\n"
"help.text"
-msgid "=WEEKDAY(\"1996-07-24\";2) returns 3 (the Type parameter is 2, therefore Monday is day number 1. July 24, 1996 was a Wednesday and therefore day number 3)."
-msgstr "=WEEKDAY(\"1996-07-24\";2) 返回 3(因为参数 Type 为 2,因此结果 1 表示星期一。1996 年 7 月 24 日是星期三,因此计算结果是 3)。"
+msgid "<item type=\"literal\">=WEEKDAY(\"1996-07-24\";2)</item> 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 ""
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
"par_id3153525\n"
-"146\n"
"help.text"
-msgid "=WEEKDAY(\"1996-07-24\";1) returns 4 (the Type parameter is 1, therefore Sunday is day number 1. July 24, 1996 was a Wednesday and therefore day number 4)."
-msgstr "=WEEKDAY(\"1996-07-24\";1) 返回 4(因为参数 Type 为 1,因此结果 1 表示星期日。1996 年 7 月 24 日是星期三,因此计算结果是 4)。"
+msgid "<item type=\"literal\">=WEEKDAY(\"1996-07-24\";1)</item> 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 ""
+
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170616006699\n"
+"help.text"
+msgid "<item type=\"literal\">=WEEKDAY(\"</item><item type=\"literal\">2017</item><item type=\"literal\">-0</item><item type=\"literal\">5</item><item type=\"literal\">-</item><item type=\"literal\">02</item><item type=\"literal\">\";1</item><item type=\"literal\">4</item><item type=\"literal\">)</item> returns 6 (the Type parameter is 14, therefore Thursday is day number 1. May 2, 2017 was a Tuesday and therefore day number 6)"
+msgstr ""
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
"par_id3150575\n"
-"147\n"
"help.text"
-msgid "=WEEKDAY(NOW()) returns the number of the current day."
-msgstr "=WEEKDAY(NOW()) 返回当前日期对应的数字。"
+msgid "<item type=\"literal\">=WEEKDAY(NOW())</item> returns the number of the current day."
+msgstr ""
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
"par_id3150588\n"
-"171\n"
"help.text"
-msgid "To obtain a function indicating whether a day in A1 is a business day, use the IF and WEEKDAY functions as follows: <br/>IF(WEEKDAY(A1;2)<6;\"Business day\";\"Weekend\")"
-msgstr "要得出 A1 中的日期是否为工作日,请按如下所示使用 IF 和 WEEKDAY 函数:<br/>IF(WEEKDAY(A1;2)<6;\"Business day\";\"Weekend\")"
+msgid "To obtain a function indicating whether a day in A1 is a business day, use the IF and WEEKDAY functions as follows: <br/><item type=\"literal\">IF(WEEKDAY(A1;2)<6;\"Business day\";\"Weekend\")</item>"
+msgstr ""
#: func_weeknum.xhp
msgctxt ""
@@ -66952,7 +62780,6 @@ msgstr "<bookmark_value>WEEKNUM</bookmark_value>"
msgctxt ""
"func_weeknum.xhp\n"
"hd_id3159161\n"
-"54\n"
"help.text"
msgid "<variable id=\"weeknum\"><link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link></variable>"
msgstr "<variable id=\"weeknum\"><link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link></variable>"
@@ -66961,7 +62788,6 @@ msgstr "<variable id=\"weeknum\"><link href=\"text/scalc/01/func_weeknum.xhp\">W
msgctxt ""
"func_weeknum.xhp\n"
"par_id3149770\n"
-"55\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_KALENDERWOCHE\">WEEKNUM calculates the week number of the year for the internal date value as defined in ODF OpenFormula and compatible with other spreadsheet applications.</ahelp>"
msgstr ""
@@ -66994,17 +62820,14 @@ msgstr ""
msgctxt ""
"func_weeknum.xhp\n"
"hd_id3153055\n"
-"56\n"
"help.text"
msgid "Syntax"
msgstr "语法"
#: func_weeknum.xhp
-#, fuzzy
msgctxt ""
"func_weeknum.xhp\n"
"par_id3147236\n"
-"57\n"
"help.text"
msgid "WEEKNUM(Number [; Mode])"
msgstr "WEEKNUM(Number; Mode)"
@@ -67013,7 +62836,6 @@ msgstr "WEEKNUM(Number; Mode)"
msgctxt ""
"func_weeknum.xhp\n"
"par_id3147511\n"
-"58\n"
"help.text"
msgid "<emph>Number</emph> is the internal date number."
msgstr "<emph>value</emph>是日期的内部序列数。"
@@ -67022,7 +62844,6 @@ msgstr "<emph>value</emph>是日期的内部序列数。"
msgctxt ""
"func_weeknum.xhp\n"
"par_id3154269\n"
-"59\n"
"help.text"
msgid "<emph>Mode</emph> sets the start of the week and the week numbering system. This parameter is optional, if omitted the default value is 1."
msgstr ""
@@ -67031,7 +62852,6 @@ msgstr ""
msgctxt ""
"func_weeknum.xhp\n"
"par_id3148930\n"
-"60\n"
"help.text"
msgid "1 = Sunday, system 1"
msgstr ""
@@ -67040,7 +62860,6 @@ msgstr ""
msgctxt ""
"func_weeknum.xhp\n"
"par_id3154280\n"
-"61\n"
"help.text"
msgid "2 = Monday, system 1"
msgstr ""
@@ -67049,7 +62868,6 @@ msgstr ""
msgctxt ""
"func_weeknum.xhp\n"
"par_id3154281\n"
-"71\n"
"help.text"
msgid "11 = Monday, system 1"
msgstr ""
@@ -67058,7 +62876,6 @@ msgstr ""
msgctxt ""
"func_weeknum.xhp\n"
"par_id3154282\n"
-"72\n"
"help.text"
msgid "12 = Tuesday, system 1"
msgstr ""
@@ -67067,7 +62884,6 @@ msgstr ""
msgctxt ""
"func_weeknum.xhp\n"
"par_id3154283\n"
-"73\n"
"help.text"
msgid "13 = Wednesday, system 1"
msgstr ""
@@ -67076,7 +62892,6 @@ msgstr ""
msgctxt ""
"func_weeknum.xhp\n"
"par_id3154284\n"
-"74\n"
"help.text"
msgid "14 = Thursday, system 1"
msgstr ""
@@ -67085,7 +62900,6 @@ msgstr ""
msgctxt ""
"func_weeknum.xhp\n"
"par_id3154285\n"
-"75\n"
"help.text"
msgid "15 = Friday, system 1"
msgstr ""
@@ -67094,7 +62908,6 @@ msgstr ""
msgctxt ""
"func_weeknum.xhp\n"
"par_id3154286\n"
-"76\n"
"help.text"
msgid "16 = Saturday, system 1"
msgstr ""
@@ -67103,7 +62916,6 @@ msgstr ""
msgctxt ""
"func_weeknum.xhp\n"
"par_id3154287\n"
-"77\n"
"help.text"
msgid "17 = Sunday, system 1"
msgstr ""
@@ -67112,7 +62924,6 @@ msgstr ""
msgctxt ""
"func_weeknum.xhp\n"
"par_id3154288\n"
-"81\n"
"help.text"
msgid "21 = Monday, system 2 (ISO 8601)"
msgstr ""
@@ -67121,7 +62932,6 @@ msgstr ""
msgctxt ""
"func_weeknum.xhp\n"
"par_id3154289\n"
-"110\n"
"help.text"
msgid "150 = Monday, system 2 (ISO 8601, for interoperability with Gnumeric)"
msgstr ""
@@ -67130,7 +62940,6 @@ msgstr ""
msgctxt ""
"func_weeknum.xhp\n"
"hd_id3146948\n"
-"62\n"
"help.text"
msgid "Examples"
msgstr "示例"
@@ -67139,17 +62948,14 @@ msgstr "示例"
msgctxt ""
"func_weeknum.xhp\n"
"par_id3150704\n"
-"65\n"
"help.text"
msgid "=WEEKNUM(DATE(1995;1;1);1) returns 1"
msgstr ""
#: func_weeknum.xhp
-#, fuzzy
msgctxt ""
"func_weeknum.xhp\n"
"par_id3149792\n"
-"64\n"
"help.text"
msgid "=WEEKNUM(DATE(1995;1;1);2) returns 52. If the week starts on Monday, Sunday belongs to the last week of the previous year."
msgstr "=WEEKNUM(\"1995-01-01\";2) 返回 52。因为设置每周的第一天为星期一,所以这个星期日属于上一年的最后一周。"
@@ -67158,7 +62964,6 @@ msgstr "=WEEKNUM(\"1995-01-01\";2) 返回 52。因为设置每周的第一天为
msgctxt ""
"func_weeknum.xhp\n"
"par_id3149793\n"
-"66\n"
"help.text"
msgid "=WEEKNUM(DATE(1995;1;1);21) returns 52. Week 1 starts on Monday, 1995-01-02."
msgstr ""
@@ -67167,7 +62972,6 @@ msgstr ""
msgctxt ""
"func_weeknum.xhp\n"
"par_id3149794\n"
-"67\n"
"help.text"
msgid "=WEEKNUM(DATE(1999;1;1);21) returns 53. Week 1 starts on Monday, 1999-01-04."
msgstr ""
@@ -67181,7 +62985,6 @@ msgid "WEEKNUM_OOO"
msgstr ""
#: func_weeknum_ooo.xhp
-#, fuzzy
msgctxt ""
"func_weeknum_ooo.xhp\n"
"bm_id3159161\n"
@@ -67190,21 +62993,17 @@ msgid "<bookmark_value>WEEKNUM_OOO function</bookmark_value>"
msgstr "<bookmark_value>WEEKNUM_ADD</bookmark_value>"
#: func_weeknum_ooo.xhp
-#, fuzzy
msgctxt ""
"func_weeknum_ooo.xhp\n"
"hd_id3159161\n"
-"54\n"
"help.text"
msgid "<variable id=\"weeknum_ooo\"><link href=\"text/scalc/01/func_weeknum_ooo.xhp\">WEEKNUM_OOO</link></variable>"
msgstr "<variable id=\"weeknumadd\"><link href=\"text/scalc/01/func_weeknumadd.xhp\">WEEKNUM_ADD</link></variable>"
#: func_weeknum_ooo.xhp
-#, fuzzy
msgctxt ""
"func_weeknum_ooo.xhp\n"
"par_id3149770\n"
-"55\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_WEEKNUM_OOO\">WEEKNUM_OOO calculates the week number of the year for the internal date value.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KALENDERWOCHE\">WEEKNUM 计算内部日期值中一年的周数。</ahelp>"
@@ -67214,55 +63013,45 @@ msgctxt ""
"func_weeknum_ooo.xhp\n"
"par_idN105E4\n"
"help.text"
-msgid "This function exists for interoperability with LibreOffice releases older than 5.1.0 and OpenOffice.org. It calculates week numbers for a week numbering system in that week number 1 is the week that contains the January 4th. This function does not provide interoperability with other spreadsheet applications. For new documents use the <link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link> or <link href=\"text/scalc/01/func_isoweeknum.xhp\">ISOWEEKNUM</link> function instead."
+msgid "This function exists for interoperability with %PRODUCTNAME releases older than 5.1.0 and OpenOffice.org. It calculates week numbers for a week numbering system in that week number 1 is the week that contains the January 4th. This function does not provide interoperability with other spreadsheet applications. For new documents use the <link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link> or <link href=\"text/scalc/01/func_isoweeknum.xhp\">ISOWEEKNUM</link> function instead."
msgstr ""
#: func_weeknum_ooo.xhp
-#, fuzzy
msgctxt ""
"func_weeknum_ooo.xhp\n"
"hd_id3153055\n"
-"56\n"
"help.text"
msgid "Syntax"
msgstr "语法"
#: func_weeknum_ooo.xhp
-#, fuzzy
msgctxt ""
"func_weeknum_ooo.xhp\n"
"par_id3147236\n"
-"57\n"
"help.text"
msgid "WEEKNUM_OOO(Number; Mode)"
msgstr "WEEKNUM(Number; Mode)"
#: func_weeknum_ooo.xhp
-#, fuzzy
msgctxt ""
"func_weeknum_ooo.xhp\n"
"par_id3147511\n"
-"58\n"
"help.text"
msgid "<emph>Number</emph> is the internal date number."
msgstr "<emph>value</emph>是日期的内部序列数。"
#: func_weeknum_ooo.xhp
-#, fuzzy
msgctxt ""
"func_weeknum_ooo.xhp\n"
"par_id3154269\n"
-"59\n"
"help.text"
msgid "<emph>Mode</emph> sets the start of the week and the calculation type."
msgstr "<emph>mode</emph> 参数指定的是计算方式,即指定哪一天应该是每周的第一天。"
#: func_weeknum_ooo.xhp
-#, fuzzy
msgctxt ""
"func_weeknum_ooo.xhp\n"
"par_id3148930\n"
-"60\n"
"help.text"
msgid "1 = Sunday"
msgstr "1 = 星期天"
@@ -67271,7 +63060,6 @@ msgstr "1 = 星期天"
msgctxt ""
"func_weeknum_ooo.xhp\n"
"par_id3154280\n"
-"61\n"
"help.text"
msgid "2 = Monday (ISO 8601)"
msgstr ""
@@ -67280,17 +63068,14 @@ msgstr ""
msgctxt ""
"func_weeknum_ooo.xhp\n"
"par_id3154281\n"
-"66\n"
"help.text"
msgid "any other value = Monday (ISO 8601)"
msgstr ""
#: func_weeknum_ooo.xhp
-#, fuzzy
msgctxt ""
"func_weeknum_ooo.xhp\n"
"hd_id3146948\n"
-"62\n"
"help.text"
msgid "Examples"
msgstr "示例"
@@ -67299,7 +63084,6 @@ msgstr "示例"
msgctxt ""
"func_weeknum_ooo.xhp\n"
"par_id3150704\n"
-"65\n"
"help.text"
msgid "=WEEKNUM_OOO(DATE(1995;1;1);1) returns 1"
msgstr ""
@@ -67308,7 +63092,6 @@ msgstr ""
msgctxt ""
"func_weeknum_ooo.xhp\n"
"par_id3149792\n"
-"64\n"
"help.text"
msgid "=WEEKNUM_OOO(DATE(1995;1;1);2) returns 52. Week 1 starts on Monday, 1995-01-02."
msgstr ""
@@ -67322,7 +63105,6 @@ msgid "WEEKNUM_EXCEL2003"
msgstr ""
#: func_weeknumadd.xhp
-#, fuzzy
msgctxt ""
"func_weeknumadd.xhp\n"
"bm_id3166443\n"
@@ -67331,11 +63113,9 @@ msgid "<bookmark_value>WEEKNUM_EXCEL2003 function</bookmark_value>"
msgstr "<bookmark_value>WEEKNUM_ADD</bookmark_value>"
#: func_weeknumadd.xhp
-#, fuzzy
msgctxt ""
"func_weeknumadd.xhp\n"
"hd_id3166443\n"
-"222\n"
"help.text"
msgid "<variable id=\"weeknumadd\"><link href=\"text/scalc/01/func_weeknumadd.xhp\">WEEKNUM_EXCEL2003</link></variable>"
msgstr "<variable id=\"weeknumadd\"><link href=\"text/scalc/01/func_weeknumadd.xhp\">WEEKNUM_ADD</link></variable>"
@@ -67344,7 +63124,6 @@ msgstr "<variable id=\"weeknumadd\"><link href=\"text/scalc/01/func_weeknumadd.x
msgctxt ""
"func_weeknumadd.xhp\n"
"par_id3152945\n"
-"223\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_WEEKNUM\">The result indicates the number of the calendar week for a date.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_WEEKNUM\">结果为一个日期所在的星期序列数。</ahelp>"
@@ -67361,7 +63140,6 @@ msgstr ""
msgctxt ""
"func_weeknumadd.xhp\n"
"hd_id3153745\n"
-"224\n"
"help.text"
msgid "Syntax"
msgstr "语法"
@@ -67370,7 +63148,6 @@ msgstr "语法"
msgctxt ""
"func_weeknumadd.xhp\n"
"par_id3153685\n"
-"225\n"
"help.text"
msgid "WEEKNUM_EXCEL2003(Date; ReturnType)"
msgstr ""
@@ -67379,7 +63156,6 @@ msgstr ""
msgctxt ""
"func_weeknumadd.xhp\n"
"par_id3159277\n"
-"226\n"
"help.text"
msgid "<emph>Date</emph> is the date within the calendar week."
msgstr "<emph>Date</emph> 日历周内的日期。"
@@ -67388,7 +63164,6 @@ msgstr "<emph>Date</emph> 日历周内的日期。"
msgctxt ""
"func_weeknumadd.xhp\n"
"par_id3154098\n"
-"227\n"
"help.text"
msgid "<emph>ReturnType</emph> is 1 for week beginning on a Sunday, 2 for week beginning on a Monday."
msgstr "<emph>ReturnType</emph> 1 表示一周从星期日开始,2 表示一周从星期一开始。"
@@ -67397,17 +63172,14 @@ msgstr "<emph>ReturnType</emph> 1 表示一周从星期日开始,2 表示一
msgctxt ""
"func_weeknumadd.xhp\n"
"hd_id3152886\n"
-"228\n"
"help.text"
msgid "Example"
msgstr "示例"
#: func_weeknumadd.xhp
-#, fuzzy
msgctxt ""
"func_weeknumadd.xhp\n"
"par_id3149973\n"
-"229\n"
"help.text"
msgid "In which week number does 2001-12-24 fall?"
msgstr "2001 年 12 月 24 日在哪一周?"
@@ -67416,344 +63188,333 @@ msgstr "2001 年 12 月 24 日在哪一周?"
msgctxt ""
"func_weeknumadd.xhp\n"
"par_id3149914\n"
-"230\n"
"help.text"
msgid "<item type=\"input\">=WEEKNUM_EXCEL2003(DATE(2001;12;24);1)</item> returns 52."
msgstr ""
-#: func_workday.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workday.xhp\n"
+"func_workday.intl.xhp\n"
"tit\n"
"help.text"
-msgid "WORKDAY"
-msgstr "WORKDAY"
+msgid "WORKDAY.INTL"
+msgstr ""
-#: func_workday.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workday.xhp\n"
-"bm_id3149012\n"
+"func_workday.intl.xhp\n"
+"bm_id231020162341219565\n"
"help.text"
-msgid "<bookmark_value>WORKDAY function</bookmark_value>"
-msgstr "<bookmark_value>WORKDAY 函数</bookmark_value>"
+msgid "<bookmark_value>WORKDAY.INTL function</bookmark_value>"
+msgstr ""
-#: func_workday.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workday.xhp\n"
-"hd_id3149012\n"
-"186\n"
+"func_workday.intl.xhp\n"
+"hd_id231020162348002143\n"
"help.text"
-msgid "<variable id=\"workday\"><link href=\"text/scalc/01/func_workday.xhp\">WORKDAY</link></variable>"
-msgstr "<variable id=\"workday\"><link href=\"text/scalc/01/func_workday.xhp\">WORKDAY</link></variable>"
+msgid "<variable id=\"workdaysintl\"><link href=\"text/scalc/01/func_workday.intl.xhp\">WORKDAY.INTL</link></variable>"
+msgstr ""
-#: func_workday.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id3149893\n"
-"187\n"
+"func_workday.intl.xhp\n"
+"par_id23102016234837285\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_WORKDAY\"> The result is a date number that can be formatted as a date. You then see the date of a day that is a certain number of <emph>workdays</emph> away from the <emph>start date</emph>.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_WORKDAY\"> 结果是可以格式化为日期的一个日期值。您可以看到<emph>开始日期</emph>以后的<emph>工作日天数</emph>。</ahelp>"
+msgid "<ahelp hid=\".\">The result is a date number that can be formatted as a date. User can see the date of a day that is a certain number of workdays away from the start date (before or after). There are options to define weekend days and holidays. The optional weekend parameter (or a string) can be used to define the weekend days (or the non-working days in each week). Also, optionally, the user can define a holiday list. The weekend days and user-defined holidays are not counted as working days.</ahelp>"
+msgstr ""
-#: func_workday.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workday.xhp\n"
-"hd_id3146944\n"
-"188\n"
+"func_workday.intl.xhp\n"
+"hd_id241020160008306802\n"
"help.text"
msgid "Syntax"
-msgstr "语法"
+msgstr ""
-#: func_workday.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id3154844\n"
-"189\n"
+"func_workday.intl.xhp\n"
+"par_id241020160008306838\n"
"help.text"
-msgid "WORKDAY(StartDate; Days; Holidays)"
-msgstr "WORKDAY(StartDate; Days; Holidays)"
+msgid "<item type=\"literal\">WORKDAY.INTL(StartDate; Days; Weekend; Holidays)</item>"
+msgstr ""
-#: func_workday.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id3147469\n"
-"190\n"
+"func_workday.intl.xhp\n"
+"par_id241020160008308885\n"
"help.text"
-msgid "<emph>StartDate</emph> is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation."
-msgstr "<emph>StartDate</emph> 开始计算的日期。如果开始日期是一个工作日,则这一天也要计算在内。"
+msgid "<emph>StartDate</emph> is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation. This is required."
+msgstr ""
-#: func_workday.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id3153038\n"
-"191\n"
+"func_workday.intl.xhp\n"
+"par_id241020160008305329\n"
"help.text"
msgid "<emph>Days</emph> is the number of workdays. Positive value for a result after the start date, negative value for a result before the start date."
-msgstr "<emph>Days</emph> 工作日天数。开始日期后的结果为正值,开始日期前的为负值。"
+msgstr ""
-#: func_workday.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id3150693\n"
-"192\n"
+"func_workday.intl.xhp\n"
+"hd_id241020160012172138\n"
"help.text"
-msgid "<emph>Holidays</emph> is a list of optional holidays. These are non-working days. Enter a cell range in which the holidays are listed individually."
-msgstr "<emph>Holidays</emph> 选择性的假日列表。这些是不需要工作的日子。请输入一个单独执行假日的单元格区域。"
+msgid "Example"
+msgstr ""
-#: func_workday.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workday.xhp\n"
-"hd_id3150141\n"
-"193\n"
+"func_workday.intl.xhp\n"
+"par_id241020160012177196\n"
"help.text"
-msgid "Example"
-msgstr "示例"
+msgid "What date comes 20 workdays after December 13, 2016? Enter the start date in C3 and the number of workdays in D3."
+msgstr ""
-#: func_workday.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id3152782\n"
-"194\n"
+"func_workday.intl.xhp\n"
+"par_id241020160012178429\n"
"help.text"
-msgid "What date came 17 workdays after 1 December 2001? Enter the start date \"2001-12-01\" in C3 and the number of workdays in D3. Cells F3 to J3 contain the following Christmas and New Year holidays: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
-msgstr "2001 年 12 月 1 日后的第 17 个工作日是哪一天?在 C3 中输入开始日期 \"2001-12-01\",在 D3 中输入工作日的天数。单元格 F3 到 J3 中则是圣诞节和新年的假期:\"2001-12-24\"、\"2001-12-25\"、\"2001-12-26\"、\"2001-12-31\"、\"2002-01-01\"。"
+msgid "The weekend parameter (number) may be left blank or defined as 1 for default weekend (non-working days) – Saturday and Sunday."
+msgstr ""
-#: func_workday.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id3146142\n"
-"195\n"
+"func_workday.intl.xhp\n"
+"par_id241020160012172125\n"
"help.text"
-msgid "=WORKDAY(C3;D3;F3:J3) returns 2001-12-28. Format the serial date number as a date, for example in the format YYYY-MM-DD."
-msgstr "=WORKDAY(C3;D3;F3:J3) 返回 2001-12-28。将顺序日期数格式化为日期,例如格式为 YYYY-MM-DD。"
+msgid "Cells F3 to J3 contain five (5) holidays for Christmas and New Year in date format: December 24, 2016; December 25, 2016; December 26, 2016; December 31, 2016; and January 1, 2017."
+msgstr ""
-#: func_workday.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id231020162253594361\n"
+"func_workday.intl.xhp\n"
+"par_id241020160012177923\n"
"help.text"
-msgid "<link href=\"text/scalc/01/func_networkdays.xhp\">NETWORKDAYS</link>"
+msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3;;F3:J3)</item> returns January 11, 2017 in the result cell, say D6 (use date format for the cell)."
msgstr ""
-#: func_workday.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id241020160012187036\n"
+"func_workday.intl.xhp\n"
+"par_id24102016001217206\n"
"help.text"
-msgid "<link href=\"text/scalc/01/func_networkdays.intl.xhp\">NETWORKDAYS.INTL</link>"
+msgid "To define Friday and Saturday as weekend days, use the weekend parameter 7."
msgstr ""
-#: func_workday.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id241030160012187036\n"
+"func_workday.intl.xhp\n"
+"par_id241020160012178562\n"
"help.text"
-msgid "<link href=\"text/scalc/01/func_workdays.intl.xhp\">WORKDAYS.INTL</link>"
+msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3;7;F3:J3)</item> returns January 15, 2017 with weekend parameter 7."
msgstr ""
-#: func_workday.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id23102016225717242\n"
+"func_workday.intl.xhp\n"
+"par_id241020160012176149\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060102.xhp\">Date functions</link>"
+msgid "To define Sunday only the weekend day, use the weekend parameter 11."
msgstr ""
-#: func_workdays.intl.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"tit\n"
+"func_workday.intl.xhp\n"
+"par_id241020160012181455\n"
"help.text"
-msgid "WORKDAYS.INTL"
+msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3;11;F3:J3)</item> returns January 9, 2017."
msgstr ""
-#: func_workdays.intl.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"bm_id231020162341219565\n"
+"func_workday.intl.xhp\n"
+"par_id24102016001218469\n"
"help.text"
-msgid "<bookmark_value>WORKDAYS.INTL function</bookmark_value>"
+msgid "Alternatively, use the weekend string “0000001” for Sunday only weekend."
msgstr ""
-#: func_workdays.intl.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"hd_id231020162348002143\n"
+"func_workday.intl.xhp\n"
+"par_id241020160012183680\n"
"help.text"
-msgid "<variable id=\"workdaysintl\"><link href=\"text/scalc/01/func_workdays.intl.xhp\">WORKDAYS.INTL</link></variable>"
+msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3;“0000001”;F3:J3)</item> returns January 9, 2017."
msgstr ""
-#: func_workdays.intl.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"par_id23102016234837285\n"
+"func_workday.intl.xhp\n"
+"par_id241020160012181870\n"
"help.text"
-msgid "<ahelp hid=\".\">The result is a date number that can be formatted as a date. User can see the date of a day that is a certain number of workdays away from the start date (before or after). There are options to define weekend days and holidays. The optional weekend parameter (or a string) can be used to define the weekend days (or the non-working days in each week). Also, optionally, the user can define a holiday list. The weekend days and user-defined holidays are not counted as working days.</ahelp>"
+msgid "The function can be used without the two optional parameters – Weekday and Holidays – by leaving them out:"
msgstr ""
-#: func_workdays.intl.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"hd_id241020160008306802\n"
+"func_workday.intl.xhp\n"
+"par_id241020160012182048\n"
"help.text"
-msgid "Syntax"
+msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3)</item> gives the result: January 10, 2017."
msgstr ""
-#: func_workdays.intl.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"par_id241020160008306838\n"
+"func_workday.intl.xhp\n"
+"par_id231020162253594361\n"
"help.text"
-msgid "<item type=\"literal\">WORKDAY.INTL(StartDate; Days; Weekend; Holidays)</item>"
+msgid "<link href=\"text/scalc/01/func_networkdays.xhp\">NETWORKDAYS</link>"
msgstr ""
-#: func_workdays.intl.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"par_id241020160008308885\n"
+"func_workday.intl.xhp\n"
+"par_id241020160012187036\n"
"help.text"
-msgid "<emph>StartDate</emph> is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation. This is required."
+msgid "<link href=\"text/scalc/01/func_networkdays.intl.xhp\">NETWORKDAYS.INTL</link>"
msgstr ""
-#: func_workdays.intl.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"par_id241020160008305329\n"
+"func_workday.intl.xhp\n"
+"par_id241030160012187036\n"
"help.text"
-msgid "<emph>Days</emph> is the number of workdays. Positive value for a result after the start date, negative value for a result before the start date."
+msgid "<link href=\"text/scalc/01/func_workday.xhp\">WORKDAY</link>"
msgstr ""
-#: func_workdays.intl.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"hd_id241020160012172138\n"
+"func_workday.intl.xhp\n"
+"par_id23102016225717242\n"
"help.text"
-msgid "Example"
+msgid "<link href=\"text/scalc/01/04060102.xhp\">Date functions</link>"
msgstr ""
-#: func_workdays.intl.xhp
+#: func_workday.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"par_id241020160012177196\n"
+"func_workday.xhp\n"
+"tit\n"
"help.text"
-msgid "What date comes 20 workdays after December 13, 2016? Enter the start date in C3 and the number of workdays in D3."
-msgstr ""
+msgid "WORKDAY"
+msgstr "WORKDAY"
-#: func_workdays.intl.xhp
+#: func_workday.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"par_id241020160012178429\n"
+"func_workday.xhp\n"
+"bm_id3149012\n"
"help.text"
-msgid "The weekend parameter (number) may be left blank or defined as 1 for default weekend (non-working days) – Saturday and Sunday."
-msgstr ""
+msgid "<bookmark_value>WORKDAY function</bookmark_value>"
+msgstr "<bookmark_value>WORKDAY 函数</bookmark_value>"
-#: func_workdays.intl.xhp
+#: func_workday.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"par_id241020160012172125\n"
+"func_workday.xhp\n"
+"hd_id3149012\n"
"help.text"
-msgid "Cells F3 to J3 contain five (5) holidays for Christmas and New Year in date format: December 24, 2016; December 25, 2016; December 26, 2016; December 31, 2016; and January 1, 2017."
-msgstr ""
+msgid "<variable id=\"workday\"><link href=\"text/scalc/01/func_workday.xhp\">WORKDAY</link></variable>"
+msgstr "<variable id=\"workday\"><link href=\"text/scalc/01/func_workday.xhp\">WORKDAY</link></variable>"
-#: func_workdays.intl.xhp
+#: func_workday.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"par_id241020160012177923\n"
+"func_workday.xhp\n"
+"par_id3149893\n"
"help.text"
-msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3;;F3:J3)</item> returns January 11, 2017 in the result cell, say D6 (use date format for the cell)."
-msgstr ""
+msgid "<ahelp hid=\"HID_AAI_FUNC_WORKDAY\"> The result is a date number that can be formatted as a date. You then see the date of a day that is a certain number of <emph>workdays</emph> away from the <emph>start date</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_WORKDAY\"> 结果是可以格式化为日期的一个日期值。您可以看到<emph>开始日期</emph>以后的<emph>工作日天数</emph>。</ahelp>"
-#: func_workdays.intl.xhp
+#: func_workday.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"par_id24102016001217206\n"
+"func_workday.xhp\n"
+"hd_id3146944\n"
"help.text"
-msgid "To define Friday and Saturday as weekend days, use the weekend parameter 7."
-msgstr ""
+msgid "Syntax"
+msgstr "语法"
-#: func_workdays.intl.xhp
+#: func_workday.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"par_id241020160012178562\n"
+"func_workday.xhp\n"
+"par_id3154844\n"
"help.text"
-msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3;7;F3:J3)</item> returns January 15, 2017 with weekend parameter 7."
-msgstr ""
+msgid "WORKDAY(StartDate; Days; Holidays)"
+msgstr "WORKDAY(StartDate; Days; Holidays)"
-#: func_workdays.intl.xhp
+#: func_workday.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"par_id241020160012176149\n"
+"func_workday.xhp\n"
+"par_id3147469\n"
"help.text"
-msgid "To define Sunday only the weekend day, use the weekend parameter 11."
-msgstr ""
+msgid "<emph>StartDate</emph> is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation."
+msgstr "<emph>StartDate</emph> 开始计算的日期。如果开始日期是一个工作日,则这一天也要计算在内。"
-#: func_workdays.intl.xhp
+#: func_workday.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"par_id241020160012181455\n"
+"func_workday.xhp\n"
+"par_id3153038\n"
"help.text"
-msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3;11;F3:J3)</item> returns January 9, 2017."
-msgstr ""
+msgid "<emph>Days</emph> is the number of workdays. Positive value for a result after the start date, negative value for a result before the start date."
+msgstr "<emph>Days</emph> 工作日天数。开始日期后的结果为正值,开始日期前的为负值。"
-#: func_workdays.intl.xhp
+#: func_workday.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"par_id24102016001218469\n"
+"func_workday.xhp\n"
+"par_id3150693\n"
"help.text"
-msgid "Alternatively, use the weekend string “0000001” for Sunday only weekend."
-msgstr ""
+msgid "<emph>Holidays</emph> is a list of optional holidays. These are non-working days. Enter a cell range in which the holidays are listed individually."
+msgstr "<emph>Holidays</emph> 选择性的假日列表。这些是不需要工作的日子。请输入一个单独执行假日的单元格区域。"